/* ============ HERO — BOUTIQUE AGENCY BUILD ============ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

/* --- Image with Ken Burns --- */
.hero-canvas {
  position: absolute;
  inset: -40px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  animation: kenBurns 20s ease-out 0.2s forwards;
}

@keyframes kenBurns {
  0%   { opacity: 0; transform: scale(1.08); }
  12%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

/* --- Scrim --- */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(8, 7, 5, 0.9) 0%,
      rgba(8, 7, 5, 0.6) 30%,
      rgba(8, 7, 5, 0.15) 60%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      rgba(8, 7, 5, 0.4) 0%,
      rgba(8, 7, 5, 0.08) 50%,
      transparent 100%
    );
}

/* --- Content: bottom-left anchor --- */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 820px;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vh, 7rem);
  padding-left: max(clamp(1.5rem, 4vw, 3rem), calc((100vw - var(--content-wide)) / 2 + clamp(1.5rem, 4vw, 3rem)));
}

/* --- Eyebrow --- */
.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* --- Headline --- */
.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* --- Body --- */
.hero-body {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 2.25rem;
}

/* --- CTA --- */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px 14px 24px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out-expo);
}

.hero-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 167, 125, 0.3);
}

.hero-cta:active {
  transform: translateY(0);
}

.hero-cta svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* --- Scroll indicator --- */
.hero-scroll {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3.5rem);
  right: clamp(2rem, 5vw, 5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPulse 2.4s ease-in-out infinite 2s;
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

/* --- Staggered entrance --- */
.anim-hero {
  opacity: 0;
  transform: translateY(24px);
}

.hero-content .anim-hero:nth-child(1) { animation: textUp 0.8s var(--ease-out-expo) 0.5s forwards; }
.hero-content .anim-hero:nth-child(2) { animation: textUp 0.8s var(--ease-out-expo) 0.65s forwards; }
.hero-content .anim-hero:nth-child(3) { animation: textUp 0.8s var(--ease-out-expo) 0.8s forwards; }
.hero-content .anim-hero:nth-child(4) { animation: textUp 0.8s var(--ease-out-expo) 0.95s forwards; }

.hero-scroll.anim-hero { animation: textUp 0.6s var(--ease-out-expo) 1.4s forwards; }

@keyframes textUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-img,
  .anim-hero,
  .hero-scroll-line::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll-line::after { top: 0; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--ivory);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(26, 24, 20, 0.06);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(26, 24, 20, 0.1);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 1600px) {
  .hero-content {
    max-width: 1500px;
  }

  .hero-body {
    max-width: 800px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding-left: clamp(1.5rem, 4vw, 3rem);
    max-width: 700px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (max-width: 768px) {
  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1.5rem 5rem;
    max-width: none;
    text-align: center;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-body {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
  }

  .hero-cta {
    margin: 0 auto;
  }

  .hero-scroll {
    display: none;
  }

  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
  }

  .trust-divider {
    display: none;
  }
}

/* ============ LIFE TRANSITIONS — BENTO ============ */
.transitions-section {
  background: var(--ivory);
  padding-top: 4rem;
}

.transitions-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.transitions-header .body-large {
  margin-top: 1rem;
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
}

/* Large card: left column, spans 2 rows */
.bento-card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* Medium cards: top-right and mid-right */
.bento-grid .bento-card:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.bento-grid .bento-card:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 2;
}

/* Small cards: bottom row */
.bento-grid .bento-card:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.bento-grid .bento-card:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

.bento-grid .bento-card:nth-child(6) {
  grid-column: 3 / 5;
  grid-row: 3;
}

/* Add third row height */
.bento-grid {
  grid-template-rows: 280px 280px 260px;
}

/* --- Card --- */
.bento-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

.bento-card-bg {
  position: absolute;
  inset: 0;
}

.bento-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.bento-card:hover .bento-card-bg img {
  transform: scale(1.06);
}

/* Scrim */
.bento-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 9, 7, 0.8) 0%,
    rgba(10, 9, 7, 0.2) 50%,
    rgba(10, 9, 7, 0.05) 100%
  );
  z-index: 1;
  transition: background var(--duration-slow) var(--ease-out-expo);
}

