/* ================================================================
   Good Multiple — dark, rich, immersive. Cursor-reactive.
   ================================================================ */
:root {
  --bg: #0B130E;
  --bg-2: #101C14;
  --green: #16281C;
  --green-2: #1D3427;
  --cream: #F1ECDD;
  --cream-soft: rgba(241, 236, 221, 0.66);
  --cream-faint: rgba(241, 236, 221, 0.42);
  --brass: #B8935A;
  --brass-2: #CBAE72;
  --paper: #F3EEE0;
  --ink: #14100A;
  --ink-soft: rgba(20, 16, 10, 0.68);
  --line: rgba(241, 236, 221, 0.14);
  --line-strong: rgba(241, 236, 221, 0.30);
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --serif: 'EB Garamond', Garamond, Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.68;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  font-feature-settings: 'liga' 1, 'kern' 1;
  overflow-x: hidden;
}
/* film grain, tuned for dark */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.52 0 0 0 0 0.44 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23g)'/%3E%3C/svg%3E");
}
::selection { background: var(--brass); color: var(--bg); }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; font-family: var(--display); font-optical-sizing: auto; font-weight: 500; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.wrap-narrow { max-width: 840px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.center { text-align: center; }

/* custom cursor */
.gm-cursor {
  position: fixed; top: 0; left: 0; width: 20px; height: 20px;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 9999; opacity: 0;
  transition: width .32s cubic-bezier(.2,.7,.3,1), height .32s cubic-bezier(.2,.7,.3,1), opacity .3s;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
.gm-cursor.on { opacity: 1; }
.gm-cursor svg { width: 100%; height: 100%; display: block; transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.gm-cursor path { fill: var(--brass-2); stroke: var(--brass-2); stroke-width: 0; vector-effect: non-scaling-stroke; transition: fill .3s, stroke-width .3s; }
.gm-cursor.big { width: 58px; height: 58px; }
.gm-cursor.big svg { transform: rotate(90deg); }
.gm-cursor.big path { fill: transparent; stroke-width: 1.3; }
html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor .btn, html.has-cursor summary { cursor: none; }

/* ---------- header ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 34px clamp(24px, 5vw, 64px);
}
.site-header.solid { position: relative; }
.site-header .brand { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); text-decoration: none; }
.site-header nav { display: flex; gap: 34px; align-items: center; }
.site-header nav a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--cream-soft); text-decoration: none; transition: color .25s; position: relative;
}
.site-header nav a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--brass-2); transition: width .3s; }
.site-header nav a:hover, .site-header nav a.current { color: var(--cream); }
.site-header nav a:hover::after, .site-header nav a.current::after { width: 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none;
  background: var(--brass); color: var(--bg);
  padding: 21px 56px; border: none;
  font-family: var(--serif); font-size: 17.5px; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 2px; transition: background .3s, transform .2s, box-shadow .3s;
  will-change: transform;
}
.btn:hover { background: var(--brass-2); box-shadow: 0 12px 40px rgba(184, 147, 90, 0.28); }
.btn.on-green, .btn.on-photo { background: transparent; color: var(--cream); border: 1px solid var(--line-strong); }
.btn.on-green:hover, .btn.on-photo:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); box-shadow: none; }

.label { display: block; font-size: 16px; font-weight: 600; font-variant: all-small-caps; letter-spacing: 0.16em; color: var(--brass-2); margin-bottom: 20px; }
.text-link { font-size: 18px; font-weight: 500; text-decoration: none; color: var(--cream); border-bottom: 1px solid var(--brass); padding-bottom: 4px; transition: color .25s, border-color .25s; }
.text-link:hover { color: var(--brass-2); }

/* ---------- cinematic film hero ---------- */
.film-hero { height: 360vh; position: relative; }
.film-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--bg); }
.film-sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.film-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6, 12, 8, 0.82) 0%, rgba(6, 12, 8, 0.26) 40%, rgba(6, 12, 8, 0.08) 66%, rgba(6, 12, 8, 0.34) 100%),
    radial-gradient(ellipse 130% 100% at 50% 100%, transparent 52%, rgba(6, 12, 8, 0.4) 100%);
}
.film-intro { position: absolute; inset: 0; display: flex; align-items: flex-end; will-change: opacity, transform; }
.hero-content { max-width: 1240px; width: 100%; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px) clamp(70px, 10vh, 120px); will-change: transform; }
.hero-content h1 {
  font-size: clamp(60px, 8.6vw, 148px); line-height: 0.88; letter-spacing: -0.035em;
  color: var(--cream); text-shadow: 0 4px 40px rgba(0,0,0,0.4); max-width: 15ch; margin-bottom: 30px;
}
.hero-content .hero-line { font-size: clamp(19px, 1.7vw, 24px); color: var(--cream-soft); max-width: 30em; margin-bottom: 42px; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.film-line { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; padding: 0 8vw; pointer-events: none; }
.film-line p { font-family: var(--display); font-style: italic; font-size: clamp(40px, 6vw, 104px); font-weight: 500; color: var(--cream); text-align: center; line-height: 1.02; letter-spacing: -0.02em; text-shadow: 0 3px 40px rgba(0,0,0,0.5); }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-size: 13px; font-weight: 600; font-variant: all-small-caps; letter-spacing: 0.3em; color: var(--cream-faint); animation: cue 2.6s ease-in-out infinite; pointer-events: none; }
@keyframes cue { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- page hero (subpages) ---------- */
.page-hero { position: relative; color: var(--cream); padding: clamp(140px, 20vh, 220px) 0 clamp(80px, 12vh, 130px); overflow: hidden; }
.page-hero .ph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; transform: scale(1.06); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 2%, rgba(11,19,14,0.72) 60%, rgba(11,19,14,0.86)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(56px, 6.6vw, 104px); line-height: 0.94; letter-spacing: -0.035em; }
.page-hero .page-line { margin-top: 22px; font-size: 22px; color: var(--cream-soft); max-width: 34em; }

