/* ============================================================
   THE PROGRAM WELLNESS & OPERATIONS LAB
   Shared design system — multi-page build
   Palette is structural: navy owns panels & CTAs; gold is rare
   and earned. Editorial section numerals throughout.
   ============================================================ */

:root {
  /* Brand palette */
  --white: #ffffff;
  --paper: #fafaf8;          /* warm off-white for section banding */
  --surface: #f4f4f2;        /* slightly stronger surface tone */
  --rule: #e7e6e2;           /* hairline rules */
  --mid: #6b7280;            /* secondary text, captions */
  --ink: #141414;            /* body text */
  --ink-soft: #2a2a2a;       /* secondary heads */
  --navy: #0a1f3e;           /* panel sections, CTAs, logotype */
  --navy-2: #0d2547;         /* slight variant for layered navy */
  --navy-glow: rgba(10,31,62,0.08);
  --gold: #c9a961;           /* accent only */
  --gold-soft: #e9dcb6;      /* gold tints for chips */
  --gold-deep: #a8884a;      /* hover state for gold */

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -----  reset-ish  ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.55;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--navy); color: var(--gold-soft); }

/* -----  layout primitives  ----- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section--navy {
  background: var(--navy);
  color: #eef1f6;
  position: relative;
  overflow: hidden;
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--gold); }
.section--navy .rule { background: rgba(255,255,255,0.12); }
.section--navy a.linky { color: var(--gold); }

/* -----  type system  ----- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 1.05;
}
h1 {
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; letter-spacing: -0.005em; font-weight: 600; }
.italic { font-style: italic; }
.italic--accent { font-style: italic; font-weight: 400; }

p { margin: 0 0 1em; }
.lead {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}
.muted { color: var(--mid); }

/* Editorial section number + label (e.g. "01 / SERVICES") */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow .num { color: var(--gold); font-weight: 500; }

/* hairline rule */
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* small caption */
.caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 8px 24px -10px var(--navy-glow); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--gold {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--light:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -16px rgba(0,0,0,0.5); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover { border-color: #fff; transform: translateY(-1px); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* in-body link with gold underline animation */
.linky {
  position: relative;
  display: inline-block;
  font-weight: 500;
  padding-bottom: 2px;
  color: inherit;
}
.linky::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0.35);
  transition: transform 0.45s var(--ease);
}
.linky:hover::after { transform: scaleX(1); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 80;
  pointer-events: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.84);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--rule); background: rgba(255,255,255,0.92); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logotype {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.logotype .mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--navy);
  display: inline-grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.logotype .mark::before, .logotype .mark::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.logotype .mark::before { width: 10px; height: 1.5px; top: 12px; left: 8px; }
.logotype .mark::after  { width: 1.5px; height: 10px; top: 8px;  left: 12px; }
.logotype small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 3px;
}
.logotype .stack { display: flex; flex-direction: column; line-height: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a[aria-current="page"] { color: var(--navy); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--gold);
}
.nav__cta { display: inline-flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 10px 16px; font-size: 13.5px; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 42px;
  height: 38px;
  border-radius: 8px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: inline-flex; }
}

