/* ============================================================
   Lions Capital Deals — marketing site
   Aesthetic: editorial serif, alternating navy/cream sections,
   centered typography, hairlines not shadows, amber accent
   used sparingly. Inspired by PropTerra Group's layout grammar.
   ============================================================ */

:root {
  /* ----- cream palette ----- */
  --cream:        #FBFAF7;
  --cream-2:      #F3EEE2;
  --cream-3:      #EBE4D1;
  --cream-hair:   #D9D1BB;
  --cream-hair-2: #C4BBA0;
  --cream-fg-1:   #A7A08A;   /* meta */
  --cream-fg-2:   #6B6558;   /* body light */
  --cream-fg-3:   #2A2A1F;   /* body */
  --cream-fg-4:   #14120D;   /* titles */

  /* ----- navy palette ----- */
  --navy:         #0F172A;
  --navy-2:       #141D33;
  --navy-3:       #1C273E;
  --navy-hair:    rgba(236, 230, 214, 0.10);
  --navy-hair-2:  rgba(236, 230, 214, 0.22);
  --navy-fg-1:    #6F6A59;   /* muted meta */
  --navy-fg-2:    #A7A08A;   /* meta / small caps */
  --navy-fg-3:    #ECE6D6;   /* body */
  --navy-fg-4:    #FFFFFF;   /* titles */

  /* ----- accent — brass/amber (used sparingly) ----- */
  --amber-1:      #F6EFE0;
  --amber-2:      #E9D6A9;
  --amber-3:      #C99A54;
  --amber-4:      #B8803A;   /* THE color */
  --amber-5:      #8E5F26;   /* hover/pressed */
  --amber-6:      #D9A163;   /* for dark bg */
  --amber-a2:     rgba(184, 128, 58, 0.14);
  --amber-a3:     rgba(184, 128, 58, 0.28);

  /* ----- status ----- */
  --green:        #6BAA66;

  /* ----- fallback defaults (cream theme is the root) ----- */
  --bg:           var(--cream);
  --fg-1:         var(--cream-fg-1);
  --fg-2:         var(--cream-fg-2);
  --fg-3:         var(--cream-fg-3);
  --fg-4:         var(--cream-fg-4);
  --hairline:     var(--cream-hair);
  --hairline-2:   var(--cream-hair-2);

  /* ----- typography ----- */
  --font-serif:   "Libre Caslon Text", "Cormorant Garamond", "EB Garamond",
                  Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont,
                  "Segoe UI", system-ui, sans-serif;
  --font-mono:    ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

  /* ----- motion ----- */
  --ease:         cubic-bezier(.4, 0, .2, 1);
  --t-fast:       140ms;
  --t-med:        260ms;
  --t-slow:       560ms;

  /* ----- layout ----- */
  --content:      1120px;
  --content-editorial: 860px;
  --gutter:       clamp(22px, 4.5vw, 48px);
  --section-y:    clamp(96px, 11vw, 160px);

  /* ----- shadows ----- */
  --shadow-xs:    0 1px 0 rgba(20,20,15,0.04);
  --shadow-1:     0 1px 2px rgba(20,20,15,0.06), 0 0 0 1px rgba(20,20,15,0.04);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--fg-3);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--fg-4);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
p { margin: 0; }
em { font-style: italic; }

::selection { background: var(--amber-a3); color: var(--fg-4); }