/* ---------- sections ---------- */
section { padding: clamp(90px, 13vh, 150px) 0; position: relative; }
.tight-top { padding-top: clamp(50px, 6vh, 70px); }
.flush-top { padding-top: clamp(90px, 12vh, 130px); }
h2 { font-size: clamp(42px, 5vw, 82px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 30px; }
.sub { font-size: 22px; color: var(--cream-soft); max-width: 34em; }

.statement { font-family: var(--display); font-size: clamp(30px, 3.6vw, 52px); line-height: 1.34; font-weight: 500; letter-spacing: -0.02em; max-width: 24ch; margin: 0 auto; text-align: center; color: var(--cream); }
.statement em { font-style: italic; color: var(--brass-2); }

/* full-bleed dark statement */
.statement-dark { min-height: 96vh; display: grid; place-items: center; overflow: hidden; padding: 0; background: #060C08; }
.statement-dark .sd-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; transform: scale(1.12); will-change: transform; }
.statement-dark::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(6,12,8,0.1), #060C08 92%); }
.statement-dark .sd-inner { position: relative; z-index: 2; max-width: min(920px, 90vw); text-align: center; padding: 0 6vw; }
.statement-dark p { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 4.6vw, 72px); line-height: 1.12; letter-spacing: -0.03em; }
.statement-dark em { font-style: italic; color: var(--brass-2); }

/* chapter heads */
.chap { display: flex; align-items: flex-start; gap: clamp(20px, 4vw, 52px); }
.chap-num { font-family: var(--display); font-size: clamp(72px, 9vw, 150px); font-weight: 500; line-height: 0.7; color: transparent; -webkit-text-stroke: 1px var(--line-strong); user-select: none; flex-shrink: 0; }