/* mobile sheet */
.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  display: none;
  flex-direction: column;
  padding: 24px var(--gutter);
}
.mobile-sheet.is-open { display: flex; }
.mobile-sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mobile-sheet nav { display: flex; flex-direction: column; }
.mobile-sheet a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
}
.mobile-sheet a[aria-current="page"] { color: var(--gold-deep); }
.mobile-sheet__cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-sheet__cta .btn { width: 100%; justify-content: center; }
.mobile-sheet .close {
  background: transparent;
  border: 1px solid var(--rule);
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
}
.hero__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__intro .eyebrow { margin-bottom: 0; }
.hero h1 .em {
  font-style: italic;
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.hero h1 .em::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px;
  bottom: 4px;
  height: 6px;
  background: var(--gold-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero__sub {
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-soft);
  line-height: 1.45;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__panel {
  position: relative;
  background: var(--navy);
  color: #eaecef;
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(255,255,255,0.06), transparent 60%);
  z-index: -1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,0.45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  width: max-content;
}
.hero__badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.2);
}
.hero__panel h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  color: #fff;
  line-height: 1.1;
  margin: 28px 0 10px;
  font-weight: 500;
}
.hero__panel p { color: rgba(255,255,255,0.78); margin: 0; font-size: 15px; }
.hero__panel .meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}
.hero__panel .meta div span:first-child {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.hero__panel .meta div span:last-child {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   STATS BAND (animated counters)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats > div {
  padding: clamp(24px, 3vw, 38px) 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats > div:last-child { border-right: 0; }
.stats .v {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
}
.stats .v .pre, .stats .v .suf { color: var(--gold-deep); }
.stats .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(1), .stats > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* compact at-a-glance strip (home hero) */
.hero__strip {
  margin-top: clamp(48px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero__strip > div {
  padding: 20px 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__strip > div:last-child { border-right: 0; }
.hero__strip .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.hero__strip .v {
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
@media (max-width: 760px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__strip > div:nth-child(2) { border-right: 0; }
  .hero__strip > div:nth-child(1), .hero__strip > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(40px, 5vw, 72px);
  position: relative;
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 880px) { .page-hero__inner { grid-template-columns: 1fr; gap: 28px; } }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  margin: 0;
}
.page-hero h1 .em { font-style: italic; color: var(--navy); }
.page-hero .lead { margin: 0; }

/* breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 26px;
}
.crumbs a { color: var(--mid); transition: color 0.2s var(--ease); }
.crumbs a:hover { color: var(--navy); }
.crumbs .sep { color: var(--rule); }
.crumbs .here { color: var(--gold-deep); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 56px;
  border: 1px solid var(--rule);
}
.problem__card {
  background: var(--white);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: background 0.3s var(--ease);
}
.problem__card:hover { background: var(--paper); }
.problem__card .ix {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.problem__card h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.problem__card p {
  color: var(--mid);
  font-size: 15px;
  margin: 0;
}
.section--paper .problem__card { background: var(--paper); }
.section--paper .problem__card:hover { background: #fff; }
@media (max-width: 880px) { .problem__grid { grid-template-columns: 1fr; } }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 24px;
}
@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 18px; }
}
.section__head h2 { margin: 0; }
.section__head .lead { margin: 0; }

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 760px) { .practice__grid { grid-template-columns: 1fr; } }
.practice__card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.practice__card:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 30px 60px -50px var(--navy-glow);
}
.practice__card .ix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.practice__card h3 {
  font-size: 26px;
  color: var(--navy);
  margin: 4px 0 0;
}
.practice__card p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.practice__card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.practice__card .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--rule);
  padding: 5px 9px;
  border-radius: 999px;
}
.practice__card .more {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.practice__card .more .arrow { transition: transform 0.3s var(--ease); }
.practice__card:hover .more .arrow { transform: translateX(4px); }

/* ============================================================
   OFFERS — the centerpiece
   ============================================================ */
.offers__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.offers__head h2 { max-width: 18ch; margin: 0; }
.offers__head .lead { max-width: 46ch; margin: 0; }

.viewtoggle {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.section--paper .viewtoggle { background: #fff; }
.viewtoggle button {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  color: var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.viewtoggle button.is-on { background: var(--navy); color: #fff; }
.viewtoggle svg { width: 14px; height: 14px; }

/* tabs */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  position: relative;
  padding: 18px 4px;
  margin-right: 28px;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}
.tab .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-right: 10px;
  vertical-align: 2px;
}
.tab:hover { color: var(--navy); }
.tab[aria-selected="true"] { color: var(--navy); }
.tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--navy);
}

/* panel */
.panel { display: none; }
.panel.is-on { display: grid; }

.offer {
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding: 8px 0 0;
  align-items: start;
}
@media (max-width: 920px) { .offer { grid-template-columns: 1fr; } }

.offer__main h3 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.offer__pitch {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--navy);
  max-width: 36ch;
  line-height: 1.25;
  margin: 0 0 28px;
}
.offer__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.offer__row:last-of-type { border-bottom: 1px solid var(--rule); }
.offer__row dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 2px;
}
.offer__row dd { margin: 0; color: var(--ink); font-size: 16px; }
.offer__row dd ul { margin: 0; padding-left: 18px; }
.offer__row dd li { margin-bottom: 6px; }
@media (max-width: 700px) {
  .offer__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
}

.offer__side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 920px) { .offer__side { position: static; } }

.pricecard {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--white);
}
.section--paper .pricecard { background: #fff; }
.pricecard .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.pricecard .amt {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1;
}
.pricecard .amt small {
  font-family: var(--sans);
  display: block;
  font-size: 13px;
  color: var(--mid);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0;
}
.pricecard .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  color: #5a4515;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 18px;
}
.pricecard .btn { margin-top: 22px; width: 100%; justify-content: center; }

.fitcard {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
}
.section--paper .fitcard { background: #fff; }
.fitcard h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0;
  font-weight: 500;
}
.fitcard ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fitcard li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink);
}
.fitcard li .icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.fitcard--yes li .icon { color: var(--gold-deep); }
.fitcard--no  li .icon { color: var(--mid); }

