/* =========================================================
   Panoptik LLC — site styles  (v2 — "pop" redesign)
   ========================================================= */

:root {
  /* Brand */
  --gold:        #c9a75c;
  --gold-bright: #e7cd8b;
  --gold-deep:   #9c7c42;
  --gold-grad:   linear-gradient(120deg, #9c7c42 0%, #c9a75c 45%, #e7cd8b 100%);

  /* Ink / dark surfaces */
  --ink-900: #14161b;
  --ink-850: #191c22;
  --ink-800: #1f232b;
  --ink-700: #2b303a;
  --ink-600: #3a404c;

  /* Light surfaces */
  --paper:   #ffffff;
  --bone:    #f6f4ef;
  --bone-2:  #efece3;

  /* Text */
  --text:      #2c2f36;
  --text-dim:  #63676f;
  --ink-strong: #22252b;
  --on-dark:   #e9e7e1;
  --on-dark-dim:#a2a5ad;

  --line:      #e5e2d9;
  --line-dark: rgba(255,255,255,.10);

  --brand-grey: #6b6f6e;   /* wordmark grey, sampled from the logo */
  --blue: #1a3374;         /* rich blue accent — contrasts the gold */

  --container: 1200px;
  --radius: 16px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --font-display: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-wordmark: "Cinzel", "Trajan Pro", Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(20,22,27,.05), 0 4px 12px rgba(20,22,27,.05);
  --shadow-md: 0 10px 30px rgba(20,22,27,.10), 0 2px 8px rgba(20,22,27,.06);
  --shadow-gold: 0 18px 50px rgba(201,167,92,.28);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  /* One long, seamless page-top gradient in the logo's colours.
     Fades gold -> white over the first ~2800px, then stays white. */
  background-color: var(--paper);
  background-image: linear-gradient(
    180deg,
    #e6d4ac 0%,
    #eaddc0 14%,
    #efe6d2 30%,
    #f4ede0 46%,
    #f9f4ec 64%,
    #fdfbf7 82%,
    #ffffff 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 2800px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.15em; }
ul { margin: 0 0 1.15em; padding-left: 1.2em; }

.container {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .8rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-grad);
}
.on-dark .eyebrow { color: var(--gold-bright); }

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-dim);
}
.on-dark .lead { color: var(--on-dark-dim); }

.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-inline: auto; }

.section {
  position: relative;
  padding: clamp(46px, 6.5vw, 84px) 0;
}
.section--bone { background: transparent; }
.section--dark {
  background: var(--ink-900);
  color: var(--on-dark);
}
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 34px; }

/* Pull "The Difference" up close under "Why It Matters" */
#why-it-matters { padding-top: clamp(12px, 2vw, 24px); padding-bottom: clamp(12px, 2vw, 26px); }
#difference { padding-top: clamp(12px, 2vw, 26px); padding-bottom: clamp(12px, 2vw, 26px); }
#difference + .section { padding-top: clamp(12px, 2vw, 26px); }
#why-it-matters .section-head { margin: 0 auto; max-width: none; text-align: center; }
#why-it-matters .statement {
  margin-inline: auto;
  max-width: 52ch;
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  line-height: 1.3;
}
#why-it-matters .statement-body {
  margin: 16px auto 0;
  max-width: 64ch;
  font-size: clamp(1.2rem, 1.6vw, 1.38rem);
  line-height: 1.6;
}
.section-head.center { margin-inline: auto; }
.section-head p { margin-bottom: 0; }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-bg: var(--gold-grad);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #1c1710;
  background-image: var(--btn-bg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  box-shadow: 0 10px 24px rgba(201,167,92,.28);
}
.btn:hover {
  color: #1c1710;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201,167,92,.4);
  filter: brightness(1.04);
}
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  background-image: none;
  color: var(--ink-strong);
  border: 1px solid rgba(34,37,43,.22);
  box-shadow: none;
}
.btn--ghost:hover {
  color: var(--ink-strong);
  background: rgba(34,37,43,.04);
  border-color: var(--gold);
  box-shadow: none;
}
.section--dark .btn--ghost,
.cta .btn--ghost {
  color: var(--on-dark);
  border-color: rgba(255,255,255,.28);
}
.section--dark .btn--ghost:hover,
.cta .btn--ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.5);
}
.btn--light-ghost {
  background: transparent;
  background-image: none;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--light-ghost:hover { color: var(--text); border-color: var(--gold); background: var(--bone); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, #efe0c2 0%, #e6d4ac 100%);
  border-bottom-color: rgba(107,111,110,.20);
  box-shadow: 0 6px 22px rgba(120,95,45,.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
}
.brand:hover { color: var(--ink-strong); }
.brand svg { width: 34px; height: 34px; }
.brand > img { height: 48px; width: auto; display: block; }
.brand .wordmark {
  font-family: var(--font-wordmark);
  font-weight: 600;
  font-size: 1.24rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-grey);
}
.site-footer .brand .wordmark { color: #eceae3; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-grad);
  transition: right .3s var(--ease);
}
.main-nav a:hover { color: var(--ink-strong); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--ink-strong); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 22px; font-size: .9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink-strong);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------------- Hero ---------------- */
/* The long fade lives on <body>; the hero only adds a soft gold spotlight. */
.hero {
  position: relative;
  background: radial-gradient(58% 46% at 84% -6%, rgba(201,167,92,.42), transparent 62%);
  color: var(--text);
  overflow: hidden;
  padding: clamp(110px, 15vh, 170px) 0 clamp(14px, 2.5vh, 30px);
}
.hero__bg,
.hero__grid { display: none; }
.hero .container { position: relative; z-index: 2; }