/* ---------- shell ---------- */
.container {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   SECTION theming — dark (navy) / cream
   ============================================================ */
.section,
.section--dark,
.section--cream,
.hero,
.trust,
.cta,
.footer {
  position: relative;
}

.section--cream {
  background: var(--cream);
  --bg: var(--cream);
  --fg-1: var(--cream-fg-1);
  --fg-2: var(--cream-fg-2);
  --fg-3: var(--cream-fg-3);
  --fg-4: var(--cream-fg-4);
  --hairline: var(--cream-hair);
  --hairline-2: var(--cream-hair-2);
  color: var(--fg-3);
}

.section--dark {
  background: var(--navy);
  --bg: var(--navy);
  --fg-1: var(--navy-fg-1);
  --fg-2: var(--navy-fg-2);
  --fg-3: var(--navy-fg-3);
  --fg-4: var(--navy-fg-4);
  --hairline: var(--navy-hair);
  --hairline-2: var(--navy-hair-2);
  color: var(--fg-3);
}

/* give the alternation a subtle seam */
.section--cream + .section--dark,
.section--dark + .section--cream { border-top: 0; }

/* ============================================================
   NAV — floating navy pill
   ============================================================ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 54px;
  padding: 6px 6px 6px 20px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset,
              0 10px 30px -12px rgba(0,0,0,0.45),
              0 0 0 1px rgba(255,255,255,0.04);
  color: var(--navy-fg-3);
  max-width: calc(100vw - 32px);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy-fg-4);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 6px;
}
.nav__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  flex: 0 0 40px;
  margin: -4px 6px -4px -2px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 45%, #1b2335 0%, #0f1524 85%);
  box-shadow:
    inset 0 0 0 1px rgba(217, 161, 99, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease);
}
.nav__brand-mark img {
  width: 128%; height: 128%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}
.nav__brand:hover .nav__brand-mark {
  transform: rotate(-4deg) scale(1.04);
}
.nav__brand .wordmark { white-space: nowrap; }
.nav__links {
  display: flex; align-items: center; gap: 2px;
  padding: 0 4px;
}
.nav__link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-fg-3);
  border-radius: 999px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__link:hover {
  color: var(--navy-fg-4);
  background: rgba(255,255,255,0.05);
}
.nav__cta .cta-label--short { display: none; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 18px;
  margin-left: 6px;
  background: var(--amber-4);
  color: #FFFFFF;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav__cta:hover { background: var(--amber-5); }
.nav__cta:active { transform: scale(0.98); }
.nav__cta .arrow { transition: transform var(--t-med) var(--ease); }
.nav__cta:hover .arrow { transform: translateX(3px); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  color: var(--navy-fg-4);
  transition: background var(--t-fast) var(--ease);
}
.nav__burger:hover { background: rgba(255,255,255,0.06); }

/* ============================================================
   SECTION head — centered editorial style
   ============================================================ */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  scroll-margin-top: 100px;
}

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin: 0 auto 72px;
  max-width: 760px;
}
.section__mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  opacity: 0.82;
}
.section__mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.section--dark .section__mark img {
  filter: brightness(1.35) saturate(1.1) drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.section__meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
}
.section--dark .section__meta { color: var(--navy-fg-2); }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--fg-4);
  font-weight: 400;
  max-width: 720px;
}
.section__title em {
  font-style: italic;
  color: var(--amber-4);
}
.section--dark .section__title em { color: var(--amber-6); }
.section__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 620px;
  margin: 8px auto 0;
}
.section--dark .section__lede { color: var(--navy-fg-3); opacity: 0.82; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(100px, 12vw, 160px);
  overflow: hidden;
  background: #08111F;
  isolation: isolate;
  color: var(--navy-fg-3);
  --bg: var(--navy);
  --fg-1: var(--navy-fg-1);
  --fg-2: var(--navy-fg-2);
  --fg-3: var(--navy-fg-3);
  --fg-4: var(--navy-fg-4);
  --hairline: var(--navy-hair);
  --hairline-2: var(--navy-hair-2);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.78;
  filter: saturate(0.82) brightness(0.78) contrast(1.04) hue-rotate(-6deg);
  pointer-events: none;
}
/* Left-weighted readability scrim over video — keeps text legible while letting the
   video breathe across the right side of the hero where the parcel motif lives. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8, 17, 31, 0.88) 0%,
      rgba(8, 17, 31, 0.72) 28%,
      rgba(8, 17, 31, 0.38) 55%,
      rgba(8, 17, 31, 0.18) 80%,
      rgba(8, 17, 31, 0.08) 100%),
    linear-gradient(180deg,
      rgba(8, 17, 31, 0.20) 0%,
      rgba(8, 17, 31, 0.10) 40%,
      rgba(8, 17, 31, 0.55) 85%,
      rgba(8, 17, 31, 1) 100%);
}
/* Navy tint wash to keep the palette coherent with the rest of the site */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 75% 50%, rgba(15, 40, 70, 0.18) 0%, transparent 60%);
  mix-blend-mode: overlay;
}
.hero__inner {
  display: block;
  position: relative;
  z-index: 2;
}
.hero__copy { max-width: 720px; }

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--navy-fg-2);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 32px;
}
.hero .eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--amber-6);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--navy-fg-4);
  font-weight: 400;
  max-width: 580px;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero__title em {
  font-style: italic;
  color: var(--amber-6);
  display: inline-block;
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-fg-3);
  opacity: 0.86;
  max-width: 500px;
  margin-bottom: 40px;
  letter-spacing: -0.003em;
}
.hero__actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.002em;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.btn--primary {
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset,
              0 1px 2px rgba(0,0,0,0.2),
              0 18px 34px -14px rgba(0,0,0,0.5);
}
.btn--primary:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary .arrow { transition: transform var(--t-med) var(--ease); }
.btn--primary:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  color: var(--navy-fg-3);
  padding: 0 4px;
  height: auto;
  background: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(236, 230, 214, 0.28);
  border-radius: 0;
  padding-bottom: 4px;
}
.btn--ghost:hover {
  color: var(--navy-fg-4);
  border-color: var(--amber-6);
}