.bento-card:hover .bento-card-scrim {
  background: linear-gradient(
    to top,
    rgba(10, 9, 7, 0.9) 0%,
    rgba(10, 9, 7, 0.35) 50%,
    rgba(10, 9, 7, 0.1) 100%
  );
}

/* Content */
.bento-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
}

.bento-card-number {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.bento-card-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.bento-card--large .bento-card-title {
  font-size: 2rem;
}

.bento-card-text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  margin-bottom: 1rem;
}

/* Link */
.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--duration-base) var(--ease-out-expo);
}

.bento-card:hover .bento-card-link {
  gap: 10px;
}

.bento-card-link svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.bento-card:hover .bento-card-link svg {
  transform: translateX(2px);
}

/* Gold accent bar on large card */
.bento-card--large::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.bento-card--large:hover::after {
  transform: scaleX(1);
}

/* ============ RESPONSIVE — BENTO ============ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-grid .bento-card:nth-child(2),
  .bento-grid .bento-card:nth-child(3),
  .bento-grid .bento-card:nth-child(4),
  .bento-grid .bento-card:nth-child(5),
  .bento-grid .bento-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-grid .bento-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .bento-card-text {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bento-card--large {
    grid-column: 1;
  }

  .bento-grid .bento-card:nth-child(6) {
    grid-column: 1;
  }

  .bento-grid {
    grid-template-rows: repeat(6, 240px);
  }

  .bento-card-title {
    font-size: 1.25rem;
  }

  .bento-card--large .bento-card-title {
    font-size: 1.5rem;
  }

  .bento-card-text {
    opacity: 1;
    transform: none;
  }
}

/* ============ MEET BETS — EDITORIAL PORTRAIT ============ */
.meet-bets {
  background: var(--ivory);
  overflow: hidden;
}

.meet-bets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* --- Portrait Column --- */
.meet-bets-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.4s var(--ease-out-expo);
}

.meet-bets-portrait:hover .portrait-img {
  transform: scale(1.04);
}

/* Gold accent frame offset */
.portrait-accent {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  width: 50%;
  height: 50%;
  border: 1.5px solid var(--gold-light);
  border-radius: 2px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  transition: all 0.8s var(--ease-out-expo);
}

.meet-bets-portrait:hover .portrait-accent {
  top: 1rem;
  right: -0.5rem;
  opacity: 0.5;
}

/* Portrait caption */
.portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 1.25rem;
  padding-left: 0.5rem;
}

.portrait-caption-name {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--espresso);
}

.portrait-caption-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* --- Content Column --- */
.meet-bets-content {
}

.meet-bets-text {
  margin-bottom: 2rem;
}

.meet-bets-text .headline-lg {
  color: var(--espresso);
}

/* Decorative quote mark */
.meet-bets-quote {
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 1.5rem;
  transform: translateY(4px);
}

/* Body paragraphs */
.meet-bets-body {
  margin-bottom: 2.5rem;
}

.meet-bets-body p {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 1rem;
}

.meet-bets-body p:first-child {
  font-family: var(--font-headline);
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}

.meet-bets-body p:last-child {
  margin-bottom: 0;
}

/* Stats */
.meet-bets-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 24, 20, 0.06);
  border-bottom: 1px solid rgba(26, 24, 20, 0.06);
  margin-bottom: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(26, 24, 20, 0.08);
}

/* CTA */
.meet-bets-cta {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
  padding: 13px 24px 13px 20px;
}

.meet-bets-cta:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.meet-bets-cta:hover svg {
  transform: translateX(3px);
}

/* ============ RESPONSIVE — MEET BETS ============ */
/* Top eyebrow — hidden on desktop */
.meet-bets-eyebrow-top {
  display: none;
}