/* capability columns */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 4vw, 60px); margin-top: 72px; }
.cap { border-top: 1px solid var(--line-strong); padding-top: 30px; }
.cap .num { display: block; font-size: 15px; color: var(--brass-2); margin-bottom: 18px; font-variant: all-small-caps; letter-spacing: 0.18em; }
.cap h3 { font-size: clamp(28px, 2.6vw, 38px); margin-bottom: 14px; }
.cap p { font-size: 19px; color: var(--cream-soft); }

/* principles */
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 90px); margin-top: 44px; }
.principle { border-top: 1px solid var(--line); padding: 42px 0 46px; }
.principle .num { display: block; font-size: 15px; color: var(--brass-2); margin-bottom: 14px; font-variant: all-small-caps; letter-spacing: 0.18em; }
.principle h3 { font-size: clamp(26px, 2.4vw, 34px); margin-bottom: 12px; }
.principle p { font-size: 19px; color: var(--cream-soft); max-width: 32em; }

/* engraving ghost */
.has-engraving { position: relative; overflow: hidden; }
.engraving { position: absolute; right: -120px; bottom: -110px; width: clamp(320px, 34vw, 520px); opacity: 0.14; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at center, black 45%, transparent 72%); mask-image: radial-gradient(ellipse at center, black 45%, transparent 72%); filter: invert(1) sepia(1) saturate(0.4) brightness(1.1); }
.has-engraving .wrap { position: relative; z-index: 2; }

/* photo bands */
.photo-band { position: relative; overflow: hidden; }
.photo-band img { width: 100%; height: clamp(400px, 72vh, 720px); object-fit: cover; will-change: transform; }
.photo-band::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 180px rgba(6,12,8,0.65); pointer-events: none; }

/* letters / teaser rows */
.work-teaser { border-top: 1px solid var(--line); }
.work-teaser a { text-decoration: none; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline; padding: 32px 4px; border-bottom: 1px solid var(--line); transition: padding-left .35s, background .35s, color .35s; color: var(--cream); }
.work-teaser a:hover { padding-left: 22px; color: var(--brass-2); }
.work-teaser .wt-title { font-family: var(--display); font-size: clamp(26px, 2.6vw, 38px); font-weight: 500; letter-spacing: -0.02em; }
.work-teaser .wt-cat { font-size: 16px; font-variant: all-small-caps; letter-spacing: 0.14em; color: var(--brass-2); white-space: nowrap; }

/* full-bleed portfolio rows */
.work-full a { position: relative; display: block; height: 88vh; min-height: 540px; overflow: hidden; text-decoration: none; color: var(--cream); }
.work-full a img { position: absolute; inset: -6%; width: 112%; height: 112%; object-fit: cover; will-change: transform; transition: transform 1.4s cubic-bezier(.2,.7,.3,1); }
.work-full a:hover img { transform: scale(1.05); }
.work-full a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,12,8,0.9), rgba(6,12,8,0.05) 55%, rgba(6,12,8,0.45)); }
.work-full .wf-inner { position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); bottom: 0; width: 100%; max-width: 1240px; padding: min(7vw, 80px) clamp(24px, 5vw, 64px); }
.work-full .wf-index { font-variant: all-small-caps; letter-spacing: 0.2em; font-size: 16px; color: var(--brass-2); }
.work-full .wf-cat { font-variant: all-small-caps; letter-spacing: 0.14em; color: var(--brass-2); font-size: 18px; margin-left: 16px; }
.work-full .wf-title { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 5.2vw, 82px); line-height: 0.96; letter-spacing: -0.035em; margin-top: 14px; max-width: 15ch; }
.work-full .wf-meta { margin-top: 18px; font-size: 19px; color: var(--cream-soft); max-width: 46ch; }
.work-full .wf-cta { margin-top: 24px; display: inline-block; font-size: 15px; font-variant: all-small-caps; letter-spacing: 0.18em; color: var(--cream); border-bottom: 1px solid var(--brass); padding-bottom: 5px; transition: color .25s; }
.work-full a:hover .wf-cta { color: var(--brass-2); }

