/* ============================================================
   SEVEN CAPITAL — shared stylesheet
   "The Plain Answer" design system (round 3, option 1, as finalised).
   Palette: warm paper, near-black ink, ONE deep ledger green.
   Type: serif display (Georgia/Iowan), system sans body.
   System fonts only. Single deliberate scheme. Same-origin only.
   ============================================================ */

/* Tokens — locked to LOGO-SPEC-full-stop.md (Jack approved 17 Jul).
   ONE accent only (#2E5E4A). Green renders ONLY on interactive/affordance
   elements: primary CTA fill, links, focus rings, the wordmark full-stop dot.
   Everything non-clickable stays ink/grey on paper. */
:root {
  --paper: #f5f2ec; /* ground / warm bone */
  --paper-2: #ede9e0; /* tinted band */
  --card: #fbf9f4;
  --ink: #1a1a17; /* headings + body on light */
  --ink-2: #4e483f; /* body secondary */
  --ink-3: #6e685c; /* warm grey — labels, eyebrows, muted */
  --line: #e2dcd0;
  --line-2: #cfc7b8;
  --green: #2e5e4a; /* THE single accent */
  --green-2: #24493a; /* hover, ~8% darker */
  --green-soft: #e6ede9;
  --ground-dark: #141310; /* reversed ground */
  --accent-on-dark: #5fa88c; /* green that holds WCAG-AA on #141310 */
  --serif:
    Fraunces, Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1160px;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  /* Long unbreakable strings (the hello@ address, any URL) must wrap rather than
     push a narrow grid track past the viewport. */
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
}
p {
  margin: 0 0 1em;
}
img {
  max-width: 100%;
}

::selection {
  background: var(--green);
  color: var(--paper);
}

/* ---------- links: every anchor-styled CTA declares its own color ---------- */
a {
  color: var(--green);
}

a.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fbf8f3;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 6px;
  border: 1px solid var(--green);
  transition:
    background 0.18s ease-out,
    transform 0.18s ease-out;
}
a.btn-primary:visited {
  color: #fbf8f3;
}
a.btn-primary:hover {
  background: var(--green-2);
}
a.btn-primary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

a.btn-primary.btn-small {
  padding: 10px 18px;
  font-size: 14.5px;
  border-radius: 5px;
}
a.btn-primary.btn-block {
  display: block;
  text-align: center;
}

a.btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.18s ease-out;
}
a.btn-ghost:visited {
  color: var(--ink);
}
a.btn-ghost:hover {
  border-color: var(--green);
}

a.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease-out;
}
a.nav-link:visited {
  color: var(--ink);
}
a.nav-link:hover {
  border-color: var(--line-2);
}

a.mail-link {
  color: var(--green-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
}
a.mail-link:visited {
  color: var(--green-2);
}
a.mail-link:hover {
  border-color: var(--green);
}

a.mail-dark {
  color: #efe9dc;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 233, 220, 0.4);
}
a.mail-dark:visited {
  color: #efe9dc;
}
a.mail-dark:hover {
  border-color: #efe9dc;
}

a.foot-link {
  color: #c9c2b2;
  text-decoration: none;
  font-size: 14.5px;
}
a.foot-link:visited {
  color: #c9c2b2;
}
a.foot-link:hover {
  color: #fbf8f3;
}

a.brand-link {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
a.brand-link:visited {
  color: var(--ink);
}

a.inline-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--line-2);
}
a.inline-link:hover {
  text-decoration-color: var(--green);
}

/* ---------- layout primitives ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id],
footer[id] {
  scroll-margin-top: 84px;
}

.kicker {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--line-2);
  display: inline-block;
}
.kicker.centered {
  justify-content: center;
}
.kicker.centered::before {
  display: none;
}

.h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 8px;
}

/* ---------- scroll reveals: ADDITIVE. Without JS everything shows. ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.28s ease-out,
    transform 0.28s ease-out;
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- header / nav ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.head-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* "The Full Stop" logo — a serif wordmark ending in a green full stop.
   The boxed "7" retires; the wordmark itself is the mark. "7." is the shorthand
   (favicon / app icon). */
