/* ==========================================================================
   PrimeOne CFO — Design System
   Palette: deep forest green · warm ivory · brass
   Type: Fraunces (display serif) · Inter (body sans)
   ========================================================================== */

:root {
  /* Color tokens */
  --green-990: #071510;
  --green-950: #0B1F16;
  --green-900: #10291D;
  --green-800: #17382a;
  --green-700: #1F4735;
  --green-600: #2C5A44;
  --brass-300: #dcc294;
  --brass-400: #C9A870;
  --brass-500: #B4915A;
  --brass-600: #96753F;
  --ivory-50:  #FFFFFF;
  --ivory-100: #F5F0E4;
  --ivory-200: #EAE2CF;
  --ink:       #14251B;
  --ink-soft:  #3E5247;
  --mist:      #A9BCAF;   /* muted text on dark */
  --line-dark: rgba(201, 168, 112, 0.18);
  --line-light: rgba(20, 37, 27, 0.12);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1160px;
  --section-pad: clamp(4.5rem, 10vw, 8rem);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul[class], ol[class] { list-style: none; }
::selection { background: var(--brass-400); color: var(--green-950); }

.container { width: min(var(--container), 100% - 3rem); margin-inline: auto; }
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn--brass {
  background: linear-gradient(135deg, var(--brass-300), var(--brass-500));
  color: var(--green-950);
  box-shadow: 0 6px 24px rgba(180, 145, 90, 0.35);
}
.btn--brass:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(180, 145, 90, 0.5); }
.btn--brass:active { transform: translateY(0); }
.btn--ghost {
  color: var(--ivory-100);
  border: 1px solid rgba(245, 240, 228, 0.4);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--brass-400); color: var(--brass-300); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1.15rem 2.5rem; font-size: 1.05rem; }
.btn:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass-400);
  outline-offset: 3px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav--solid {
  background: rgba(7, 21, 16, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 var(--line-dark);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ivory-100);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__brand em { color: var(--brass-400); font-style: normal; }
.nav__monogram {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--green-800);
  border: 1px solid var(--line-dark);
  color: var(--brass-400);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a:not(.btn) {
  color: var(--ivory-100);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--brass-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:not(.btn):hover { opacity: 1; }
.nav__links a:not(.btn):hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { opacity: 1; color: var(--brass-300); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ivory-100);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ivory-100);
  overflow: hidden;
  background: var(--green-990);
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__image {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 62% 38%;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
/* When video can't autoplay, JS adds .hero--imgfallback: swap to the animated still */
.hero--imgfallback .hero__video { display: none; }
.hero--imgfallback .hero__image { display: block; }
@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.22) translate(-3%, 2.5%); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 21, 16, 0.94) 0%, rgba(7, 21, 16, 0.72) 45%, rgba(7, 21, 16, 0.45) 100%),
    linear-gradient(to top, rgba(7, 21, 16, 0.95) 0%, transparent 35%);
}
.hero__content { position: relative; z-index: 2; padding: 8rem 0 6rem; }
.hero__title, .hero__sub { max-width: 820px; }
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.accent-serif { font-style: italic; color: var(--brass-300); }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 1.1rem; color: var(--ivory-50); }
.hero__sub strong { color: var(--brass-300); font-weight: 600; }
.hero__body { color: var(--mist); max-width: 560px; margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__card {
  position: absolute;
  right: max((100% - var(--container)) / 2, 1.5rem);
  bottom: clamp(5rem, 12vh, 8rem);
  z-index: 2;
  width: 300px;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(11, 31, 22, 0.72);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero__card-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.hero__card-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }
.hero__card-badges { font-family: var(--font-display); color: var(--brass-300); font-size: 1rem; white-space: nowrap; }
.hero__card-divider { height: 1px; background: var(--line-dark); margin: 1rem 0; }
.hero__card-metric { font-family: var(--font-display); font-size: 1.7rem; color: var(--ivory-50); line-height: 1; }
.hero__card-caption { font-size: 0.78rem; color: var(--mist); text-align: right; max-width: 150px; }

.hero__scrollhint {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--brass-400);
  opacity: 0.8;
  animation: drift 2.4s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Sections (shared) ---------- */
.section { padding: var(--section-pad) 0; }
.section--light { background: var(--ivory-50); color: var(--ink); }
.section--light:nth-of-type(even) { background: var(--ivory-100); }
.section--dark { background: var(--green-950); color: var(--ivory-100); position: relative; }
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(201, 168, 112, 0.07), transparent 60%);
  pointer-events: none;
}
.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}
.section__eyebrow--brass { color: var(--brass-400); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  max-width: 640px;
}
.section__lede { max-width: 620px; color: var(--ink-soft); margin-bottom: 3rem; }
.section__lede--dark { color: var(--mist); }