/* compare grid */
.compare {
  display: none;
  grid-template-columns: 180px repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare.is-on { display: grid; }
.compare__cell {
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare__cell:nth-child(5n) { border-right: 0; }
.compare__cell--label {
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  justify-content: center;
}
.compare__cell--head {
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  padding: 22px 18px;
  border-bottom-color: rgba(255,255,255,0.1);
}
.compare__cell--head .ix {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.compare__cell--price { font-family: var(--display); color: var(--navy); font-size: 18px; letter-spacing: -0.01em; }
.compare__cell .check { color: var(--gold-deep); font-weight: 700; margin-right: 4px; }
@media (max-width: 920px) {
  .compare { grid-template-columns: 1fr; }
  .compare__cell { border-right: 0; }
  .compare__cell--label { background: var(--navy); color: #fff; }
}

/* ============================================================
   ANGLE — navy panel
   ============================================================ */
.angle__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .angle__inner { grid-template-columns: 1fr; } }
.angle__head h2 {
  color: #fff;
  font-size: clamp(36px, 4.8vw, 64px);
}
.angle__head .em { font-style: italic; color: var(--gold); }
.angle__pull {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: rgba(255,255,255,0.86);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0 0;
  max-width: 38ch;
}
.angle__pull cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}
.angle__list { display: flex; flex-direction: column; }
.angle__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.angle__item:last-child { border-bottom: 0; }
.angle__item .ix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.angle__item h4 {
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
}
.angle__item p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
}

/* ============================================================
   TEAM
   ============================================================ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 920px) { .team__grid { grid-template-columns: 1fr; } }
.team__card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team__card:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -50px var(--navy-glow); }

/* photo placeholder — tonal navy/gold tile */
.team__photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.team__photo svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.team__photo .label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.team__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team__body .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.team__body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.team__body p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.team__body .focus {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.team__body .focus span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 5px 9px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}

/* ============================================================
   APPROACH — stepper
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.step {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.step:last-child { border-right: 0; }
.step .num {
  font-family: var(--display);
  font-size: 60px;
  color: var(--navy);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.step .num sup {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-left: 6px;
  vertical-align: 50%;
}
.step h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 16px 0 8px;
  letter-spacing: -0.01em;
}
.step p { color: var(--mid); font-size: 14.5px; margin: 0; }
.step .meta {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: 0; }
}

/* ============================================================
   TESTIMONIALS placeholder
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 920px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testimonial {
  border: 1px dashed var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  color: var(--mid);
}
.section--paper .testimonial { background: #fff; }
.testimonial .placeholder-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.testimonial .quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 60px;
  color: var(--rule);
  line-height: 0.5;
  margin-bottom: -10px;
}
.testimonial p {
  font-family: var(--display);
  font-style: italic;
  color: var(--mid);
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: auto;
}

/* ============================================================
   RESOURCES teaser
   ============================================================ */
.resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  margin-top: 56px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.section--paper .resources { background: #fff; }
@media (max-width: 760px) { .resources { grid-template-columns: 1fr; } }
.resources h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.resources p { margin: 0; color: var(--ink-soft); max-width: 46ch; }
.resources .stack-titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resources .stack-titles > div {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.section--paper .resources .stack-titles > div { background: var(--paper); }
.resources .stack-titles > div:hover { transform: translateY(-2px); border-color: var(--navy); }
.resources .stack-titles .t {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.resources .stack-titles .s {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.2s var(--ease);
}
.faq__q:hover { color: var(--navy); }
.faq__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  position: relative;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--navy);
  transition: transform 0.35s var(--ease), background 0.3s var(--ease);
}
.faq__icon::before { width: 12px; height: 1.6px; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 1.6px; height: 12px; transform: translate(-50%,-50%); }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--navy); border-color: var(--navy); }
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: #fff; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner {
  padding: 0 4px 28px;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 16.5px;
}
.faq__a-inner p { margin: 0 0 0.8em; }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(201,169,97,0.16), transparent 55%),
    radial-gradient(60% 100% at 0% 100%, rgba(255,255,255,0.05), transparent 60%);
  z-index: -1;
}
.ctaband__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0;
}
@media (max-width: 820px) { .ctaband__inner { grid-template-columns: 1fr; gap: 28px; } }
.ctaband h2 { color: #fff; margin: 0 0 16px; }
.ctaband .em { font-style: italic; color: var(--gold); }
.ctaband p { color: rgba(255,255,255,0.8); margin: 0; max-width: 48ch; }
.ctaband__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (max-width: 820px) { .ctaband__actions { align-items: stretch; } }
.ctaband__actions .btn { width: 100%; justify-content: space-between; }
.ctaband__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 920px) { .contact__inner { grid-template-columns: 1fr; } }
.contact h2 { max-width: 16ch; }
.contact__meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__meta dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.contact__meta dd { margin: 0; font-size: 16px; }