@media (max-width: 1024px) {
  .meet-bets-grid {
    gap: clamp(2rem, 4vw, 4rem);
  }

  .portrait-accent {
    display: none;
  }

  .meet-bets-eyebrow-top {
    display: block;
    grid-column: 1 / -1;
    order: -1;
    text-align: center;
    padding-bottom: 0.5rem;
  }

  .meet-bets-eyebrow-top .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .meet-bets-text .eyebrow {
    display: none;
  }

  .meet-bets-text h2 {
    display: none;
  }

  .meet-bets-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .meet-bets-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .meet-bets-portrait {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .meet-bets-content {
    order: 2;
    padding-right: 0;
    text-align: center;
  }

  .portrait-caption {
    padding-left: 0;
    align-items: center;
  }

  .meet-bets-quote {
    text-align: center;
  }

  .meet-bets-body p:first-child {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .meet-bets-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .meet-bets-actions {
    display: flex;
    justify-content: center;
  }
}

/* ============ CONCIERGE DIFFERENCE — EDITORIAL TIMELINE ============ */
.concierge-section {
  background: var(--espresso);
  overflow: hidden;
}

.concierge-header {
  max-width: 680px;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.concierge-header .eyebrow {
  color: var(--gold);
}

.concierge-header .eyebrow::before {
  background: var(--gold);
}

.concierge-header .headline-lg {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.concierge-header .body-large {
  color: rgba(255, 255, 255, 0.55);
}

/* --- Timeline Container --- */
.concierge-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding-top: 2.5rem;
}

/* --- Track Line --- */
.timeline-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-track-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 1.8s var(--ease-out-expo) 0.3s;
}

.concierge-section.visible .timeline-track-fill {
  width: 100%;
}

/* --- Step --- */
.concierge-step {
  position: relative;
  padding: 0 clamp(0.75rem, 1.5vw, 1.5rem) clamp(1.5rem, 2vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition-delay: var(--step-delay, 0s);
}

.concierge-step:first-child {
  border-left: none;
}

/* --- Step Marker --- */
.step-marker {
  position: relative;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.step-number {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.625rem;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s var(--ease-spring) 0.4s;
}

.concierge-section.visible .step-dot {
  opacity: 1;
  transform: scale(1);
}

.step-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
}

/* --- Step Content --- */
.step-content {
  position: relative;
}

.step-title {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.step-text {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  max-width: 180px;
}

/* --- Hover States --- */
.concierge-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(196, 167, 125, 0.04) 0%,
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out-expo);
}

.concierge-step:hover::before {
  opacity: 1;
}

.concierge-step:hover .step-title {
  color: var(--gold-light);
}

.concierge-step:hover .step-dot {
  transform: scale(1.25);
  box-shadow: 0 0 16px rgba(196, 167, 125, 0.35);
}

.concierge-step:hover .step-text {
  color: rgba(255, 255, 255, 0.6);
}

/* ============ RESPONSIVE — CONCIERGE ============ */
@media (max-width: 1024px) {
  .concierge-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .concierge-step:nth-child(4),
  .concierge-step:nth-child(5),
  .concierge-step:nth-child(6) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: clamp(1.5rem, 2vw, 2rem);
    margin-top: 1px;
  }

  .concierge-step:nth-child(1),
  .concierge-step:nth-child(2),
  .concierge-step:nth-child(3) {
    border-left: none;
  }

  .concierge-step:nth-child(4) {
    border-left: none;
  }

  .concierge-step:nth-child(5),
  .concierge-step:nth-child(6) {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .timeline-track {
    display: none;
  }
}

@media (max-width: 768px) {
  .concierge-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .concierge-step {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
  }

  .concierge-step:last-child {
    border-bottom: none;
  }

  .concierge-step::before {
    display: none;
  }

  .step-marker {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 32px;
  }

  .step-text {
    max-width: none;
  }

  .concierge-header {
    margin-bottom: 2.5rem;
  }
}

/* ============ SERVICES — EDITORIAL CARDS ============ */
.services-section {
  background: var(--ivory);
}

.services-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 24, 20, 0.06);
}

.service-card {
  background: var(--ivory);
  padding: clamp(2rem, 3vw, 2.75rem);
  position: relative;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--ivory-dark);
}

/* --- Icon --- */
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(26, 24, 20, 0.08);
  color: var(--gold);
  margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 167, 125, 0.25);
}

/* --- Title --- */
.service-title {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  transition: color var(--duration-base) var(--ease-out-expo);
}

.service-card:hover .service-title {
  color: var(--espresso);
}

/* --- Text --- */
.service-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

/* --- Link --- */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.service-card:hover .service-link {
  color: var(--gold);
  gap: 10px;
}