.mark7 {
  display: none;
}
.wordmark {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark::after {
  content: ".";
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-cta {
  margin-left: 6px;
}

/* nav dropdown ("What we do") — hover + focus-within, degrades to a link */
.nav-drop {
  position: relative;
}
.nav-drop-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 250px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 12px 30px -18px rgba(33, 31, 26, 0.5);
}
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  display: block;
}
.nav-drop-panel a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 5px;
}
.nav-drop-panel a:hover {
  background: var(--paper-2);
  color: var(--green-2);
}
.nav-drop-panel .drop-all {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 10px;
  color: var(--green);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  padding: 9px 11px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle .bars {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}
.nav-toggle .bars::before {
  top: -6px;
}
.nav-toggle .bars::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 24px 22px;
}
.mobile-menu a.nav-link {
  display: block;
  padding: 13px 2px;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn-primary {
  margin-top: 16px;
}
.mobile-menu .menu-mail {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-2);
}

/* header-lite (enquire / thanks / legal): logo + one CTA, no menu */
.site-head.lite .nav-toggle {
  display: none !important;
}
.site-head.lite .nav-links {
  display: flex !important;
}
.site-head.lite .nav-links a.nav-link {
  display: none;
}

/* focus lander: logo only, no nav at all (campaign landing pages) */
.site-head.lander .nav-links,
.site-head.lander .nav-toggle {
  display: none !important;
}
.site-head.lander .head-in {
  justify-content: flex-start;
}

/* ---------- hero ---------- */
.hero {
  padding: 60px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}
/* Simpler single-column hero — the dense ledger card retired for a friendlier top. */
.hero-grid.hero-single {
  grid-template-columns: 1fr;
  max-width: 900px;
}

/* Clients + testimonials, placed high up for early buy-in. */
.client-proof {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.tcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.tcard blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.tcard .attrib {
  margin-top: auto;
}
@media (max-width: 860px) {
  .tgrid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
}
.hero .sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 34px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.reassure {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 12px 0 0;
}

/* the ledger proof card */
.ledger-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px 38px 30px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 31px,
    rgba(227, 218, 202, 0.55) 31px,
    rgba(227, 218, 202, 0.55) 32px
  );
}
.ledger-card .watermark {
  position: absolute;
  right: -14px;
  top: -58px;
  font-family: var(--serif);
  font-size: 260px;
  line-height: 1;
  color: var(--paper-2);
  z-index: 0;
  user-select: none;
}
.ledger-card > * {
  position: relative;
  z-index: 1;
}
.ledger-card .big-num {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 78px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.ledger-card .num-cap {
  font-size: 16.5px;
  color: var(--ink-2);
  max-width: 300px;
  margin: 0 0 26px;
}
.ledger-card .card-rule {
  border: 0;
  border-top: 1px solid var(--line-2);
  margin: 0 0 14px;
}
.ledger-card .card-foot {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

/* ---------- testimonial band ---------- */
.quote-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 56px 0;
}
.quote-in {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.big-quote {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.45;
  margin: 0 0 26px;
}
.big-quote::before {
  content: "\201C";
  color: var(--line-2);
}
.big-quote::after {
  content: "\201D";
  color: var(--line-2);
}
.attrib {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fbf8f3;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.attrib .who {
  text-align: left;
}
.attrib .who .nm {
  font-weight: 700;
  font-size: 15.5px;
  display: block;
}
.attrib .who .rl {
  font-size: 14px;
  color: var(--ink-2);
  display: block;
}

/* ---------- three doors ---------- */
.doors {
  padding: 72px 0;
}
.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.door {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
}
.door .door-no {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}
.door h3 {
  font-size: 29px;
  line-height: 1.1;
  margin: 0 0 14px;
}
.door .moment {
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 10px;
}
.door .door-body {
  font-size: 15.5px;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.door ul {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.door li {
  font-size: 15px;
  padding: 7px 0 7px 20px;
  position: relative;
  color: var(--ink-2);
}
.door li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1.5px;
  background: var(--line-2);
}
.door li strong {
  color: var(--ink);
  font-weight: 600;
}
.door li a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
}
.door li a:hover {
  border-color: var(--green);
}
.doors-note {
  margin-top: 26px;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 720px;
}

/* ---------- how we work ---------- */
.how {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.ledger-svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 44px 0 10px;
}
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.phase {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 26px 22px;
}
.phase .ph-weeks {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
}
.phase h3 {
  font-size: 23px;
  margin: 0 0 10px;
}
.phase p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin: 0;
}
.engage-facts {
  display: grid;
  /* auto-fit, not a fixed count: the homepage runs 3 facts and the landers 4.
     A hardcoded repeat(4) left the homepage with a dead quarter-column. */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
}
.fact .fact-lead {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 8px;
}
.fact p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
}
.how-tag {
  margin-top: 44px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
}

/* ---------- results (case cards — stacked single column per audit a3-F6) ---------- */
.results {
  padding: 72px 0;
}
.cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 44px;
  max-width: 760px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 32px 28px;
}
.case-card .case-tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 22px;
}
.case-row {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.case-row .lbl {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 4px;
}
.case-row p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
}
.case-row.case-result p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.3;
  color: var(--ink);
}
.asx-line {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--ink-3);
}
/* Homepage roster proof strip — a quiet band of real names between the hero and
   the first testimonial. Reuses .asx-line's muted grey; no accent. */