.btn--amber {
  background: var(--amber-4);
  color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset,
              0 16px 32px -14px rgba(184,128,58,0.55);
}
.btn--amber:hover {
  background: var(--amber-5);
  transform: translateY(-1px);
}
.btn--amber .arrow { transition: transform var(--t-med) var(--ease); }
.btn--amber:hover .arrow { transform: translateX(4px); }

/* ---------- hero motif (parcel) ---------- */
.hero__motif {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: center;
  width: 100%;
  perspective: 1200px;
  cursor: crosshair;
}
.hero__motif-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(var(--mx, 0) * -6deg))
    rotateY(calc(var(--my, 0) * 6deg));
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.hero__motif[data-active="1"] .hero__motif-stage { transition: transform 80ms linear; }
.hero__motif svg { width: 100%; height: 100%; display: block; }
.hero__motif-rings { animation: breathe 6s var(--ease) infinite; }
.hero__motif[data-active="1"] .hero__motif-rings { animation-play-state: paused; }
.hero__motif-rings .ring {
  transition: opacity 200ms linear, stroke-width 200ms linear;
}
.hero__motif-rings .ring.is-near {
  opacity: 1 !important;
  stroke: var(--amber-6);
  stroke-width: 1.6;
}
.hero__motif-rings .ring-dot {
  transition: transform 120ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: 280px 280px;
}
.hero__motif-rings .ring-cursor {
  transition: opacity 180ms var(--ease);
  pointer-events: none;
}
.hero__motif[data-active="1"] .ring-cursor { opacity: 0.85; }
.hero__motif::after {
  /* corner ticks suggesting parcel boundary */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  --tick: rgba(236, 230, 214, 0.55);
  background:
    linear-gradient(to right,  var(--tick), var(--tick)) top left      / 14px 1px no-repeat,
    linear-gradient(to bottom, var(--tick), var(--tick)) top left      / 1px 14px no-repeat,
    linear-gradient(to right,  var(--tick), var(--tick)) top right     / 14px 1px no-repeat,
    linear-gradient(to bottom, var(--tick), var(--tick)) top right     / 1px 14px no-repeat,
    linear-gradient(to right,  var(--tick), var(--tick)) bottom left   / 14px 1px no-repeat,
    linear-gradient(to bottom, var(--tick), var(--tick)) bottom left   / 1px 14px no-repeat,
    linear-gradient(to right,  var(--tick), var(--tick)) bottom right  / 14px 1px no-repeat,
    linear-gradient(to bottom, var(--tick), var(--tick)) bottom right  / 1px 14px no-repeat;
}
.hero__motif-caption {
  position: absolute;
  bottom: -26px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--navy-fg-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__motif-coord {
  position: absolute;
  bottom: -26px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--navy-fg-2);
  letter-spacing: 0.08em;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

/* ============================================================
   TRUST STRIP (cream) — centered editorial lede
   ============================================================ */
.trust {
  padding-top: var(--section-y);
  padding-bottom: calc(var(--section-y) * 0.7);
  background: var(--cream);
  color: var(--cream-fg-3);
}
.trust__inner {
  max-width: 960px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.trust .mark {
  width: 64px; height: 64px;
  opacity: 0.9;
}
.trust__lede {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.003em;
  color: var(--cream-fg-3);
  max-width: 760px;
}
.trust__grid {
  margin-top: 24px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cream-hair);
  border-bottom: 1px solid var(--cream-hair);
}
.stat {
  padding: 32px 20px;
  border-right: 1px solid var(--cream-hair);
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream-fg-4);
}
.stat__label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream-fg-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   DEALS
   ============================================================ */