.formcard {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
form.inquire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
form.inquire .full { grid-column: 1 / -1; }

.field {
  position: relative;
  display: block;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 22px 0 10px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s var(--ease);
  font-family: var(--sans);
}
.field select { appearance: none; background: transparent; padding-right: 24px; cursor: pointer; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.field label {
  position: absolute;
  left: 0;
  top: 22px;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.is-filled label,
.field select:focus + label {
  transform: translateY(-18px);
  color: var(--navy);
}
.field .select-arrow {
  position: absolute;
  right: 0;
  top: 28px;
  pointer-events: none;
  color: var(--mid);
}
.field--error input,
.field--error select,
.field--error textarea {
  border-bottom-color: #b03a2e;
}
.field__error {
  display: none;
  margin-top: 6px;
  color: #b03a2e;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
}
.field--error .field__error { display: block; }

form.inquire .submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
form.inquire .submit p {
  font-size: 13px;
  color: var(--mid);
  margin: 0;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 10px;
  color: #4a3608;
  font-size: 14.5px;
}
.form-success.is-on { display: block; }

@media (max-width: 600px) {
  form.inquire { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.76);
  padding: clamp(64px, 8vw, 100px) 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 16px; }
}
.footer__brand .logotype { color: #fff; }
.footer__brand .logotype small { color: var(--gold); }
.footer__brand p {
  margin-top: 22px;
  max-width: 36ch;
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
}
.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: rgba(255,255,255,0.76);
  font-size: 14.5px;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom .sig { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  display: grid;
  place-items: center;
  z-index: 60;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 12px 30px -14px rgba(10,31,62,0.6);
}
.to-top.is-on { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--navy-2); transform: translateY(-2px); }
.to-top svg { width: 18px; height: 18px; }

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--section-y) 0;
}
.error-page .code {
  font-family: var(--display);
  font-size: clamp(96px, 22vw, 240px);
  line-height: 0.9;
  color: var(--navy);
  letter-spacing: -0.04em;
  font-weight: 500;
}
.error-page .code .em { font-style: italic; color: var(--gold); }
.error-page h1 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 12px; }
.error-page p { color: var(--mid); max-width: 48ch; margin: 0 auto 28px; }
.error-page .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   REVEAL — scroll-triggered
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* skip link */
.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  z-index: 200;
}
.skip:focus {
  left: 16px; top: 12px;
  width: auto; height: auto;
}