.roster-strip {
  padding: 22px 0 6px;
}
.roster-strip .asx-line {
  margin-top: 0;
}

/* About — one-blurb story + standout education credential */
.about-story p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 1.1em;
}
/* ---------- about ---------- */
.about {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 56px;
  align-items: start;
}
.about .record p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 1.1em;
}
.about .record p strong {
  color: var(--ink);
  font-weight: 600;
}
.loc-line {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}
.photo-ph {
  border: 1.5px dashed var(--line-2);
  border-radius: 8px;
  background: var(--card);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
}
.photo-ph .ph-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.photo-ph .ph-note {
  font-size: 13.5px;
  color: var(--ink-3);
  max-width: 230px;
  margin: 0;
}
.fo-block {
  margin-top: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-2);
  border-radius: 0 8px 8px 0;
  padding: 26px 28px 22px;
}
.fo-block .fo-kick {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
}
.fo-block > p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.mini-quote {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.mini-quote blockquote {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--ink);
}
.mini-attrib {
  display: flex;
  align-items: center;
  gap: 11px;
}
.mini-attrib .avatar {
  width: 36px;
  height: 36px;
  font-size: 13px;
}
.mini-attrib .who .nm {
  font-weight: 700;
  font-size: 14.5px;
  display: block;
}
.mini-attrib .who .rl {
  font-size: 13px;
  color: var(--ink-2);
  display: block;
}

/* ---------- advisers band (the one dark band) ---------- */
.advisers {
  background: var(--ground-dark);
  color: #efe9dc;
  padding: 62px 0;
}
/* Eyebrow on dark: a warm grey, not a sage tint. Non-clickable text must not
   read as green — that signal belongs to the link below it. */
.advisers .kicker {
  color: #a8a196;
}
.advisers .kicker::before {
  background: #5a554c;
}
.advisers .h2 {
  color: #fbf8f3;
}
.advisers p {
  color: #d8d2c2;
  font-size: 17px;
  max-width: 680px;
}
.advisers .adv-mail {
  margin-top: 10px;
  font-size: 17px;
}
/* P0-8: on dark grounds --accent -> --accent-on-dark. #2e5e4a on #141310 is
   2.49:1 — well under AA. #5fa88c clears it at ~6.5:1. */