/* work page gallery cards */
.case-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px) clamp(40px, 4vw, 60px); }
.case-card { position: relative; }
.case-media { overflow: hidden; margin-bottom: 26px; aspect-ratio: 4/3; background: var(--bg-2); }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.3,1); }
.case-card:hover .case-media img { transform: scale(1.05); }
.case-cat { font-size: 16px; font-variant: all-small-caps; letter-spacing: 0.14em; color: var(--brass-2); margin-bottom: 8px; }
.case-card h3 { font-size: clamp(28px, 2.6vw, 40px); line-height: 1.05; margin-bottom: 14px; }
.case-card .case-body { font-size: 18.5px; color: var(--cream-soft); margin-bottom: 16px; }
.case-outcome { font-size: 18.5px; color: var(--cream); }
.case-outcome::before { content: 'Outcome'; display: block; font-size: 15px; font-weight: 600; font-variant: all-small-caps; letter-spacing: 0.14em; color: var(--brass-2); margin-bottom: 4px; }
.case-note { margin-top: 56px; font-size: 18px; color: var(--cream-soft); max-width: 44em; }

/* green weave sections */
.green-block { position: relative; }
.green-weave {
  background-color: var(--green);
  background-image:
    radial-gradient(ellipse 130% 100% at 50% 0%, rgba(255,246,220,0.05), transparent 58%),
    repeating-linear-gradient(90deg, rgba(241,236,221,0.02) 0 1px, transparent 1px 11px),
    radial-gradient(ellipse 140% 120% at 50% 115%, rgba(0,0,0,0.3), transparent 62%);
}

/* membership pricing */
.seat-row { display: grid; grid-template-columns: 300px 1fr 260px; gap: 48px; padding: 56px 20px; margin: 0 -20px; border-top: 1px solid var(--line); align-items: start; transition: background .3s; }
.seat-row:hover { background: rgba(241,236,221,0.03); }
.seat-row:last-of-type { border-bottom: 1px solid var(--line); }
.seat-row h3 { font-size: clamp(32px, 3vw, 44px); }
.seat-row .seat-for { font-size: 17px; color: var(--cream-soft); margin-top: 8px; }
.seat-row .seat-desc { font-size: 19.5px; padding-top: 8px; color: var(--cream); }
.seat-row .seat-price { text-align: right; }
.seat-row .seat-price .amt { font-family: var(--display); font-size: clamp(40px, 3.6vw, 52px); font-weight: 500; line-height: 1; }
.seat-row .seat-price .per { font-size: 16px; color: var(--cream-soft); margin-top: 10px; line-height: 1.55; }
.notes { margin-top: 48px; font-size: 17.5px; color: var(--cream-soft); max-width: 52em; }
.notes p { margin-bottom: 0.7em; }

/* light paper artifacts on dark (letterhead, form) */
.letterhead { max-width: 700px; margin: 0 auto; background: var(--paper); color: var(--ink); border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 30px 80px rgba(0,0,0,0.4); padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 68px) 52px; }
.letterhead .lh-name { text-align: center; font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 34px; }
.letterhead .lh-meta { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(0,0,0,0.14); border-bottom: 1px solid rgba(0,0,0,0.14); padding: 13px 2px; margin-bottom: 30px; font-size: 14.5px; font-weight: 500; letter-spacing: 0.06em; color: var(--ink-soft); }
.letterhead p { font-size: 19px; margin-bottom: 1em; color: var(--ink); }
.letterhead .sig { font-family: var(--display); font-size: 26px; font-weight: 500; text-align: right; margin-top: 30px; }
.redact { background: var(--ink); color: var(--ink); border-radius: 1px; padding: 0 8px; user-select: none; }
.specimen-note { text-align: center; margin-top: 24px; font-size: 16px; color: var(--cream-soft); }