.hero__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.hero .hero__inner p {
  max-width: 64ch;
  margin: 0 auto;
  font-size: clamp(1.2rem, 1.6vw, 1.38rem);
  line-height: 1.6;
}
.hero__inner .btn-row { justify-content: center; }
.hero__inner .hero__stats { justify-content: center; }
.hero .hero-lede {
  max-width: none;
  margin: 0 auto 1.9rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--text-dim);
}
.hero .hero-lede b { display: block; color: var(--gold-deep); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.hero .hero-lede i {
  display: block;
  max-width: none;
  margin: .15em auto 0;
  font-style: italic;
  font-size: .82em;
}
.hero .eyebrow { margin-bottom: .55rem; }
.hero h1 { color: var(--ink-strong); margin-bottom: .3em; font-size: clamp(1.95rem, 4.2vw, 3.15rem); }
.hero .hero-title { text-align: center; margin-bottom: .6em; color: var(--blue); }

/* Blue accent applied across the homepage headings */
#why-it-matters .statement { color: var(--blue); }
#difference h2, #difference .tile h3,
#who-we-serve h2, #who-we-serve .tile h3 { color: var(--blue); }
.hero h1 .grad {
  background: linear-gradient(120deg, #8a6c38 0%, #b18f4f 50%, #6b6f6e 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero p { max-width: 44ch; color: var(--text-dim); font-size: 1.16rem; margin-bottom: 0; }
.hero .btn-row { margin-top: 22px; }

.hero__stats {
  display: flex;
  gap: 34px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero__stats div { line-height: 1.2; }
.hero__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blue);
}
.hero__stats span { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

/* ---------------- Watermark armillary (centred; rings spin, arrow fixed NE) --- */
.wm { position: relative; isolation: isolate; }
.wm > .container { z-index: 2; }
.hero__bg, .hero__grid, .cta__bg, .page-hero__bg { z-index: 0; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(680px, 74vh);
  height: min(680px, 74vh);
  background: url("../images/armillary-spin.svg?v=9") center / contain no-repeat;
  opacity: .2;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 640px) {
  body::before { width: 86vw; height: 86vw; opacity: .14; }
}

/* ---------------- Marquee / trust strip ---------------- */
.trust {
  background: transparent;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(107,111,110,.14);
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.trust .container { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; text-align: center; }
.trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------------- Partner / client logo strip ---------------- */
.logos {
  padding: clamp(52px, 8vw, 96px) 0;
  border-top: 1px solid rgba(107,111,110,.14);
}
.logos p {
  text-align: center;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 40px;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 22px;
}
.logos__row img {
  height: 60px;
  width: auto;
  box-sizing: content-box;
  padding: 18px 24px;
  transition: transform .2s var(--ease);
}
.logos__row img:hover {
  transform: translateY(-3px);
}
.logos__row img[src*="boyce-data"],
.logos__row img[src*="mysanteam"] {
  height: 80px;
}
.logos__row img[src*="cbre"] {
  height: 42px;
}
@media (max-width: 640px) {
  .logos__row img { height: 42px; padding: 14px 20px; }
  .logos__row img[src*="boyce-data"],
  .logos__row img[src*="mysanteam"] { height: 56px; }
  .logos__row img[src*="cbre"] { height: 30px; }
  .logos__row { gap: 16px; }
}

/* ---------------- Big opening statement ---------------- */
.statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  max-width: 32ch;
  margin: 0;
}
.statement .grad {
  background: linear-gradient(120deg, #8a6c38, #b18f4f 55%, #6b6f6e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.statement + .statement-body { margin-top: 16px; max-width: 52ch; color: var(--text-dim); font-size: 1.08rem; }

/* ---------------- Two-up bento ---------------- */
.bento.bento--2 { grid-template-columns: repeat(2, 1fr); }
#difference .bento { align-items: stretch; }

/* ---------------- Testimonials ---------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  border: 1px solid rgba(20,22,27,.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(20,22,27,.04), 0 14px 34px rgba(20,22,27,.06);
}
.quote__mark {
  font-family: var(--font-wordmark);
  font-size: 2.6rem;
  line-height: .6;
  color: var(--gold);
}
.quote p { margin: 0; font-size: 1.02rem; color: var(--text); }
.quote figcaption { margin-top: auto; font-size: .92rem; color: var(--text-dim); line-height: 1.5; }
.quote figcaption b { display: block; color: var(--ink-strong); font-weight: 600; }
.quote figcaption a { color: var(--gold-deep); }

@media (max-width: 900px) {
  .bento.bento--2 { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .tile { padding: 22px 24px; }
}

/* ---------------- Stats band ---------------- */
/* Method + homepage CTA share one continuous armillary-grey gradient */
#method,
#method + .cta {
  background: linear-gradient(120deg, #55585a 0%, #6b6f6e 45%, #7c8081 100%);
  background-attachment: fixed;
}
#method { padding-bottom: clamp(22px, 3vw, 40px); }
#method + .cta { padding-top: clamp(22px, 3vw, 40px); }
#method .step p { color: #f1f2ef; }
#method .eyebrow,
#method h2,
#method .step h3,
#method .step::before { color: var(--gold-bright); }
#method .eyebrow::before { background: var(--gold-bright); }
#method .step:last-child::after { display: block; }

.stats-band { background: linear-gradient(180deg, #e6d4ac 0%, #eaddc0 100%); color: var(--blue); }
.stats-band .eyebrow { color: var(--blue); }
.stats-band .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  display: block;
  color: var(--blue);
}
.stat > span { display: block; font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); opacity: .85; }
.stat b span { font: inherit; letter-spacing: inherit; text-transform: none; opacity: 1; }

/* ---------------- Bento grid ---------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 22px;
}
.tile {
  position: relative;
  background: linear-gradient(155deg, #fffdf8 0%, #f6efe1 55%, #f0e6d3 100%);
  border: 1px solid rgba(156,124,66,.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,22,27,.03), 0 14px 34px rgba(20,22,27,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.section--dark .tile {
  background: var(--ink-800);
  border-color: var(--line-dark);
  color: var(--on-dark);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tile:hover::after { opacity: 1; }
.tile--wide { grid-column: span 2; }

/* Services — practice-area cards */
.practice { padding-right: 66px; }
.practice .n {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(156,124,66,.24);
}
.practice > p { margin: 0 0 20px; color: var(--text-dim); font-size: .98rem; }
.caps {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 28px;
}
.caps li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: .93rem;
  color: var(--text);
  break-inside: avoid;
}
.caps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
@media (max-width: 620px) {
  .caps { columns: 1; }
  .practice { padding-right: 34px; }
  .practice .n { font-size: 2rem; }
}

.tile__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(201,167,92,.16), rgba(201,167,92,.04));
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.section--dark .tile__icon { color: var(--gold-bright); }
.tile__icon svg { width: 24px; height: 24px; }
.tile h3 { margin-bottom: .25em; }
.tile p { margin: 0; color: var(--text-dim); font-size: .98rem; }
.section--dark .tile p { color: var(--on-dark-dim); }

/* ---------------- Feature split ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  background: var(--ink-900);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.split__media img { width: 62%; opacity: .9; }
.pillar-list { list-style: none; padding: 0; margin: 28px 0 0; }
.pillar-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.pillar-list li:last-child { border-bottom: 1px solid var(--line); }
.pillar-list .k {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--gold-grad);
  color: #1c1710;
}
.pillar-list b { font-family: var(--font-display); }
.pillar-list p { margin: 2px 0 0; color: var(--text-dim); font-size: .96rem; }

/* ---------------- Process ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step { position: relative; padding-top: 40px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--gold-deep);
  position: absolute;
  top: 0; left: 0;
}
.step::after {
  content: "";
  position: absolute;
  top: 8px; left: 44px; right: -12px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step:last-child::after { display: none; }
.section--dark .step::before { color: var(--gold-bright); }
.step h3 { font-size: 1.12rem; margin-bottom: .3em; }
.step p { margin: 0; color: var(--text-dim); font-size: .95rem; }
.section--dark .step p { color: var(--on-dark-dim); }

/* ---------------- CTA band ---------------- */
.cta {
  position: relative;
  text-align: center;
  background: var(--ink-900);
  color: #fff;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 50% 0%, rgba(201,167,92,.28), transparent 70%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--gold-bright); }
.cta p { color: var(--on-dark-dim); }

/* Homepage CTA — shares the method section's continuous grey gradient (set above) */
#method + .cta .cta__bg { display: none; }
#method + .cta .eyebrow { color: var(--gold-bright); }
#method + .cta .eyebrow::before { background: var(--gold-bright); }
#method + .cta p { color: #f1f2ef; }

/* ---------------- Prose (interior pages) ---------------- */
.page-hero {
  background: radial-gradient(56% 60% at 86% -8%, rgba(201,167,92,.4), transparent 60%);
  color: var(--text);
  padding: clamp(160px, 23vh, 250px) 0 clamp(80px, 11vw, 130px);
  position: relative;
  overflow: hidden;
}
.page-hero__bg { display: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--ink-strong); font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero p { margin: 0; color: var(--text-dim); font-size: 1.15rem; max-width: 60ch; }

.prose { max-width: 760px; }

/* ---------------- About page: center everything ---------------- */
.page-about .page-hero .container { text-align: center; }
.page-about .prose { margin-inline: auto; text-align: center; }
.page-about .section--dark .section-head { margin-inline: auto; text-align: center; }
.page-about .tile { text-align: center; }
.page-about .page-hero { padding-top: clamp(110px, 15vh, 170px); padding-bottom: clamp(14px, 2.5vh, 30px); }
.page-about .page-hero + .section { padding-top: clamp(12px, 2vw, 24px); }
.page-services .page-hero { padding-top: clamp(110px, 15vh, 170px); padding-bottom: clamp(14px, 2.5vh, 30px); }
.page-services .page-hero h1 { color: var(--blue); }
.page-services .tile.practice h3 { color: var(--blue); }
.page-services .bento.bento--2 { align-items: stretch; }
.page-services .tile.practice .caps li { color: var(--text-dim); }
.page-services .section--dark h2,
.page-services .section--dark .step h3 { color: var(--gold-bright); }
.page-services .section--dark .step p { color: #f1f2ef; }
.page-services .section--dark {
  background: linear-gradient(120deg, #55585a 0%, #6b6f6e 45%, #7c8081 100%);
  background-attachment: fixed;
}
.page-services .section--dark { padding-bottom: clamp(22px, 3vw, 40px); }
.page-services .cta {
  background: linear-gradient(120deg, #55585a 0%, #6b6f6e 45%, #7c8081 100%);
  background-attachment: fixed;
  padding-top: clamp(22px, 3vw, 40px);
}
.page-services .cta .cta__bg { display: none; }
.page-services .cta .eyebrow { color: var(--gold-bright); }
.page-services .cta .eyebrow::before { background: var(--gold-bright); }
.page-services .cta p.lead { color: #f1f2ef; }
.page-exec-overview .page-hero { padding-top: clamp(110px, 15vh, 170px); padding-bottom: clamp(14px, 2.5vh, 30px); }
.page-exec-overview .page-hero + .section { padding-top: clamp(12px, 2vw, 24px); }
.page-exec-overview .info-card {
  background: linear-gradient(155deg, #fffdf8 0%, #f6efe1 55%, #f0e6d3 100%);
  color: var(--text);
  border: 1px solid rgba(156,124,66,.14);
  box-shadow: 0 1px 2px rgba(20,22,27,.03), 0 14px 34px rgba(20,22,27,.06);
}
.page-exec-overview .info-card h3 { color: var(--blue); }
.page-exec-overview .info-card a { color: var(--gold-deep); }
.page-exec-overview .info-row span { color: var(--text-dim); }
.page-exec-overview .info-card p,
.page-exec-overview .info-row { color: var(--text-dim); }
.page-exec-overview .page-hero h1 { color: var(--blue); }
.page-exec-overview .cta {
  background: linear-gradient(120deg, #55585a 0%, #6b6f6e 45%, #7c8081 100%);
  background-attachment: fixed;
}
.page-exec-overview .cta .cta__bg { display: none; }
.page-exec-overview .cta .eyebrow { color: var(--gold-bright); }
.page-exec-overview .cta .eyebrow::before { background: var(--gold-bright); }
.page-exec-overview .cta p.lead { color: #f1f2ef; }
.page-contact .page-hero { padding-top: clamp(110px, 15vh, 170px); padding-bottom: clamp(14px, 2.5vh, 30px); }
.page-contact .page-hero + .section { padding-top: clamp(12px, 2vw, 24px); }
.page-contact .page-hero h1 { color: var(--blue); }
.page-exec-overview .info-card .btn {
  --btn-bg: linear-gradient(120deg, #10193b 0%, #1a3374 45%, #3a5a9c 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26,51,116,.28);
}
.page-exec-overview .info-card .btn:hover {
  color: #fff;
  box-shadow: 0 16px 36px rgba(26,51,116,.4);
}
.page-services .page-hero + .section { padding-top: clamp(12px, 2vw, 24px); }
.page-about .prose h2 { color: var(--blue); }
.page-about .prose p:not(.subhead) { color: var(--text-dim); }
.page-about .section--dark {
  background: linear-gradient(120deg, #55585a 0%, #6b6f6e 45%, #7c8081 100%);
  background-attachment: fixed;
  padding-bottom: clamp(22px, 3vw, 40px);
}
.page-about .section--dark h2,
.page-about .section--dark .tile h3 { color: var(--gold-bright); }
.page-about .section--dark .tile { background: #10193b; }
.page-about .cta {
  background: linear-gradient(120deg, #55585a 0%, #6b6f6e 45%, #7c8081 100%);
  background-attachment: fixed;
  padding-top: clamp(22px, 3vw, 40px);
  padding-bottom: clamp(20px, 3vw, 32px);
}
.page-about .cta .cta__bg { display: none; }
.page-about .cta .eyebrow { color: var(--gold-bright); }
.page-about .cta .eyebrow::before { background: var(--gold-bright); }
.page-about .cta p.lead { color: #f1f2ef; }
.page-about .site-footer { padding-top: 36px; }
.page-services .cta { padding-bottom: clamp(20px, 3vw, 32px); }
.page-services .site-footer { padding-top: 36px; }
.page-exec-overview .cta { padding-bottom: clamp(20px, 3vw, 32px); }
.page-exec-overview .site-footer { padding-top: 36px; }
.prose h2 { margin: 1.8em 0 .5em; font-size: clamp(1.5rem, 3vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose h2 .num {
  font-size: .9rem;
  color: var(--gold-deep);
  font-weight: 700;
  margin-right: .6em;
  vertical-align: .15em;
}
.prose .subhead { color: var(--gold-deep); font-family: var(--font-display); font-weight: 600; margin: 1.6em 0 .2em; }
.prose .definition {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 0 0 2.4em;
  color: var(--text-dim);
  font-style: italic;
}
.prose .definition b { color: var(--gold-deep); font-style: normal; font-weight: 600; }

/* ---------------- Contact ---------------- */
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.info-card {
  background: var(--ink-900);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.info-card h3 { color: #fff; }
.info-card a { color: var(--gold-bright); }
.info-row { margin: 22px 0; }
.info-row span { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: 4px; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .92rem; margin-bottom: 7px; color: var(--text-dim); }
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,167,92,.16);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .88rem; color: var(--text-dim); margin-top: 4px; }

.alert { padding: 15px 18px; border-radius: 12px; margin-bottom: 22px; font-weight: 500; }
.alert--ok { background: #e8f4ec; color: #1f6b34; border: 1px solid #bfe3c8; }
.alert--err { background: #fbe9e9; color: #9f2b2b; border: 1px solid #f0c6c6; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--ink-900);
  color: var(--on-dark-dim);
  padding: 84px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  position: relative;
  z-index: 1;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-tagline { max-width: 32ch; }
.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 1.2em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: .5em 0; }
.site-footer a { color: var(--on-dark-dim); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 56px;
  padding-top: 24px;
  font-size: .84rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-mark {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 420px;
  opacity: .06;
  pointer-events: none;
}

/* ---------------- Reveal animation (only when JS is active) ---------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal="2"] { transition-delay: .08s; }
.js [data-reveal="3"] { transition-delay: .16s; }
.js [data-reveal="4"] { transition-delay: .24s; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; color: #000; padding: 10px 16px; border-radius: 8px; z-index: 200; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .stats-band .grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink-900);
    border-bottom: 1px solid var(--line-dark);
    padding: 10px 28px 22px;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line-dark); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a { display: block; padding: 16px 0; font-size: 1rem; }
  .main-nav a::after { display: none; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .site-header:not(.is-scrolled):not(.solid) { background: rgba(20,22,27,.9); backdrop-filter: blur(12px); }
  .bento { grid-template-columns: 1fr; }
  .tile--wide { grid-column: span 1; }
  .stats-band .grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