.advisers a.inline-link,
.proof-band.on-dark a.inline-link {
  color: var(--accent-on-dark);
  text-decoration-color: rgba(95, 168, 140, 0.45);
}
.advisers a.inline-link:hover,
.proof-band.on-dark a.inline-link:hover {
  text-decoration-color: var(--accent-on-dark);
}

/* ---------- enquire + form ---------- */
.enquire {
  padding: 72px 0 64px;
}
.enq-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 34px 30px;
}

.fprogress {
  display: none;
  margin: 0 0 24px;
}
.js .fprogress {
  display: block;
}
.fprogress .plabel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.fprogress .bar {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.fprogress .bar i {
  display: block;
  height: 100%;
  width: 33.4%;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.22s ease-out;
}

.fstep {
  border: 0;
  margin: 0 0 26px;
  padding: 0;
}
.js .fstep {
  display: none;
  margin: 0;
}
.js .fstep.is-active {
  display: block;
}
.fstep legend {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  padding: 0;
  margin: 0 0 6px;
}
.fstep .fstep-num {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.js .fstep-num {
  display: none;
}
.fstep .fhint {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0 0 16px;
}
/* Under-$1M reassurance, shown on the final step when that band is picked. */
.fstep .fhint-micro {
  background: var(--paper-2);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink-2);
  margin: 0 0 18px;
}

/* Continue — the keyboard path through the steps. Pointer users auto-advance
   and never need it; it also stands in if that detection ever misfires.
   Deliberately ink, not green: green stays on the true submit. */
.fnext {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.18s ease-out;
}
.fnext:hover {
  border-color: var(--ink-3);
}
.fnext:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  position: relative;
  display: inline-block;
}
.chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-block;
  padding: 11px 19px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--paper);
  font-size: 15.5px;
  color: var(--ink);
  transition:
    background 0.16s ease-out,
    border-color 0.16s ease-out,
    color 0.16s ease-out;
}
.chip:hover span {
  border-color: var(--green);
}
.chip input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: #fbf8f3;
}
.chip input:focus-visible + span {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.field {
  margin: 0 0 18px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field label .opt {
  font-weight: 400;
  color: var(--ink-3);
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 6px;
}
.field textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.fback {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 18px 0 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  border-bottom: 1px solid var(--line-2);
}
.js .fback {
  display: inline-block;
}
.fback:hover {
  color: var(--ink);
  border-color: var(--ink-2);
}

button.btn-submit {
  display: block;
  width: 100%;
  background: var(--green);
  color: #fbf8f3;
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.18s ease-out;
}
button.btn-submit:hover {
  background: var(--green-2);
}
button.btn-submit:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.submit-note {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center;
}

.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.enq-aside .aside-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.enq-aside .aside-item:first-child {
  border-top: 0;
  padding-top: 6px;
}
.enq-aside h3 {
  font-size: 18px;
  margin: 0 0 6px;
}
.enq-aside p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}
.enq-aside .aside-item.qualifier {
  background: var(--paper-2);
  border-radius: 8px;
  border-top: 0;
  padding: 18px 20px;
  margin-bottom: 6px;
}
.enq-aside .aside-item.qualifier + .aside-item {
  border-top: 0;
}

/* ---------- Broben quote + FAQ ---------- */
.small-quote {
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
}
.small-quote blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
}
.small-quote blockquote::before {
  content: "\201C";
  color: var(--line-2);
}
.small-quote blockquote::after {
  content: "\201D";
  color: var(--line-2);
}