/* ============================================================
   PERSONAL-BRAND ADDITIONS (solo site)
   ============================================================ */

/* logotype: single-name personal brand */
.logotype .stack span:first-child { letter-spacing: -0.015em; }

/* service / workshop cards reuse .practice__card, with extras */
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-head .ix { margin: 0; }
.price-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 2px; }
@media (max-width: 560px) { .svc-lists { grid-template-columns: 1fr; } }
.svc-lists h5 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mid); margin: 0 0 10px; font-weight: 500;
}
.svc-lists ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-lists li {
  font-size: 14px; line-height: 1.4; color: var(--ink-soft);
  display: grid; grid-template-columns: 14px 1fr; gap: 8px;
}
.svc-lists li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
.price-line {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.price-line .amt { font-family: var(--display); font-size: 22px; color: var(--navy); letter-spacing: -0.01em; }
.price-line .amt small { font-family: var(--sans); font-size: 12.5px; color: var(--mid); font-weight: 500; letter-spacing: 0; }
.price-line .go { font-size: 14px; font-weight: 600; color: var(--navy); display: inline-flex; gap: 8px; align-items: center; }
.price-line .go .arrow { transition: transform 0.3s var(--ease); }
.practice__card:hover .price-line .go .arrow { transform: translateX(4px); }

/* co-facilitator note */
.cofac {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #5a4515; background: var(--gold-soft); padding: 6px 12px; border-radius: 999px; width: max-content;
}

/* ---- PRICING TIERS ---- */
.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 32px;
  background: #fff; display: flex; flex-direction: column; gap: 16px; position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.section--paper .tier { background: #fff; }
.tier:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -50px var(--navy-glow); }
.tier--feature { background: var(--navy); border-color: var(--navy); }
.tier--feature h3, .tier--feature .tier__amt { color: #fff; }
.tier--feature .tier__amt .per { color: rgba(255,255,255,0.7); }
.tier--feature .tier__inc li { color: rgba(255,255,255,0.82); }
.tier__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.tier--feature .tier__k { color: var(--gold); }
.tier h3 { margin: 0; color: var(--navy); font-size: 25px; }
.tier__amt { font-family: var(--display); font-size: clamp(32px, 4vw, 44px); color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.tier__amt .per { font-family: var(--sans); font-size: 14px; color: var(--mid); font-weight: 500; letter-spacing: 0; display: block; margin-top: 8px; }
.tier__inc { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier__inc li { font-size: 14.5px; line-height: 1.4; color: var(--ink-soft); display: grid; grid-template-columns: 18px 1fr; gap: 8px; }
.tier__inc li::before { content: "✦"; color: var(--gold-deep); font-size: 11px; line-height: 1.6; }
.tier--feature .tier__inc li::before { color: var(--gold); }
.tier .btn { margin-top: auto; width: 100%; justify-content: center; }
.tier__badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--gold); color: var(--navy);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}

/* ---- ABOUT: TIMELINE ---- */
.tl { margin-top: 48px; border-top: 1px solid var(--rule); }
.tl__item {
  display: grid; grid-template-columns: 210px 1fr; gap: 32px;
  padding: 30px 0; border-bottom: 1px solid var(--rule);
}
@media (max-width: 720px) { .tl__item { grid-template-columns: 1fr; gap: 10px; } }
.tl__when { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); padding-top: 4px; }
.tl__when span { display: block; color: var(--mid); margin-top: 4px; letter-spacing: 0.08em; }
.tl__role { font-family: var(--display); font-size: 23px; font-weight: 500; color: var(--navy); margin: 0 0 4px; letter-spacing: -0.01em; }
.tl__org { font-size: 13.5px; color: var(--mid); margin: 0 0 12px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.tl__item p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.tl__item ul { margin: 12px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: 15px; }
.tl__item li { margin-bottom: 6px; }

/* credentials grid */
.creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 48px; }
@media (max-width: 760px) { .creds { grid-template-columns: 1fr; } }
.creds > div { background: #fff; padding: 26px 24px; }
.section--paper .creds > div { background: var(--paper); }
.creds h5 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 14px; font-weight: 500; }
.creds ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.creds li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.4; }
.creds li strong { color: var(--ink); font-weight: 600; }