/* ---------- Credibility strip ---------- */
.cred { background: var(--green-990); border-top: 1px solid var(--line-dark); padding: 2.6rem 0; }
.cred__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.cred__item { display: flex; flex-direction: column; gap: 0.35rem; padding-left: 1.2rem; border-left: 2px solid var(--brass-600); }
.cred__num { font-family: var(--font-display); font-size: 2rem; color: var(--brass-300); line-height: 1.1; }
.cred__label { font-size: 0.85rem; color: var(--mist); line-height: 1.45; }

/* ---------- Problem ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.problem__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.6rem 1.7rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.problem__item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20, 37, 27, 0.08); }
.problem__item--wide { grid-column: 1 / -1; }
.problem__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ivory-100);
  color: var(--green-700);
}
.problem__icon svg { width: 22px; height: 22px; }
.problem__item p { color: var(--ink-soft); }
.problem__item strong { color: var(--ink); }
.problem__closer {
  margin-top: 2.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--green-700);
  max-width: 720px;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.svc {
  background: var(--green-950);
  color: var(--ivory-100);
  border-radius: var(--radius);
  padding: 2.2rem 2.2rem 1.9rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 260px at 110% -20%, rgba(201, 168, 112, 0.12), transparent 65%);
  pointer-events: none;
}
.svc:hover {
  transform: translateY(-6px);
  border-color: var(--line-dark);
  box-shadow: 0 28px 60px rgba(11, 31, 22, 0.35);
}
.svc__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.svc__index { font-family: var(--font-display); font-size: 0.95rem; color: var(--brass-500); letter-spacing: 0.1em; }
.svc__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--green-800); color: var(--brass-300); }
.svc__icon svg { width: 24px; height: 24px; }
.svc__name { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; margin-bottom: 0.5rem; }
.svc__tag { color: var(--brass-300); font-size: 0.95rem; margin-bottom: 1.3rem; }
.svc__list { display: grid; gap: 0.6rem; margin-bottom: 1.6rem; }
.svc__list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--mist);
  font-size: 0.93rem;
  line-height: 1.55;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brass-500);
  transform: rotate(45deg);
}
.svc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  color: var(--mist);
}
.svc__meta strong { color: var(--ivory-100); font-weight: 600; margin-right: 0.4rem; }

/* ---------- Retainers ---------- */
.retainers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.tier {
  padding: 2rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.tier:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.045); }
.tier--featured {
  background: linear-gradient(160deg, rgba(201, 168, 112, 0.14), rgba(201, 168, 112, 0.04));
  border-color: rgba(201, 168, 112, 0.4);
  position: relative;
}
.tier__flag {
  position: absolute;
  top: -0.8rem;
  left: 1.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--brass-300), var(--brass-500));
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.tier__name { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--brass-300); margin-bottom: 0.7rem; }
.tier__desc { color: var(--mist); font-size: 0.95rem; }
.retainers__note { margin-top: 2.4rem; color: var(--mist); font-size: 0.9rem; position: relative; z-index: 1; }

/* ---------- Founder ---------- */
.founder__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.founder__media { position: relative; }
.founder__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 37, 27, 0.22);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.founder__badge {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  background: rgba(7, 21, 16, 0.85);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
  color: var(--ivory-100);
}
.founder__badge-title { font-family: var(--font-display); font-size: 1.15rem; }
.founder__badge-sub { font-size: 0.8rem; color: var(--brass-300); letter-spacing: 0.04em; }
.founder__text p { margin-bottom: 1.2rem; color: var(--ink-soft); }
.founder__text p strong { color: var(--ink); }
.founder__points { display: grid; gap: 1rem; margin-top: 1.8rem; }
.founder__points li {
  position: relative;
  padding: 1.05rem 1.3rem 1.05rem 3.1rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.founder__points li strong { color: var(--green-700); display: inline; }
.founder__points li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 18px;
  height: 18px;
  background: var(--brass-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Founder visual (custom board-pack illustration) ---------- */
.founder__visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--green-900), var(--green-990) 75%);
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 70px rgba(20, 37, 27, 0.22);
  padding: 1.3rem 1.3rem 8rem;
  position: relative;
  overflow: hidden;
}
.founder__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 260px at 100% 0%, rgba(201, 168, 112, 0.1), transparent 65%);
  pointer-events: none;
}
.fv__header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--mist);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fv__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-700); }
.fv__dot--brass { background: var(--brass-500); }
.fv__title { margin-left: auto; }
.fv__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.fv__kpi {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
}
.fv__kpi-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mist);
}
.fv__kpi-val { font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory-50); line-height: 1.1; }
.fv__kpi-val--brass { color: var(--brass-300); }
.fv__chart {
  padding: 0.85rem 0.85rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-dark);
}
.fv__chart svg { width: 100%; height: 110px; display: block; }
.fv__legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}
.fv__legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.fv__swatch { display: inline-block; width: 16px; height: 0; border-top: 2.5px solid var(--brass-400); }
.fv__swatch--dash { border-top: 2px dashed var(--mist); }
.fv__check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  background: rgba(201, 168, 112, 0.09);
  border: 1px solid rgba(201, 168, 112, 0.35);
  font-size: 0.82rem;
  color: var(--mist);
}
.fv__check strong { font-family: var(--font-display); font-size: 1rem; color: var(--brass-300); white-space: nowrap; }