.faq {
  max-width: 760px;
  margin: 64px auto 0;
}
.faq.flush {
  margin-top: 0;
}
.faq h3 {
  font-size: 26px;
  margin: 0 0 18px;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 2px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq .faq-body {
  padding: 0 2px 20px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.faq .faq-body p {
  margin: 0 0 0.8em;
}
.faq .faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Seven Score ribbon (NEW section 9 — the routed secondary) ---------- */
.score-ribbon {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.score-in {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.score-in .kicker {
  justify-content: center;
}
.score-in .kicker::before {
  display: none;
}
.score-in h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.score-in p {
  font-size: 16.5px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 24px;
}
.score-in .score-small {
  font-size: 14.5px;
  color: var(--ink-3);
  margin-top: 16px;
}

/* ---------- generic content page (about/case-studies/legal/pillars) ---------- */
.page-hero {
  padding: 50px 0 32px;
  border-bottom: 1px solid var(--line);
}
.page-hero.lander-hero {
  padding: 56px 0 40px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 16ch;
}
.page-hero .page-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 0 26px;
}
.page-hero .page-open {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 14px 0 0;
}
.reassure-row.trust-ticks {
  justify-content: flex-start;
  gap: 10px 22px;
  margin: 24px 0 0;
}
.reassure-row.trust-ticks .rr-chip {
  font-size: 13px;
}

/* "What happens after you send it" — closing + scope */
.next-close {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  margin: 30px 0 0;
}
.scope-line {
  font-size: 14px;
  color: var(--ink-3);
  max-width: 760px;
  margin: 10px 0 0;
}

/* Closing CTA. Was hand-rolled per page with an inline text-align, which left
   any page without that inline (the CFO lander) rendering left-aligned. */
.cta-close {
  text-align: center;
}
.cta-close .lead {
  margin: 0 auto 26px;
}

.page-sec {
  padding: 58px 0;
}
.page-sec.tint {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prose {
  max-width: 680px;
}
.prose p {
  font-size: 17.5px;
  color: var(--ink-2);
  margin: 0 0 1.15em;
}
.prose p strong {
  color: var(--ink);
  font-weight: 600;
}
.prose h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 1.4em 0 0.5em;
}
.prose h3 {
  font-size: 22px;
  margin: 1.3em 0 0.4em;
}
.chapter {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: 36px;
}
.chapter .ch-mark {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.chapter h3 {
  font-size: 26px;
  margin: 6px 0 0;
}
.chapter .ch-body p {
  font-size: 16.5px;
  color: var(--ink-2);
  margin: 0 0 1em;
}
.chapter .ch-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-top: 6px;
}
.signed-note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-2);
  border-radius: 0 8px 8px 0;
  padding: 30px 32px;
  margin-top: 16px;
}
.signed-note p {
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 14px;
}
.signed-note .sig {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}

/* founder portrait — the real photo (aspect-ratio set to prevent layout shift) */
.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.founder-cap {
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ad-lander: form above the fold — the enquiry form is the hero's right column */
.hero-grid:has(.hero-form) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
}
.form-card.hero-form {
  margin-top: 6px;
  box-shadow: 0 20px 48px -30px rgba(33, 31, 26, 0.5);
}
.hero-form-lead {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 16px;
}
/* founder face at the point of conversion: a small headshot beside the form lead */
.form-lead-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
}
.form-lead-row .hero-form-lead {
  margin: 0;
}
.form-lead-photo {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
@media (max-width: 980px) {
  .hero-grid:has(.hero-form) {
    grid-template-columns: 1fr;
  }
  .form-card.hero-form {
    margin-top: 0;
  }
}

/* scroll-progress cue (fixed top; JS-driven) — engagement signal */
.scroll-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--ink);
  z-index: 200;
  transition: width 0.08s linear;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-prog {
    transition: none;
  }
}

/* above-the-fold PROOF BAND — instant credibility on the cold ad/EDM click */
.proof-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 26px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px 28px;
  align-items: start;
}
.proof-item {
  padding: 8px 0;
}
.proof-item .pf-num {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
/* One stat in the grid is a phrase, not a figure ("Client work across ...").
   Size it down so it doesn't read as a numeral beside $5B+. */
.proof-item .pf-num.is-text {
  font-size: 21px;
}
.proof-item .pf-lbl {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 7px;
  line-height: 1.4;
}
.proof-band.on-dark {
  background: var(--ground-dark);
  border-color: var(--ground-dark);
}
.proof-band.on-dark .pf-num {
  color: #efe9dc;
}
.proof-band.on-dark .pf-lbl {
  color: #c7d3cb;
}

/* risk-reversal reassurance row — beneath the submit button (JS-injected, enhancement) */
.reassure-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin: 14px 0 0;
}
.reassure-row .rr-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--ink-2);
}
.reassure-row .rr-chip::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-3);
  flex: 0 0 auto;
  background: radial-gradient(
    circle at 50% 55%,
    var(--ink-3) 0 2px,
    transparent 2px
  );
}