#deals .section__head { margin-bottom: 64px; }

.deals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--content);
  margin: 0 auto;
}

.deal {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--cream-hair);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.section--dark .deal {
  background: var(--cream);
  border-color: transparent;
}
.deal:hover {
  transform: translateY(-2px);
  border-color: var(--cream-hair-2);
}

.deal__thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1E1D17;
}
.deal__thumb img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.deal:hover .deal__thumb img { transform: scale(1.04); }

.deal__inner {
  padding: 24px 26px 22px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
  color: var(--cream-fg-3);
}
.deal__addr {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--cream-fg-4);
}
.deal__city {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream-fg-2);
  letter-spacing: 0;
}
.deal__foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-hair);
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream-fg-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.deals__foot {
  max-width: var(--content);
  margin: 56px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-2);
  gap: 24px;
}
.section--dark .deals__foot { border-color: var(--navy-hair-2); color: var(--navy-fg-3); }
.deals__foot a {
  color: var(--fg-4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t-fast) var(--ease);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.section--dark .deals__foot a { color: var(--navy-fg-4); }
.deals__foot a:hover { color: var(--amber-6); border-color: var(--amber-6); }
.deals__foot a svg { transition: transform var(--t-med) var(--ease); }
.deals__foot a:hover svg { transform: translate(2px, -2px); }

/* ============================================================
   WHY CHOOSE US — comparison tables
   ============================================================ */
.why__table,
.why__math {
  max-width: var(--content);
  margin: 0 auto;
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.why__math { margin-top: 72px; }

.why__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--hairline);
}
.why__row:first-child { border-top: none; }

.why__row--head .why__cell {
  padding-top: 20px; padding-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 500;
}
.why__row--head .why__cell--us {
  color: var(--amber-4);
}
.section--dark .why__row--head .why__cell--us { color: var(--amber-6); }

.why__cell {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 4px;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-3);
  border-left: 1px solid var(--hairline);
  min-width: 0;
  text-align: left;
}
.why__cell:first-child { border-left: none; }
.why__cell strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--fg-4);
  line-height: 1.2;
}
.why__cell span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--fg-2);
  letter-spacing: 0;
}
.why__cell--label {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--fg-2);
  font-weight: 500;
}
.why__cell--label strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--fg-4);
  font-weight: 400;
}

.why__row--total {
  border-top: 1px solid var(--hairline-2);
}
.why__row--total .why__cell strong {
  font-family: var(--font-serif);
  font-size: 26px;
}
.why__cell--win strong {
  color: var(--amber-4);
}
.section--dark .why__cell--win strong { color: var(--amber-6); }

.why__row--delta {
  border-top: 1px dashed var(--hairline-2);
  background: rgba(184, 128, 58, 0.05);
}
.why__row--delta .why__cell--us strong {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--amber-4);
}
.why__row--delta .why__cell--us span {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--cream-fg-2);
  margin-top: 4px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.85;
}
.why__row--delta .why__cell--label strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
}

.why__fine {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS (navy) — three editorial steps
   ============================================================ */
.how__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy-hair-2);
  border-bottom: 1px solid var(--navy-hair-2);
}
.step {
  padding: 56px 36px 60px;
  border-right: 1px solid var(--navy-hair-2);
  text-align: left;
}
.step:last-child { border-right: none; }
.step__num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--amber-6);
  letter-spacing: 0.28em;
  margin-bottom: 28px;
  display: block;
  font-feature-settings: "tnum";
}
.step__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--navy-fg-4);
  margin-bottom: 14px;
}
.step__desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--navy-fg-3);
  opacity: 0.82;
}