/* the firm */
.firm-prose { max-width: 700px; font-size: 20px; color: var(--cream); }
.firm-prose p { margin-bottom: 1.1em; }
.firm-prose .lead { font-family: var(--display); font-size: clamp(25px, 2.6vw, 34px); line-height: 1.36; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 1.1em; }
.principal-card { border-top: 1px solid var(--line-strong); padding-top: 28px; max-width: 440px; }
.principal-card h3 { font-size: clamp(28px, 2.6vw, 34px); }
.principal-card .role { font-size: 17px; font-variant: all-small-caps; letter-spacing: 0.12em; color: var(--brass-2); margin: 4px 0 16px; }
.principal-card p { font-size: 18px; color: var(--cream-soft); }
.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); margin-top: 60px; }
.fit-cols h3 { font-size: 28px; margin-bottom: 18px; }
.fit-cols li { font-size: 18.5px; padding: 13px 0; border-top: 1px solid var(--line); list-style: none; color: var(--cream-soft); }

/* letters / essays */
.essay { max-width: 680px; margin: 0 auto clamp(70px, 10vh, 100px); }
.essay:last-of-type { margin-bottom: 0; }
.essay .ess-date { font-size: 16px; font-variant: all-small-caps; letter-spacing: 0.14em; color: var(--brass-2); display: block; margin-bottom: 12px; }
.essay h2 { font-size: clamp(34px, 3.6vw, 50px); margin-bottom: 24px; }
.essay p { font-size: 20px; margin-bottom: 1.05em; color: var(--cream); }
.essay .ess-sig { font-family: var(--display); font-size: 25px; font-weight: 500; margin-top: 28px; }

/* terms clauses */
.clauses .clause { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding: 40px 0; border-top: 1px solid var(--line); }
.clauses .clause:last-child { border-bottom: 1px solid var(--line); }
.clause-no { font-family: var(--display); font-size: 30px; font-weight: 500; color: var(--brass-2); line-height: 1.1; }
.clauses .clause h3 { font-size: clamp(26px, 2.4vw, 32px); margin-bottom: 12px; }
.clauses .clause p { font-size: 18.5px; color: var(--cream-soft); max-width: 58ch; }

/* enquire form */
.enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px); align-items: start; }
.enq-form { display: grid; gap: 26px; }
.field label { display: block; font-size: 15px; font-weight: 600; font-variant: all-small-caps; letter-spacing: 0.1em; color: var(--cream-soft); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--serif); font-size: 18px; color: var(--cream);
  background: rgba(241,236,221,0.04); border: 1px solid var(--line-strong); padding: 15px 16px; border-radius: 2px;
  -webkit-appearance: none; appearance: none; transition: border-color .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--cream-faint); }
.field select { color: var(--cream); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23CBAE72' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { color: #14100A; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass-2); background: rgba(241,236,221,0.06); }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.enq-form .btn { justify-self: start; cursor: pointer; }
.enq-alt { font-size: 17px; color: var(--cream-soft); }
.enq-alt a { color: var(--brass-2); }
.next-steps { border-top: 1px solid var(--line-strong); padding-top: 8px; }
.next-step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.next-step .ns-num { font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--brass-2); }
.next-step h4 { font-family: var(--display); font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.next-step p { font-size: 17.5px; color: var(--cream-soft); }

/* faq */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--display); font-size: clamp(22px, 2vw, 28px); font-weight: 500; padding: 26px 44px 26px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 28px; color: var(--brass-2); font-weight: 300; transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { font-size: 18.5px; color: var(--cream-soft); padding: 0 0 28px; max-width: 62ch; }

.big-mail { display: inline-block; font-family: var(--display); font-size: clamp(34px, 4.6vw, 68px); font-weight: 500; letter-spacing: -0.03em; color: var(--cream); text-decoration: none; border-bottom: 2px solid var(--brass); padding-bottom: 8px; transition: color .25s; }
.big-mail:hover { color: var(--brass-2); }