/* "Read next" — related-page module (raises pages/session + dwell; content pages only, never on single-goal ad landers) */
.read-next {
  border-top: 1px solid var(--line);
  padding: 44px 0 60px;
}
.read-next .rn-kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 20px;
}
.read-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rn-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 24px 20px;
  text-decoration: none;
  transition:
    border-color 0.16s,
    transform 0.16s,
    box-shadow 0.16s;
}
.rn-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -24px rgba(33, 31, 26, 0.4);
}
.rn-card .rn-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 8px;
}
.rn-card .rn-title {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 6px;
}
.rn-card .rn-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
}
.rn-card .rn-go {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
@media (max-width: 760px) {
  .read-next-grid {
    grid-template-columns: 1fr;
  }
}

/* tax accountant vs strategist — time-spine treatment (past recedes, future advances) */
.tax-strat {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.ts-head {
  max-width: 700px;
}

/* the time spine: a horizontal arrow, past faded / future green (desktop only) */
.ts-spine {
  margin: 44px 0 6px;
}
.ts-spine svg {
  display: block;
  width: 100%;
  height: auto;
}

/* two panels tied to the spine halves */
.ts-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 6px;
  align-items: start;
}
.ts-panel {
  border-radius: 8px;
  padding: 28px 30px 22px;
}
.ts-panel .ts-when {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.ts-panel .ts-role {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
  margin: 0 0 8px;
}
.ts-panel .ts-desc {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 20px;
}
.ts-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ts-panel li {
  font-size: 15.5px;
  line-height: 1.4;
  padding: 9px 0 9px 22px;
  position: relative;
}
.ts-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 1.5px;
}

/* accountant = the past, receding */
.ts-panel.past {
  background: transparent;
  border: 1px dashed var(--line-2);
}
.ts-panel.past .ts-when {
  color: var(--ink-3);
}
.ts-panel.past .ts-role {
  color: var(--ink-2);
}
.ts-panel.past .ts-desc {
  color: var(--ink-3);
}
.ts-panel.past li {
  color: var(--ink-3);
}
.ts-panel.past li::before {
  background: var(--line-2);
}

/* strategist = the future, advancing */
.ts-panel.future {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  box-shadow: 0 16px 36px -28px rgba(33, 31, 26, 0.45);
}
.ts-panel.future .ts-when {
  color: var(--ink);
}
.ts-panel.future .ts-role {
  color: var(--ink);
}
.ts-panel.future .ts-desc {
  color: var(--ink-2);
}
.ts-panel.future li {
  color: var(--ink);
}
.ts-panel.future li strong {
  font-weight: 600;
}
.ts-panel.future li::before {
  background: var(--ink);
}

/* mobile "today" cue between the stacked panels */
.ts-today-m {
  display: none;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 2px 0;
}

/* the punchline */
.ts-foot {
  text-align: center;
  margin-top: 36px;
}
.ts-foot .ts-punch {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 10px;
}
.ts-foot .ts-punch em {
  font-style: italic;
  color: var(--ink);
}
.ts-foot .ts-sub {
  font-size: 16.5px;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 22px;
}
.ts-mech {
  background: var(--paper-2);
  border-radius: 8px;
  padding: 18px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 760px) {
  .ts-spine {
    display: none;
  }
  .ts-panels {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ts-today-m {
    display: block;
  }
}

/* pillar compliant 3-layer block */
.role-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 34px 0;
}
.role-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
}
.role-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--sans);
  margin: 0 0 14px;
}
.role-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.role-col li {
  font-size: 15.5px;
  color: var(--ink-2);
  padding: 8px 0 8px 20px;
  position: relative;
}
.role-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1.5px;
  background: var(--line-2);
}
.mechanism {
  background: var(--paper-2);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 16.5px;
  color: var(--ink-2);
  margin: 24px 0;
}