.service-link svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.service-card:hover .service-link svg {
  transform: translateX(2px);
}

/* ============ RESPONSIVE — SERVICES ============ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* ============ WHY CLIENTS CHOOSE BETS ============ */
.why-section {
  background: var(--espresso);
  overflow: hidden;
}

.why-header {
  max-width: 640px;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.why-header .eyebrow {
  color: var(--gold);
}

.why-header .eyebrow::before {
  background: var(--gold);
}

.why-header .headline-lg {
  color: var(--white);
}

/* --- Grid --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* --- Card --- */
.why-card {
  position: relative;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--duration-base) var(--ease-out-expo);
}

.why-card:first-child {
  border-left: none;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(196, 167, 125, 0.03) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.why-card:hover::before {
  opacity: 1;
}

/* --- Card Inner --- */
.why-card-inner {
  position: relative;
  z-index: 1;
}

/* --- Icon --- */
.why-card-icon {
  color: var(--gold);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.why-card:hover .why-card-icon {
  transform: translateY(-4px);
}

.why-card-icon svg {
  transition: all var(--duration-base) var(--ease-out-expo);
}

.why-card:hover .why-card-icon circle {
  stroke: var(--gold);
  stroke-width: 1;
}

/* --- Title --- */
.why-card-title {
  font-family: var(--font-headline);
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: color var(--duration-base) var(--ease-out-expo);
}

.why-card:hover .why-card-title {
  color: var(--gold-light);
}

/* --- Text --- */
.why-card-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  transition: color var(--duration-base) var(--ease-out-expo);
}

.why-card:hover .why-card-text {
  color: rgba(255, 255, 255, 0.65);
}

/* --- Decorative Line --- */
.why-card-line {
  position: absolute;
  bottom: 0;
  left: clamp(1.5rem, 2.5vw, 2.5rem);
  right: clamp(1.5rem, 2.5vw, 2.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.why-card:hover .why-card-line {
  transform: scaleX(1);
}

/* ============ RESPONSIVE — WHY ============ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .why-card {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  }

  .why-card:last-child {
    border-bottom: none;
  }

  .why-card-inner {
    display: contents;
  }

  .why-card-icon {
    margin-bottom: 0;
    grid-column: 1;
  }

  .why-card-title,
  .why-card-text {
    grid-column: 2;
  }

  .why-card-text {
    max-width: none;
  }

  .why-card-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card-icon {
    grid-column: 1;
  }

  .why-card-title,
  .why-card-text {
    grid-column: 1;
  }
}

/* ============ CLIENT STORIES — EDITORIAL CASES ============ */
.stories-section {
  background: var(--ivory);
}

.stories-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* --- Grid --- */
.stories-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

/* --- Card Base --- */
.story-card {
  position: relative;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--duration-base) var(--ease-out-expo),
              transform var(--duration-base) var(--ease-out-expo);
}

.story-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* --- Image --- */
.story-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.story-card--featured .story-card-image {
  aspect-ratio: 16 / 9;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.story-card:hover .story-card-image img {
  transform: scale(1.05);
}

.story-card-image-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 9, 7, 0.4) 0%,
    transparent 40%
  );
}

/* --- Content --- */
.story-card-content {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

/* --- Meta --- */
.story-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.story-type {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.story-divider {
  color: var(--stone-light);
  font-size: 0.75rem;
}

.story-location {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--stone-light);
}

/* --- Title --- */
.story-title {
  font-family: var(--font-headline);
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 1rem;
  transition: color var(--duration-base) var(--ease-out-expo);
}

.story-card:hover .story-title {
  color: var(--gold-dark);
}

/* --- Body --- */
.story-body {
  margin-bottom: 1.25rem;
}

.story-block {
  margin-bottom: 0.75rem;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 0.375rem;
}

.story-block p {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.65;
  color: var(--stone);
}

/* --- Link --- */
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.story-card:hover .story-link {
  color: var(--gold);
  gap: 10px;
}

.story-link svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.story-card:hover .story-link svg {
  transform: translateX(2px);
}

/* --- Secondary Stack --- */
.stories-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.story-card--secondary .story-card-image {
  aspect-ratio: 16 / 8;
}

/* ============ RESPONSIVE — STORIES ============ */
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stories-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .story-card--secondary .story-card-image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .stories-stack {
    grid-template-columns: 1fr;
  }

  .story-card--secondary .story-card-image {
    aspect-ratio: 16 / 9;
  }

  .story-card-content {
    padding: 1.25rem;
  }
}