/* cta band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .sub { margin: 0 auto 44px; }

/* footer */
.site-footer { padding: clamp(80px, 11vh, 110px) 0 52px; position: relative; }
.site-footer .foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.site-footer .foot-brand { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); text-decoration: none; }
.foot-cols { display: flex; gap: clamp(40px, 6vw, 90px); }
.foot-cols .fc h5 { font-size: 15px; font-weight: 600; font-variant: all-small-caps; letter-spacing: 0.14em; color: var(--cream-soft); margin-bottom: 16px; }
.foot-cols .fc a { display: block; font-size: 16.5px; color: var(--cream-soft); text-decoration: none; padding: 5px 0; transition: color .25s; }
.foot-cols .fc a:hover { color: var(--cream); }
.foot-word { font-family: var(--display); font-weight: 500; font-size: clamp(64px, 13vw, 200px); line-height: 0.82; text-align: center; color: rgba(241,236,221,0.06); white-space: nowrap; user-select: none; margin: clamp(50px, 8vh, 90px) 0 -0.12em; overflow: hidden; }
.foot-bottom { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 15px; color: var(--cream-soft); }

/* reveal */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1); }
.fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade { opacity: 1; transform: none; transition: none; } .gm-cursor { display: none; } }

@media (max-width: 920px) {
  body { font-size: 19px; }
  .site-header { padding: 22px 24px; }
  .site-header nav { gap: 18px; }
  .site-header nav a:not(:last-child) { display: none; }
  .film-hero { height: 280vh; }
  .cap-grid, .principles-grid, .fit-cols, .enq-grid, .case-gallery { grid-template-columns: 1fr; gap: 40px; }
  .seat-row { grid-template-columns: 1fr; gap: 14px; padding: 40px 16px; margin: 0 -16px; }
  .seat-row .seat-price { text-align: left; }
  .work-full a { height: 74vh; min-height: 440px; }
  .work-full .wf-inner { padding: 40px 24px; }
  .statement-dark { min-height: 82vh; }
  .clauses .clause { grid-template-columns: 40px 1fr; gap: 16px; }
  .foot-cols { gap: 40px; flex-wrap: wrap; }
  html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: auto; }
  .gm-cursor { display: none; }
}

/* ===================== v14 — legibility + alignment ===================== */
/* bigger, more readable secondary text across the site */
body { font-size: 22px; line-height: 1.7; }
.site-header nav a { font-size: 15.5px; }
.label { font-size: 17.5px; }
.text-link { font-size: 19px; }
.sub { font-size: 23px; }
.page-hero .page-line { font-size: 23px; }
.hero-content .hero-line { font-size: clamp(20px, 1.8vw, 25px); }
.cap p { font-size: 20.5px; }
.principle p { font-size: 20.5px; }
.work-full .wf-meta { font-size: 20.5px; }
.work-full .wf-cat { font-size: 19px; }
.case-card .case-body { font-size: 20px; }
.case-outcome { font-size: 20px; }
.case-cat { font-size: 17px; }
.case-note { font-size: 20px; }
.seat-row .seat-for { font-size: 18px; }
.seat-row .seat-desc { font-size: 20.5px; }
.seat-row .seat-price .per { font-size: 17.5px; }
.notes { font-size: 19px; }
.firm-prose { font-size: 21px; }
.principal-card p { font-size: 19.5px; }
.principal-card .role { font-size: 18px; }
.fit-cols li { font-size: 20px; }
.essay p { font-size: 21px; }
.clauses .clause p { font-size: 20px; }
.letterhead p { font-size: 20px; }
.field label { font-size: 16.5px; }
.field input, .field select, .field textarea { font-size: 19px; }
.next-step p { font-size: 19px; }
.next-step h4 { font-size: 25px; }
.faq details p { font-size: 20px; }
.faq summary { font-size: clamp(23px, 2vw, 30px); }
.enq-alt { font-size: 18px; }
.foot-cols .fc h5 { font-size: 16px; }
.foot-cols .fc a { font-size: 17.5px; }
.foot-bottom { font-size: 16px; }
.specimen-note { font-size: 17px; }