/* ---------- Process + FAQ two-column section ---------- */
.duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.duo .process__steps { max-width: none; margin-top: 2.2rem; }
.duo .faq__list { margin-top: 2.2rem; }
.duo .section__title { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* ---------- Who ---------- */
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
}
.who__card {
  padding: 2rem 1.9rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-dark);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.who__card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.05); }
.who__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--brass-300);
  margin-bottom: 0.8rem;
}
.who__card p { color: var(--mist); font-size: 0.95rem; }
.who__card strong { color: var(--ivory-100); }

/* ---------- Process ---------- */
.process__steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  margin-top: 2.6rem;
  max-width: 760px;
}
.step {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2.4rem;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brass-400), var(--line-light));
}
.step__num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--brass-300);
  font-family: var(--font-display);
  font-size: 1.15rem;
  border: 1px solid var(--line-dark);
}
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--green-800); }
.step h3 em { font-size: 0.85em; color: var(--ink-soft); }
.step p { color: var(--ink-soft); max-width: 560px; }

/* ---------- Comparison ---------- */
.compare__scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20, 37, 27, 0.1); }
.compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
}
.compare__table th, .compare__table td {
  padding: 1.15rem 1.4rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-light);
}
.compare__table thead th {
  background: var(--green-950);
  color: var(--ivory-100);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
.compare__table thead th.compare__hl { color: var(--brass-300); }
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table td { color: var(--ink-soft); }
.compare__table td:first-child { font-weight: 600; color: var(--ink); }
.compare__table td.compare__hl {
  background: rgba(201, 168, 112, 0.1);
  color: var(--green-800);
  font-weight: 500;
  border-left: 3px solid var(--brass-500);
}

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 800px; }
.faq__list { display: grid; gap: 0.9rem; margin-top: 2.4rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq__item[open] { border-color: var(--brass-500); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-700); }
.faq__chev {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brass-600);
  border-bottom: 2px solid var(--brass-600);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  margin-top: -4px;
}
.faq__item[open] .faq__chev { transform: rotate(-135deg); margin-top: 4px; }
.faq__body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }

/* ---------- CTA + booking form ---------- */
.cta { background: linear-gradient(180deg, var(--green-950) 0%, var(--green-990) 100%); }
.cta__head { text-align: center; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.cta__sub { color: var(--mist); max-width: 560px; margin-bottom: 1rem; }
.cta__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}
.cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: 0.95rem;
  color: var(--mist);
}
.cta__contacts a, .cta__contacts span { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--mist); transition: color 0.2s; }
.cta__contacts a:hover { color: var(--brass-300); }
.cta__contacts svg { width: 17px; height: 17px; color: var(--brass-500); flex: 0 0 auto; }
.cta__assurances {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mist);
}
.cta__assurances li {
  position: relative;
  padding-left: 1.7rem;
}
.cta__assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 15px;
  height: 15px;
  background: var(--brass-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(6px);
}
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}
.form__field input,
.form__field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ivory-50);
  background: rgba(7, 21, 16, 0.55);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: rgba(169, 188, 175, 0.45); }
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brass-400);
  box-shadow: 0 0 0 3px rgba(201, 168, 112, 0.18);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__submit { grid-column: 1 / -1; justify-self: start; }
.form__status { grid-column: 1 / -1; font-size: 0.85rem; color: var(--brass-300); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer { background: var(--green-990); border-top: 1px solid var(--line-dark); padding: 2.2rem 0; color: var(--mist); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  color: var(--ivory-100);
  font-size: 1.05rem;
}
.footer__brand em { color: var(--brass-400); font-style: normal; }
.footer__disclaimer { font-size: 0.8rem; max-width: 420px; }
.footer__copy { font-size: 0.8rem; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scrollhint { animation: none; }
  .hero__image { animation: none; }
  .hero--imgfallback .hero__image { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__card { display: none; }
  .cred__grid { grid-template-columns: repeat(2, 1fr); }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__media { max-width: 480px; }
  .duo__grid { grid-template-columns: 1fr; gap: 4rem; }
  .cta__grid { grid-template-columns: 1fr; }
  .cta__info { order: 2; }
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(7, 21, 16, 0.97);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }
  .nav--open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { font-size: 1.3rem; }
  .services__grid { grid-template-columns: 1fr; }
  .retainers__grid { grid-template-columns: 1fr; }
  .who__grid { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .cred__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .hero__content { padding-top: 7rem; }
  .hero__actions .btn { width: 100%; }
  .svc { padding: 1.7rem 1.4rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .form { grid-template-columns: 1fr; }
  .form__submit { justify-self: stretch; }
}