/* ============ FEATURED COMMUNITIES — LUXURY CARDS ============ */
.communities-section {
  background: var(--ivory-dark);
}

.communities-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* --- Grid --- */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* --- Card --- */
.community-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--duration-base) var(--ease-out-expo),
              transform var(--duration-base) var(--ease-out-expo);
}

.community-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

/* --- Image --- */
.community-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.community-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo);
}

.community-card:hover .community-card-image img {
  transform: scale(1.08);
}

.community-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 9, 7, 0.5) 0%,
    transparent 50%
  );
}

/* --- Badge --- */
.community-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.875rem;
  background: var(--gold);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

/* --- Content --- */
.community-card-content {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

/* --- Header --- */
.community-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.community-card-name {
  font-family: var(--font-headline);
  font-size: clamp(1.375rem, 1.6vw, 1.5rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.2;
}

.community-card-price {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* --- Text --- */
.community-card-text {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

/* --- Footer Stats --- */
.community-card-footer {
  display: flex;
  gap: 1.5rem;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(26, 24, 20, 0.06);
  border-bottom: 1px solid rgba(26, 24, 20, 0.06);
  margin-bottom: 1.25rem;
}

.community-card-stat {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--stone-light);
  letter-spacing: 0.02em;
}

.community-card-stat .stat-num {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--espresso);
  margin-right: 0.25rem;
}

/* --- Link --- */
.community-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.community-card:hover .community-card-link {
  color: var(--gold);
  gap: 10px;
}

.community-card-link svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.community-card:hover .community-card-link svg {
  transform: translateX(2px);
}

/* ============ RESPONSIVE — COMMUNITIES ============ */
@media (max-width: 1024px) {
  .communities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .communities-grid .community-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .communities-grid {
    grid-template-columns: 1fr;
  }

  .communities-grid .community-card:last-child {
    max-width: none;
  }

  .community-card-image {
    aspect-ratio: 16 / 10;
  }
}

/* ============ FEATURED LISTINGS — MINIMAL LUXURY ============ */
.listings-section {
  background: var(--ivory);
}

.listings-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* --- Grid --- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* --- Card --- */
.listing-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--duration-base) var(--ease-out-expo),
              transform var(--duration-base) var(--ease-out-expo);
}

.listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* --- Image --- */
.listing-card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.listing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.listing-card:hover .listing-card-image img {
  transform: scale(1.05);
}

/* --- Badge --- */
.listing-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--espresso);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

/* --- Content --- */
.listing-card-content {
  padding: clamp(1rem, 1.5vw, 1.25rem) clamp(1rem, 1.5vw, 1.5rem);
}

/* --- Price --- */
.listing-card-price {
  font-family: var(--font-headline);
  font-size: clamp(1.375rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

/* --- Address --- */
.listing-card-address {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

/* --- Specs --- */
.listing-card-specs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--stone-light);
  letter-spacing: 0.02em;
}

.spec-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stone-light);
  opacity: 0.5;
}

/* --- CTA --- */
.listings-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* ============ RESPONSIVE — LISTINGS ============ */
@media (max-width: 1024px) {
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listings-grid .listing-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .listings-grid {
    grid-template-columns: 1fr;
  }

  .listings-grid .listing-card:last-child {
    max-width: none;
  }
}

/* ============ RESOURCES — EDITORIAL CARDS ============ */
.resources-section {
  background: var(--ivory-dark);
}

.resources-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* --- Grid --- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 24, 20, 0.06);
}