/* chapter heads: number sits ABOVE the title, so title + label + content all
   share one left edge (fixes the heading-vs-grid margin mismatch) */
.chap { display: block; }
.chap-num { display: block; margin-bottom: 4px; line-height: 0.78; }

/* ===================== v15 — capabilities styling + mobile polish ===================== */
/* capabilities service sections (were unstyled → name+desc ran together) */
.cap-section{display:grid;grid-template-columns:300px 1fr;gap:clamp(30px,5vw,64px);padding:clamp(46px,7vh,80px) 0;border-top:1px solid var(--line);}
.cap-section:first-of-type{border-top:none;}
.cap-section h2{font-size:clamp(32px,3.8vw,44px);margin-bottom:8px;}
.cap-section .cap-kicker{font-size:18px;color:var(--cream-soft);}
.cap-section ul{list-style:none;}
.cap-section li{padding:18px 0;border-bottom:1px solid var(--line);font-size:20px;color:var(--cream);}
.cap-section li:last-child{border-bottom:none;}
.cap-section li span{display:block;font-size:16.5px;color:var(--cream-soft);margin-top:5px;line-height:1.5;}

/* mobile menu toggle */
.nav-toggle{display:none;}
@media(max-width:920px){
  .nav-toggle{display:flex;flex-direction:column;gap:5px;background:none;border:none;padding:8px;cursor:pointer;position:relative;z-index:60;}
  .nav-toggle span{width:26px;height:2px;background:var(--cream);border-radius:2px;transition:transform .35s,opacity .25s;}
  .nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav-toggle.open span:nth-child(2){opacity:0;}
  .nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  .site-header nav{position:fixed;inset:0;background:var(--bg);flex-direction:column;justify-content:center;align-items:center;gap:24px;transform:translateX(100%);transition:transform .42s cubic-bezier(.2,.7,.3,1);z-index:55;}
  .site-header nav.open{transform:none;}
  .site-header nav a{display:block!important;font-family:var(--display);font-size:34px;color:var(--cream);letter-spacing:-.01em;}
  .site-header nav a::after{display:none;}
  body.nav-open{overflow:hidden;}
}

/* mobile: lighter headings, tighter rhythm */
@media(max-width:920px){
  body{font-size:18.5px;line-height:1.66;}
  section{padding:62px 0;}
  .flush-top{padding-top:62px!important;}
  .tight-top{padding-top:44px;}
  .hero-content h1{font-size:clamp(44px,13vw,54px);line-height:.96;}
  .hero-content .hero-line{font-size:19px;}
  .page-hero{padding:112px 0 60px;}
  .page-hero h1{font-size:clamp(40px,11vw,52px);}
  .page-hero .page-line{font-size:19px;}
  h2{font-size:clamp(31px,8vw,40px);}
  .sub{font-size:19px;}
  .statement-dark{min-height:74vh;}
  .statement-dark p{font-size:clamp(29px,7vw,38px);}
  .work-full a{height:66vh;min-height:400px;}
  .work-full .wf-title{font-size:clamp(29px,7.4vw,38px);}
  .work-full .wf-meta{font-size:18px;}
  .chap-num{font-size:54px;}
  .foot-word{font-size:clamp(50px,17vw,90px);}
  .cap-section{grid-template-columns:1fr;gap:14px;padding:38px 0;}
  .cap-section h2{font-size:31px;}
  .cap-section li{font-size:19px;padding:15px 0;}
  .principle p,.cap p{font-size:19px;}
  .seat-row h3{font-size:30px;}
  .essay p{font-size:19px;}
  .clauses .clause p{font-size:18.5px;}
}