/* ============================================================
   FAQ (cream) — native details/summary accordion
   ============================================================ */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline-2);
}
.faq__item {
  border-bottom: 1px solid var(--hairline-2);
  padding: 0;
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 44px 28px 8px;
  position: relative;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream-fg-4);
  letter-spacing: -0.005em;
  transition: color var(--t-fast) var(--ease);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "";
  position: absolute;
  top: 50%; right: 8px;
  width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--cream-fg-2), var(--cream-fg-2)) center / 12px 1px no-repeat,
    linear-gradient(var(--cream-fg-2), var(--cream-fg-2)) center / 1px 12px no-repeat;
  transition: transform var(--t-med) var(--ease), background var(--t-fast) var(--ease);
}
.faq__item[open] > summary::after {
  background:
    linear-gradient(var(--cream-fg-4), var(--cream-fg-4)) center / 12px 1px no-repeat;
  transform: rotate(180deg);
}
.faq__item:hover > summary { color: var(--amber-5); }
.faq__item[open] > summary { color: var(--cream-fg-4); }
.faq__a {
  padding: 0 8px 32px 8px;
  max-width: 680px;
}
.faq__a p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-fg-2);
}

/* ============================================================
   CONTACT / principals cards
   ============================================================ */
.contact__grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  padding: 40px 36px 36px;
  background: var(--cream);
  border: 1px solid var(--cream-hair);
  border-radius: 4px;
  transition: border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
  overflow: hidden;
}
.card:hover {
  border-color: var(--cream-hair-2);
  transform: translateY(-2px);
}
.card__role {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--amber-5);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.card__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.008em;
  color: var(--cream-fg-4);
  margin-bottom: 28px;
  line-height: 1.1;
}
.card__rows {
  border-top: 1px solid var(--cream-hair);
  margin-top: 4px;
}
.card__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-hair);
  gap: 16px;
}
.card__row:last-child { border-bottom: none; }
.card__row .k {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream-fg-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.card__row .v {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream-fg-4);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color var(--t-fast) var(--ease);
}
.card__row .v--muted { color: var(--cream-fg-2); font-weight: 400; }
.card__row a.v:hover { color: var(--amber-5); }

/* ============================================================
   CTA (navy) — big closing block
   ============================================================ */
.cta {
  background: var(--navy);
  color: var(--navy-fg-3);
  padding: clamp(120px, 14vw, 180px) 0 clamp(120px, 14vw, 180px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(184, 128, 58, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cta__mark {
  width: 52px; height: 52px;
}
.cta__mark img {
  filter: brightness(1.35) saturate(1.1) drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.cta__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-fg-4);
  max-width: 760px;
}
.cta__phones {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--navy-fg-3);
  letter-spacing: 0;
}
.cta__phones a {
  color: var(--navy-fg-4);
  border-bottom: 1px solid rgba(236, 230, 214, 0.22);
  padding-bottom: 2px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.cta__phones a:hover { color: var(--amber-6); border-color: var(--amber-6); }
.cta__sep {
  color: var(--navy-fg-2);
  font-style: italic;
  opacity: 0.6;
}

/* ============================================================
   FOOTER (navy) — simple centered
   ============================================================ */
.footer {
  position: relative;
  background: var(--navy-2);
  color: var(--navy-fg-3);
  padding: 72px 0 28px;
  overflow: hidden;
  border-top: 1px solid var(--navy-hair);
}
.footer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__mark {
  width: 52px; height: 52px;
  opacity: 0.9;
  margin-bottom: 8px;
}
.footer__mark img {
  filter: brightness(1.35) saturate(1.1) drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy-fg-4);
  font-weight: 400;
  letter-spacing: 0;
}
.footer__nav {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 4px;
}
.footer__nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--navy-fg-3);
  opacity: 0.78;
  letter-spacing: 0;
  transition: color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.footer__nav a:hover { color: var(--amber-6); opacity: 1; }