/* skills chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chips span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid var(--rule); padding: 8px 12px; border-radius: 999px; background: #fff;
}
.section--paper .chips span { background: #fff; }

/* stacked solution blocks (reuse .offer grid without tabs) */
.solo-offer { padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--rule); position: relative; isolation: isolate; }
.solo-offer:first-of-type { border-top: 0; padding-top: 8px; }
.offer--show { display: grid; position: relative; z-index: 1; }

/* footer non-affiliation disclaimer */
.footer__fine {
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.42);
  max-width: 70ch;
}

/* ============================================================
   DECORATIVE BRAND GRAPHICS  (aria-hidden, behind content)
   ============================================================ */
.has-deco { position: relative; isolation: isolate; }
.has-deco > .wrap { position: relative; z-index: 1; }
.clip { overflow: hidden; }
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-fill { inset: 0; }

/* dot grid (navy-tinted; gold on dark sections) */
.deco-dots { background-image: radial-gradient(rgba(10,31,62,0.08) 1px, transparent 1.3px); background-size: 26px 26px; }
.section--navy .deco-dots, .ctaband .deco-dots, .deco-dots--gold { background-image: radial-gradient(rgba(201,169,97,0.16) 1px, transparent 1.3px); }

/* plus-mark motif (brand cross) — kept faint so it never competes with text */
.deco-plus {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='54'%20height='54'%3E%3Cpath%20d='M27%2020v14M20%2027h14'%20stroke='%23c9a961'%20stroke-width='1'%20stroke-linecap='round'%20opacity='0.3'/%3E%3C/svg%3E");
  background-size: 54px 54px;
  opacity: 0.45;
}
/* on dark sections the gold reads a touch stronger, which is fine behind large headings */
.section--navy .deco-plus, .ctaband .deco-plus { opacity: 0.5; }

/* concentric rings */
.deco-rings {
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 33px, rgba(201,169,97,0.30) 33px 34px, transparent 34px 67px);
  -webkit-mask: radial-gradient(circle, #000 56%, transparent 72%);
  mask: radial-gradient(circle, #000 56%, transparent 72%);
}
.section--navy .deco-rings { background: repeating-radial-gradient(circle, transparent 0 33px, rgba(201,169,97,0.34) 33px 34px, transparent 34px 67px); }

/* single thin ring */
.deco-ring { border-radius: 50%; border: 1.5px solid rgba(201,169,97,0.32); }
.deco-ring--navy { border-color: rgba(10,31,62,0.10); }

/* soft glow */
.deco-glow { background: radial-gradient(circle at center, rgba(201,169,97,0.20), transparent 68%); }
.deco-glow--navy { background: radial-gradient(circle at center, rgba(10,31,62,0.06), transparent 70%); }

/* big editorial outline numeral */
.deco-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(150px, 24vw, 300px);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10,31,62,0.07);
  letter-spacing: -0.04em;
  user-select: none;
}
.section--navy .deco-num, .deco-num--gold { -webkit-text-stroke-color: rgba(201,169,97,0.16); }