/* ---------- thanks page ---------- */
.thanks-wrap {
  padding: 52px 0 8px;
}
.thanks-wrap .page-sec {
  padding-top: 8px;
}
/* Tidy, centred thank-you: sections share the calm centred rhythm of the card */
.thanks-wrap .page-sec .h2,
.thanks-wrap .read-next .rn-kicker,
.thanks-wrap .next-close {
  text-align: center;
}
.thanks-wrap .phases,
.thanks-wrap .read-next-grid {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
/* /thanks has two follow-up cards, not three — balance them 2-up */
.thanks-wrap .read-next-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}
.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.thanks-card .tick {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: var(--serif);
  margin: 0 0 24px;
}
.thanks-card h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0 0 16px;
}
.thanks-card p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 auto 14px;
}
.thanks-next {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.thanks-next .next-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
[data-band] {
  display: none;
}

/* ---------- footer ---------- */
.site-foot {
  background: var(--ground-dark);
  color: #c9c2b2;
  padding: 64px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 40px;
  margin-bottom: 44px;
}
/* No-nav focus landers carry one column, not two — collapse rather than leave
   a dead ~258px track hanging off the end.
   Scoped above 980px on purpose: unscoped, this selector (0,2,0) outranks the
   plain `.foot-grid` (0,1,0) inside the mobile media queries and would pin the
   footer to two columns on a phone, blowing the email address out of its track. */
@media (min-width: 981px) {
  .foot-grid:not(:has(.foot-col + .foot-col)) {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  }
}
.site-foot .wordmark {
  color: #fbf8f3;
}
.site-foot .wordmark::after {
  color: var(--accent-on-dark);
}
.foot-tag {
  margin: 16px 0 0;
  font-size: 15px;
  max-width: 340px;
  color: #a79f8d;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8172;
  margin: 0 0 14px;
}
.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-col li {
  padding: 4px 0;
}
.foot-col p {
  font-size: 14.5px;
  margin: 0 0 6px;
  color: #c9c2b2;
}
.disclaimer {
  border-top: 1px solid rgba(201, 194, 178, 0.22);
  padding-top: 26px;
  font-size: 13px;
  line-height: 1.7;
  color: #8a8172;
}
.disclaimer p {
  margin: 0 0 8px;
  max-width: 820px;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 247, 242, 0.96);
  border-top: 1px solid var(--line);
}
.sticky-cta.is-hidden {
  display: none;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .doors-grid {
    grid-template-columns: 1fr;
  }
  .phases {
    grid-template-columns: 1fr;
  }
  .engage-facts {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .photo-ph {
    min-height: 220px;
  }
  .enq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .role-split {
    grid-template-columns: 1fr;
  }
  .chapter {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 760px) {
  .ledger-svg {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .site-head.lite .nav-toggle,
  .site-head.lander .nav-toggle {
    display: none !important;
  }
  .nav-open .mobile-menu {
    display: block;
  }
  .hero {
    padding: 44px 0 48px;
  }
  .hero .sub {
    font-size: 18px;
  }
  .doors,
  .results,
  .enquire {
    padding: 56px 0;
  }
  .how,
  .about,
  .page-sec {
    padding: 56px 0;
  }
  .advisers {
    padding: 60px 0;
  }
  .engage-facts {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    display: block;
  }
  .sticky-cta.is-hidden {
    display: none;
  }
  #sc-root {
    padding-bottom: 0;
  }
  .site-foot {
    padding-bottom: 110px;
  }
  .form-card {
    padding: 26px 20px 24px;
  }
}

/* ---------- last word: [hidden] must never lose a specificity fight ---------- */
[hidden] {
  display: none !important;
}