.footer__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--navy-fg-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 12px;
}
.footer__status .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  position: relative;
}
.footer__status .dot::after {
  content: "";
  position: absolute; inset: -4px; border-radius: 999px;
  border: 1px solid var(--green);
  opacity: 0.5;
  animation: ping 1.8s var(--ease) infinite;
}
@keyframes ping {
  0%   { transform: scale(0.6); opacity: 0.6; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.footer__copy {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--navy-fg-2);
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 4px;
}

.footer__halo {
  position: absolute;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
  width: min(760px, 90vw);
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 30%, transparent 75%);
}
.footer__halo img {
  width: 100%; height: auto;
  filter: brightness(1.4) saturate(1.1);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-y: 88px; }
  .hero { padding-top: 132px; padding-bottom: 96px; }
  .hero__inner { display: block; }
  .trust__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--cream-hair); padding: 26px 16px; }
  .stat:last-child { border-bottom: none; }
  .deals__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why__row { grid-template-columns: 1.1fr 1fr 1fr; }
  .why__cell { padding: 16px 14px; font-size: 13px; }
  .why__cell strong { font-size: 18px; }
  .why__row--total .why__cell strong { font-size: 20px; }
  .how__grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--navy-hair-2); padding: 40px 28px; }
  .step:last-child { border-bottom: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .section__head { margin-bottom: 56px; }
}

@media (max-width: 860px) {
  .nav {
    top: 14px;
    left: 14px; right: 14px;
    transform: none;
    width: auto;
    max-width: none;
    padding: 6px 6px 6px 16px;
  }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__brand { padding-right: 0; border-right: none; margin-right: auto; }
  .nav__brand .wordmark { font-size: 14px; }
  .nav__cta { height: 40px; padding: 0 14px; white-space: nowrap; font-size: 13px; }
  .nav__cta .cta-label { display: none; }
  .nav__cta .cta-label--short { display: inline; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 42px; }
  .hero__sub { font-size: 15px; }
  .trust__lede { font-size: 20px; }
  .deals__grid { grid-template-columns: 1fr; }
  .deals__foot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .why__row { grid-template-columns: 1fr; }
  .why__cell { border-left: none; border-top: 1px solid var(--hairline); padding: 14px 18px; }
  .why__cell:first-child { border-top: none; }
  .why__row--head { display: none; }
  .why__row { padding: 6px 0 10px; }
  .why__cell--label { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: inherit; opacity: 0.95; padding-bottom: 6px; padding-top: 18px; border-top: 1px solid var(--hairline); }
  .why__row:first-of-type .why__cell--label { border-top: none; padding-top: 10px; }
  .why__cell--us, .why__cell--them { display: grid; grid-template-columns: 100px 1fr; gap: 12px; align-items: baseline; padding: 6px 18px; border-top: none; }
  .why__cell--us::before { content: "Lions Capital"; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-6); font-family: var(--font-sans); font-weight: 500; }
  .why__cell--them::before { content: "Listing path"; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; font-family: var(--font-sans); font-weight: 500; }
  .why__row--total .why__cell--us::before { content: "Net · Lions"; }
  .why__row--total .why__cell--them::before { content: "Net · Listing"; }
  .why__row--delta .why__cell--us::before { content: "You keep"; color: var(--amber-6); }
  .why__row--delta .why__cell--them { display: none; }
  .why__row--delta .why__cell--us strong { font-size: 26px; }
  .card { padding: 28px 24px; }
  .card__name { font-size: 28px; }
  .cta__phones { font-size: 18px; gap: 12px; }
  .footer__nav { gap: 18px; font-size: 12px; }
}

/* ============================================================
   Entrance animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(10px);
    animation: reveal var(--t-slow) var(--ease) forwards;
  }
  .reveal.d1 { animation-delay: 80ms; }
  .reveal.d2 { animation-delay: 180ms; }
  .reveal.d3 { animation-delay: 280ms; }
  .reveal.d4 { animation-delay: 380ms; }
  .reveal.d5 { animation-delay: 480ms; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
}