/* fade masks for pattern fills */
.fade-tr { -webkit-mask-image: radial-gradient(95% 95% at 100% 0%, #000, transparent 70%); mask-image: radial-gradient(95% 95% at 100% 0%, #000, transparent 70%); }
.fade-bl { -webkit-mask-image: radial-gradient(95% 95% at 0% 100%, #000, transparent 70%); mask-image: radial-gradient(95% 95% at 0% 100%, #000, transparent 70%); }
.fade-tl { -webkit-mask-image: radial-gradient(95% 95% at 0% 0%, #000, transparent 70%); mask-image: radial-gradient(95% 95% at 0% 0%, #000, transparent 70%); }
.fade-edges { -webkit-mask-image: radial-gradient(120% 120% at 50% 50%, #000 55%, transparent 85%); mask-image: radial-gradient(120% 120% at 50% 50%, #000 55%, transparent 85%); }

/* brand divider with center mark */
.deco-divider { display: flex; align-items: center; gap: 16px; color: var(--rule); margin: 0; }
.section--navy .deco-divider { color: rgba(255,255,255,0.16); }
.deco-divider::before, .deco-divider::after { content: ""; height: 1px; background: currentColor; flex: 1; }
.deco-divider .mk { position: relative; width: 12px; height: 12px; flex: none; }
.deco-divider .mk::before, .deco-divider .mk::after { content: ""; position: absolute; background: var(--gold); }
.deco-divider .mk::before { left: 0; right: 0; top: 5.2px; height: 1.6px; }
.deco-divider .mk::after { top: 0; bottom: 0; left: 5.2px; width: 1.6px; }

/* gentle float (respects global reduced-motion reset) */
@keyframes deco-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.deco-float { animation: deco-float 10s ease-in-out infinite; }

/* hide heavier accents on small screens to avoid clutter/overflow */
@media (max-width: 760px) { .deco-accent { display: none; } }
/* big numerals only on wide screens, where the two-column layout keeps them
   safely behind the (opaque) price cards rather than behind body text */
@media (max-width: 980px) { .deco-num { display: none; } }

/* ============================================================
   AWARD / RECOGNITION BADGE
   ============================================================ */
.award {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.005em;
  width: max-content;
  max-width: 100%;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.award:hover { background: var(--gold-soft); transform: translateY(-1px); box-shadow: 0 10px 24px -16px var(--navy-glow); }
.award .seal { width: 17px; height: 17px; color: var(--gold-deep); flex: none; }
.award .yr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--gold-deep); }
.award--on-navy { background: rgba(255,255,255,0.06); border-color: rgba(201,169,97,0.5); color: #fff; }
.award--on-navy .seal, .award--on-navy .yr { color: var(--gold); }
.award--on-navy:hover { background: rgba(255,255,255,0.12); }

/* feature card (e.g. About credentials) */
.award-feature {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--white), var(--paper));
  width: max-content;
  max-width: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.award-feature:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -40px var(--navy-glow); }
.award-feature__seal {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
  background: var(--navy);
  color: var(--gold);
}
.award-feature__seal svg { width: 24px; height: 24px; }
.award-feature__txt { display: flex; flex-direction: column; gap: 3px; }
.award-feature__txt .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.award-feature__txt .v { font-family: var(--display); font-size: 20px; color: var(--navy); letter-spacing: -0.01em; line-height: 1.1; }
.award-feature__txt .yr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--mid); }
@media (max-width: 560px) {
  .award-feature { gap: 14px; padding: 16px 18px; }
  .award-feature__txt .v { font-size: 17px; }
}

/* about hero portrait tile */
.about-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: var(--navy);
}
.about-portrait svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; z-index: 1; }

/* circular avatar (Why-me section) */
.whyme-id { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex: none;
  border: 2px solid var(--gold);
  background: var(--navy-2);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.7);
}
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; z-index: 1; }
.avatar__fallback { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--gold); }
.whyme-id__name { display: block; font-family: var(--display); font-size: 19px; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.whyme-id__role { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.about-portrait .label {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.28); padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