/* --- Card --- */
.resource-card {
  background: var(--white);
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out-expo);
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.resource-card {
  position: relative;
  overflow: hidden;
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card:hover {
  background: var(--ivory);
}

/* --- Category --- */
.resource-card-category {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.875rem;
}

/* --- Title --- */
.resource-card-title {
  font-family: var(--font-headline);
  font-size: clamp(1.125rem, 1.3vw, 1.25rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 0.625rem;
  transition: color var(--duration-base) var(--ease-out-expo);
}

.resource-card:hover .resource-card-title {
  color: var(--gold-dark);
}

/* --- Text --- */
.resource-card-text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--stone);
  margin-bottom: 1.25rem;
  flex: 1;
}

/* --- Footer --- */
.resource-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 24, 20, 0.06);
}

.resource-card-read {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--stone-light);
  letter-spacing: 0.02em;
}

.resource-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.resource-card:hover .resource-card-link {
  color: var(--gold);
  gap: 8px;
}

.resource-card-link svg {
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.resource-card:hover .resource-card-link svg {
  transform: translateX(2px);
}

/* --- CTA --- */
.resources-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* ============ RESPONSIVE — RESOURCES ============ */
@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ TESTIMONIALS — EDITORIAL QUOTES ============ */
.testimonials-section {
  background: var(--espresso);
  overflow: hidden;
}

.testimonials-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  text-align: center;
}

.testimonials-header .eyebrow {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials-header .eyebrow::before {
  background: var(--gold);
}

.testimonials-header .headline-lg {
  color: var(--white);
}

/* --- Slider --- */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 360px;
}

/* --- Slide --- */
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out-expo);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Content --- */
.testimonial-content {
  position: relative;
  text-align: center;
}

/* --- Quote Mark --- */
.testimonial-quote-mark {
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

/* --- Text --- */
.testimonial-text {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Author --- */
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.testimonial-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(196, 167, 125, 0.3);
}

.testimonial-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-location {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* --- Navigation --- */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonials-prev,
.testimonials-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out-expo);
}

.testimonials-prev:hover,
.testimonials-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 167, 125, 0.08);
}

/* --- Dots --- */
.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out-expo);
}

.testimonials-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.testimonials-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* ============ RESPONSIVE — TESTIMONIALS ============ */
@media (max-width: 768px) {
  .testimonial-track {
    min-height: 420px;
  }

  .testimonial-text {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
  }

  .testimonials-nav {
    justify-content: center;
  }
}

/* ============ CALL TO ACTION — IMMERSIVE ============ */
.cta-section {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 20, 0.88) 0%,
    rgba(26, 24, 20, 0.75) 50%,
    rgba(26, 24, 20, 0.65) 100%
  );
}

/* --- Content --- */
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: var(--gold);
}

.cta-eyebrow::before {
  background: var(--gold);
}

.cta-headline {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* --- Actions --- */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 16px 32px 16px 28px;
  background: var(--gold);
  color: var(--espresso);
  font-weight: 600;
}

.cta-btn-primary:hover {
  background: var(--gold-light);
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 167, 125, 0.35);
}

.cta-btn-primary:hover .btn-icon {
  transform: translateX(3px) translateY(-1px);
}

.cta-btn-primary .btn-icon {
  background: rgba(26, 24, 20, 0.1);
}

/* Secondary light button */
.btn-secondary-light {
  padding: 16px 28px;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration-base) var(--ease-out-expo);
}

.btn-secondary-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ============ RESPONSIVE — CTA ============ */
@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--espresso);
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.newsletter-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-headline {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.newsletter-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: all var(--duration-base) var(--ease-out-expo);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--espresso);
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out-expo);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

/* ============ RESPONSIVE — NEWSLETTER ============ */
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-input {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
  }

  .newsletter-input:focus {
    border-color: var(--gold);
  }

  .newsletter-btn {
    border-radius: var(--radius-full);
  }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  max-width: 800px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .headline-sm {
  color: var(--white);
}

.site-footer .body-small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gutter);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-credit {
  font-family: var(--font-headline);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.footer-social a:hover {
  color: var(--gold-light);
}

/* --- Footer Brand Mark --- */
.footer-brand {
  margin-top: 3rem;
  overflow: hidden;
  user-select: none;
}

.footer-brand span {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.06);
  text-align: center;
  white-space: nowrap;
  transition: color var(--duration-slow) var(--ease-out-expo);
}

.footer-brand:hover span {
  color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headline {
    max-width: none;
  }

  .hero-text {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-trust span + span::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
