@import url('fonts.css');

/* ==========================================================================
   Insider Match — shared stylesheet
   Extracted from "Insider Match Marketplace v3.dc.html" (source of truth).
   Colours, type and spacing preserved; layout made responsive.
   ========================================================================== */

:root {
  --navy-950: #03101F;
  --navy-900: #051731;
  --navy-850: #081C3B;
  --navy-800: #0B2244;
  --navy-700: #102B54;
  --navy-300: #8198BD;
  --navy-200: #B6C3DA;
  --navy-100: #E7ECF5;
  --blue-400: #4A6B9E;

  --gold-500: #C3A872;
  --gold-400: #D4BC85;
  --gold-300: #E3D2A6;
  --gold-ink: #6F592F;
  --gold-bg:  #F6EFDD;

  --ivory:  #F8F5EE;
  --cream:  #FCFBF7;
  --white:  #FFFFFF;

  --ink:    #051731;
  --body:   #4E586C;
  --slate:  #33415C;
  --muted:  #6B7488;
  --faint:  #8A93A6;
  --green:  #2F7A5C;

  --line:       #E7EAF0;
  --line-soft:  #EFF1F5;
  --line-warm:  #EFEAE0;
  --line-sand:  #E3DCC9;
  --line-grey:  #C9CFDA;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', Menlo, monospace;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --shell: 1240px;
  --pad: 32px;
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #1A3A6B; text-decoration: none; }
a:hover { color: #0B2244; }
a:focus-visible,
button:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; height: auto; }

/* The `hidden` attribute must always win.
   [hidden] { display: none } comes from the browser's UA stylesheet, so ANY
   author rule that sets display (e.g. .card { display: flex }) overrides it and
   the element stays visible. That silently broke the coach firm filter: the JS
   set `hidden` on the right cards, but they kept rendering as flex. */
[hidden] { display: none !important; }
::selection { background: rgba(195, 168, 114, 0.4); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--navy-900);
  padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

@keyframes imBlink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }
@keyframes imFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- layout primitives ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }
.shell-md { max-width: 1140px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }
.shell-sm { max-width: 960px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }
.shell-xs { max-width: 880px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }

.section { padding-top: 104px; padding-bottom: 104px; }
.section-sm { padding-top: 88px; padding-bottom: 88px; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-navy  { background: var(--navy-900); }
.bd-top   { border-top: 1px solid var(--line-warm); }
.bd-bottom { border-bottom: 1px solid var(--line-warm); }

main { flex: 1; }

/* Anchor targets must clear the 68px sticky header when linked to with a
   fragment (e.g. index.html#howitworks from another page). */
:target,
#howitworks,
#faq { scroll-margin-top: 84px; }
html { scroll-behavior: smooth; }

/* radial glow overlay used on navy sections */
.glow { position: relative; overflow: hidden; }
.glow > .glow-layer { position: absolute; inset: 0; pointer-events: none; }
.glow-top    { background: radial-gradient(52% 68% at 50% 0%, rgba(195,168,114,0.10), transparent 70%); }
.glow-left   { background: radial-gradient(50% 80% at 30% 0%, rgba(195,168,114,0.09), transparent 70%); }
.glow-bottom { background: radial-gradient(60% 90% at 50% 110%, rgba(195,168,114,0.10), transparent 70%); }
.glow > .shell, .glow > .shell-sm, .glow > .shell-md, .glow > .shell-xs { position: relative; }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-ink); line-height: 1;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold-500); flex: none; }
.eyebrow.both::after { content: ""; width: 26px; height: 1.5px; background: var(--gold-500); flex: none; }
.eyebrow.on-navy { color: var(--gold-300); }

.pill-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
  border: 1px solid rgba(195,168,114,0.4); border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-300); line-height: 1;
}
.pill-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); flex: none; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; letter-spacing: 0; color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--gold-400); }

.h-hero   { font-size: clamp(42px, 5.2vw, 64px); line-height: 1.1; margin: 32px 0 0; color: var(--ivory); overflow-wrap: break-word; }
/* The hero's two lines are held on one line each by .nw so the desktop break
   matches the design. That must NOT apply on phones: at the 42px floor,
   "who actually works there." is ~500px wide and cannot fit a 375px screen,
   which pushed the whole document wider than the viewport. Below 700px the
   spans wrap normally and the type scales down. See the mobile block. */
.h-hero .nw { white-space: nowrap; }
.h-page   { font-size: clamp(36px, 4.4vw, 54px); line-height: 1.12; margin: 30px 0 0; color: var(--ivory); max-width: 17ch; }
.h-sec    { font-size: clamp(30px, 3.4vw, 42px); margin: 14px 0 0; }
.h-sec.on-navy { color: var(--ivory); }
.h-band   { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.15; color: var(--ivory); margin: 18px 0 0; }
.balance  { text-wrap: balance; }

.lead-navy { color: var(--navy-200); font-size: 19px; line-height: 1.75; max-width: 62ch; margin: 26px 0 0; }
.lead      { font-size: 17.5px; line-height: 1.85; color: var(--body); }
.mono      { font-family: var(--font-mono); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 32px; border-radius: 999px;
  font-family: inherit; font-size: 16px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; border: 1px solid transparent; transition: all 160ms var(--ease);
  text-align: center;
}
.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 24px rgba(195,168,114,0.28); }
.btn-gold:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(195,168,114,0.36); }
.btn-gold:active { transform: translateY(0.5px); }

.btn-ghost-navy { background: transparent; color: var(--navy-100); border-color: rgba(255,255,255,0.22); font-size: 15px; padding: 0 28px; }
.btn-ghost-navy:hover { border-color: rgba(255,255,255,0.45); color: var(--ivory); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-grey); height: 46px; padding: 0 24px; font-size: 14px; }
.btn-outline:hover { border-color: var(--ink); background: var(--white); color: var(--ink); }

.btn-sm { height: 46px; font-size: 14.5px; padding: 0 26px; }
.btn-md { height: 52px; font-size: 15px; padding: 0 30px; }
.btn-block { display: flex; width: 100%; min-height: 54px; height: auto; padding: 13px 22px; line-height: 1.35; font-size: 15px; }

.btn[aria-disabled="true"],
.btn.is-disabled {
  background: #EDEAE2; color: #8A93A6; border-color: #E0DCD1;
  box-shadow: none; cursor: not-allowed; pointer-events: none;
}

/* ---------- header ---------- */
.site-header {
  background: rgba(5,23,49,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad);
  min-height: 68px; display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; flex: none; }
.brand img { display: block; border-radius: 3px; }
.brand-word {
  font-size: 17px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.34em; white-space: nowrap; padding-left: 0.34em; color: var(--ivory);
}
.brand-word .gold { color: var(--gold-500); }

.nav-toggle {
  display: none; margin-left: auto; background: transparent; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 10px;
  width: 42px; height: 38px; align-items: center; justify-content: center;
  color: var(--ivory); font-size: 18px; line-height: 1;
}

.site-nav { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.site-nav a {
  font-size: 14px; letter-spacing: 0.01em; white-space: nowrap;
  padding: 8px 14px; border-radius: 999px; color: var(--navy-200); font-weight: 500;
  transition: all 140ms var(--ease);
}
.site-nav a:hover { color: var(--gold-300); background: rgba(255,255,255,0.06); }
.site-nav a[aria-current="page"] { color: var(--gold-300); font-weight: 600; background: rgba(195,168,114,0.14); }

.header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 18px; flex: none;
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(195,168,114,0.5); border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap;
  transition: all 140ms var(--ease);
}
.header-cta:hover { border-color: var(--gold-500); color: var(--gold-300); background: rgba(195,168,114,0.1); }

/* ---------- cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px; box-shadow: 0 1px 2px rgba(5,23,49,0.05);
  display: flex; flex-direction: column; transition: all 220ms var(--ease);
}
.card-link { cursor: pointer; color: inherit; }
.card-link:hover {
  box-shadow: 0 20px 44px rgba(5,23,49,0.12), 0 4px 12px rgba(5,23,49,0.05);
  transform: translateY(-3px); border-color: rgba(195,168,114,0.55); color: inherit;
}
.card-pad { padding: 34px 32px; }
.card-pad:hover { border-color: rgba(195,168,114,0.55); box-shadow: 0 12px 28px rgba(5,23,49,0.09); }
.card-rule { width: 28px; height: 2px; background: var(--gold-500); margin-bottom: 20px; }
.card h3 { font-size: 21px; margin: 0 0 12px; }
.card p  { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }

.badge-verified {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; flex: none;
  border-radius: 999px; background: var(--gold-bg); color: var(--gold-ink);
  border: 1px solid rgba(195,168,114,0.45);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4;
}
.badge-verified::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge-verified.lg { font-size: 11px; padding: 5px 13px; letter-spacing: 0.06em; }
.badge-verified.lg::before { width: 6px; height: 6px; }

/* coach card */
.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.coach-grid.browse { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.coach-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.coach-alias { font-family: var(--font-serif); font-weight: 500; font-size: 22px; color: var(--ink); line-height: 1.2; }
.coach-firm  { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.25; margin-top: 6px; }
.coach-meta  { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); letter-spacing: 0.015em; text-transform: uppercase; margin-top: 7px; }
.coach-bio   { font-size: 14px; color: var(--body); line-height: 1.65; margin: 20px 0 0; }
/* JS adds .clamped when the bio overflows; removed when the "…more" toggle
   expands it. With JS off the full bio shows and no toggle appears. */
.coach-bio.clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.bio-more {
  position: relative; z-index: 1;               /* sit above the stretched link */
  margin-top: 8px; padding: 0; background: none; border: none;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--gold-ink); cursor: pointer;
}
.bio-more:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.price-list  { margin-top: 22px; border-top: 1px solid var(--line-soft); padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.price-row   { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.price-row .name { font-size: 14px; color: var(--slate); }
.price-row .dots { flex: 1; border-bottom: 1px dotted #D8DDE6; transform: translateY(-4px); }
.price-row .amt  { font-family: var(--font-mono); font-size: 13.5px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.card-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: flex-end; }
.card-foot .card-stretch { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--gold-ink); }
.card-foot .card-stretch:hover { color: var(--gold-ink); }

/* Stretched link: the whole coach card is clickable, but interactive children
   (the "…more" toggle) stay clickable because they sit above this overlay. */
.coach-card { position: relative; }
.coach-card .card-stretch::after { content: ""; position: absolute; inset: 0; z-index: 0; }

/* trust bar */
.trust-bar {
  margin: 80px auto 0; max-width: 1080px; position: relative; z-index: 5;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 56px rgba(5,23,49,0.14), 0 2px 8px rgba(5,23,49,0.06);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); overflow: hidden;
}
.trust-item { display: flex; align-items: center; gap: 16px; padding: 28px 30px; border-left: 1px solid var(--line-soft); }
.trust-item:first-child { border-left: none; }
.trust-item .ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--gold-bg); color: var(--gold-ink); flex: none; }
.trust-item span:last-child { font-size: 14px; color: var(--slate); line-height: 1.5; }

/* ---------- filters ---------- */
.filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-right: 8px; }
.filter-btn {
  cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 500;
  padding: 9px 18px; border-radius: 999px; transition: all 160ms var(--ease);
  border: 1px solid var(--line-grey); background: var(--white); color: var(--body);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn[aria-pressed="true"] { border-color: var(--navy-900); background: var(--navy-900); color: var(--ivory); box-shadow: 0 4px 12px rgba(5,23,49,0.18); }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); border-top: 1px solid var(--line); }
.step-col { padding: 36px 28px 8px; position: relative; border-left: 1px solid var(--line-soft); transition: background 220ms var(--ease); }
.step-col:hover { background: var(--cream); }
.step-col::before { content: ""; position: absolute; top: -1px; left: 28px; width: 44px; height: 2px; background: var(--gold-500); }
.step-num { font-family: var(--font-serif); font-size: 44px; color: var(--gold-500); line-height: 1; }
.step-col h3 { font-family: var(--font-sans); font-size: 19px; font-weight: 700; line-height: 1.3; margin: 22px 0 10px; }
.step-col p { color: var(--body); font-size: 14.5px; line-height: 1.65; margin: 0 0 28px; }

.stack-steps { display: flex; flex-direction: column; }
.stack-step { display: flex; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.stack-step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; background: var(--gold-bg);
  font-family: var(--font-serif); font-size: 19px; color: var(--gold-ink); flex: none;
}
.stack-step .t { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.stack-step .b { font-size: 14.5px; color: var(--body); line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: 0; }
.faq-group h2 { font-size: 24px; margin: 0 0 6px; }
.faq-group .rule { width: 26px; height: 2px; background: var(--gold-500); margin-bottom: 12px; }
.faq-list { border-bottom: 1px solid var(--line-sand); }
.faq-item { border-top: 1px solid var(--line-sand); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 4px; text-align: left;
}
.faq-q span:first-child { font-size: 16.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.faq-q .ico { font-size: 24px; font-weight: 300; color: var(--gold-500); flex: none; line-height: 1; transition: transform 220ms var(--ease); }
.faq-q[aria-expanded="true"] .ico { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 280ms var(--ease); }
.faq-q[aria-expanded="true"] + .faq-a { max-height: 720px; }
.faq-a p { font-size: 15px; line-height: 1.75; color: var(--body); margin: 0; padding: 0 44px 22px 4px; max-width: 64ch; }

/* home FAQ typewriter panel */
.ask-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.ask-list { display: flex; flex-direction: column; gap: 10px; }
.ask-btn {
  text-align: left; display: flex; align-items: center; gap: 16px;
  padding: 17px 20px; border-radius: 12px; background: transparent; cursor: pointer;
  font-family: inherit; border: 1px solid rgba(255,255,255,0.14); transition: all 160ms var(--ease);
}
.ask-btn:hover { border-color: rgba(195,168,114,0.6); }
.ask-btn[aria-selected="true"] { border-color: rgba(195,168,114,0.75); background: rgba(195,168,114,0.14); }
.ask-btn .n { font-family: var(--font-mono); font-size: 12px; flex: none; color: var(--blue-400); }
.ask-btn[aria-selected="true"] .n { color: var(--gold-400); }
.ask-btn .q { font-size: 15px; font-weight: 500; color: var(--ivory); line-height: 1.4; }
.ask-panel {
  background: var(--navy-800); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 36px 40px; min-height: 240px; display: flex; flex-direction: column;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.ask-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.ask-panel-head .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); }
.ask-panel-head .ref { font-family: var(--font-mono); font-size: 11px; color: var(--blue-400); }
.ask-answer { font-size: 17px; line-height: 1.8; color: var(--ivory); margin: 0; min-height: 120px; }
.caret { display: inline-block; width: 2px; height: 1.05em; background: var(--gold-500); vertical-align: -0.15em; margin-left: 2px; animation: imBlink 1.1s steps(1) infinite; }

/* ---------- coach profile ---------- */
.profile-grid { display: grid; grid-template-columns: 1fr 384px; gap: 56px; align-items: start; padding-top: 44px; padding-bottom: 104px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--navy-200);
  font-size: 13.5px; padding: 7px 14px; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; transition: all 140ms var(--ease);
}
.back-link:hover { color: var(--gold-300); border-color: rgba(195,168,114,0.5); }
.profile-firm { font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-100); font-weight: 600; margin-top: 14px; }
.profile-meta { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-300); margin-top: 6px; }
.profile-about { color: var(--body); font-size: 16px; line-height: 1.8; max-width: 62ch; margin: 0 0 40px; }
.profile-block { border-top: 1px solid var(--line); padding-top: 32px; margin-bottom: 40px; }
.profile-block h2 { font-size: 26px; margin: 0 0 18px; }
.diamond-list { display: flex; flex-direction: column; gap: 12px; }
.diamond-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; color: var(--body); line-height: 1.6; list-style: none; }
.diamond-list li::before { content: ""; width: 6px; height: 6px; background: var(--gold-500); transform: rotate(45deg); flex: none; margin-top: 8px; }
.diamond-list { padding: 0; margin: 0; }

.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.book-card {
  background: var(--white); border: 1px solid rgba(195,168,114,0.5); border-radius: 16px;
  padding: 32px; box-shadow: 0 12px 32px rgba(195,168,114,0.14), 0 2px 8px rgba(5,23,49,0.05);
}
.book-card .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; margin-bottom: 16px; }
.svc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.svc-btn {
  text-align: left; cursor: pointer; padding: 13px 16px; border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  width: 100%; font-family: inherit; transition: all 160ms var(--ease);
  border: 1px solid var(--line); background: var(--white);
}
.svc-btn:hover { border-color: rgba(195,168,114,0.7); }
.svc-btn[aria-pressed="true"] { border-color: rgba(195,168,114,0.6); background: #FAF5E9; box-shadow: 0 2px 8px rgba(195,168,114,0.18); }
.svc-btn .nm { font-weight: 600; font-size: 14px; display: block; color: var(--ink); }
.svc-btn .du { font-size: 12.5px; color: var(--muted); }
.svc-btn .pr { font-family: var(--font-mono); font-weight: 600; color: var(--ink); }
.svc-desc { min-height: 112px; padding: 14px 16px; border-radius: 12px; background: var(--cream); border: 1px solid var(--line-soft); margin-bottom: 22px; }
.svc-desc p { font-size: 12.5px; color: var(--body); line-height: 1.6; margin: 0; }
.svc-desc .note { font-size: 11.5px; color: var(--faint); margin-top: 8px; }
.book-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 16px 0 0; line-height: 1.55; }
.book-secure { font-size: 11.5px; color: var(--faint); text-align: center; margin: 10px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; }
.tbc-note { font-size: 12.5px; color: #8A5A1F; background: #FBF3E3; border: 1px solid rgba(195,168,114,0.5); border-radius: 10px; padding: 10px 14px; margin: 12px 0 0; line-height: 1.5; }

.verify-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 1px 2px rgba(5,23,49,0.05); }
.verify-card .hd { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 15px; font-weight: 700; color: var(--ink); }
.verify-card .hd::before { content: ""; width: 8px; height: 8px; background: var(--gold-500); transform: rotate(45deg); flex: none; }
.verify-list { display: flex; flex-direction: column; gap: 10px; margin: 0 0 16px; padding: 0; list-style: none; }
.verify-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--body); line-height: 1.5; }
.verify-list li::before { content: "✓"; color: var(--green); font-size: 13px; flex: none; }
.verify-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0; border-top: 1px solid var(--line-soft); padding-top: 14px; }
.link-gold { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }
.link-gold:hover { color: var(--ink); }
.independence { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; padding: 0 4px; }

/* ---------- pricing table ---------- */
.table-wrap { background: var(--white); border: 1px solid rgba(195,168,114,0.5); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(5,23,49,0.08); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.price-table th { background: var(--navy-900); color: var(--ivory); font-weight: 600; font-size: 13px; text-align: right; padding: 18px 24px; }
.price-table th:first-child { text-align: left; }
.price-table th span { display: block; font-weight: 400; font-size: 11px; color: var(--navy-200); margin-top: 3px; }
.price-table td { padding: 20px 24px; text-align: right; border-top: 1px solid var(--line-soft); }
.price-table td:first-child { text-align: left; }
.price-table tbody tr:nth-child(2) { background: var(--cream); }
.price-table .lvl { font-weight: 700; font-size: 16px; color: var(--ink); }
.price-table .exp { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.price-table .amt { font-family: var(--font-mono); font-size: 16px; color: var(--ink); }

.tick-list { margin-top: 28px; display: flex; flex-direction: column; max-width: 760px; }
.tick-list li { display: flex; align-items: flex-start; gap: 13px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 14.5px; line-height: 1.55; color: var(--body); list-style: none; }
.tick-list li:last-child { border-bottom: 1px solid var(--line); }
.tick-list li::before { content: "✓"; flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 999px; background: var(--gold-bg); color: var(--gold-ink); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.tick-list { padding: 0; }

.svc-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px 32px; display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(5,23,49,0.05); transition: all 220ms var(--ease); }
.svc-card:hover { border-color: rgba(195,168,114,0.55); box-shadow: 0 16px 36px rgba(5,23,49,0.1); transform: translateY(-3px); }
.svc-card .kicker { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink); }
.svc-card h3 { font-size: 27px; margin: 14px 0 4px; }
.svc-card .dur { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.svc-card > p { font-size: 15px; line-height: 1.65; color: var(--body); margin: 0 0 22px; }
.svc-card .facts { border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.svc-card .facts dt { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.svc-card .facts dd { font-size: 14px; color: var(--navy-700); line-height: 1.5; margin: 0; }
.svc-card .caveat { margin: 18px 0 0; font-size: 12.5px; color: var(--muted); font-style: italic; }

/* ---------- legal ---------- */
.legal-layout { display: flex; gap: 40px; align-items: flex-start; padding: 32px var(--pad) 104px; max-width: var(--shell); margin: 0 auto; }
.legal-nav { display: flex; flex-direction: column; gap: 6px; width: 232px; flex: none; position: sticky; top: 92px; }
.legal-nav a {
  font-size: 13.5px; font-weight: 500; padding: 11px 16px; border-radius: 10px;
  border: 1px solid transparent; color: var(--body); transition: all 160ms var(--ease);
}
.legal-nav a:hover { border-color: var(--gold-500); color: var(--body); }
.legal-nav a[aria-current="page"] { border-color: var(--navy-900); background: var(--navy-900); color: var(--ivory); box-shadow: 0 4px 12px rgba(5,23,49,0.18); }
.legal-doc {
  flex: 1; min-width: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 52px 56px; box-shadow: 0 1px 2px rgba(5,23,49,0.05);
}
.legal-doc h2 { font-size: 21px; margin: 36px 0 14px; }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--ink); margin: 22px 0 8px; }
.legal-doc p { font-size: 14.5px; line-height: 1.7; color: var(--body); margin: 0 0 12px; }
.legal-doc ul { margin: 0 0 14px; padding: 0; list-style: none; }
.legal-doc li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.7; color: var(--body); margin: 0 0 8px; padding-left: 6px; }
.legal-doc li::before { content: ""; width: 5px; height: 5px; background: var(--gold-500); transform: rotate(45deg); flex: none; margin-top: 9px; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 14px; }
.legal-doc th, .legal-doc td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; line-height: 1.6; color: var(--body); }
.legal-doc th { background: var(--cream); color: var(--ink); font-weight: 600; }
.legal-doc strong { color: var(--ink); font-weight: 600; }
.legal-foot { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 24px 0 0; border-top: 1px solid var(--line-soft); padding-top: 20px; }
.legal-updated { color: var(--navy-300); font-size: 13px; margin: 12px 0 0; }

/* ---------- contact ---------- */
.tally-embed { width: 100%; min-height: 900px; border: 0; background: transparent; display: block; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: 0 1px 2px rgba(5,23,49,0.05); }
.contact-fallback { margin-top: 28px; font-size: 15px; color: var(--body); line-height: 1.7; text-align: center; }
.contact-fallback a { color: var(--gold-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy-900); position: relative; overflow: hidden; }
.cta-band .hair { height: 1px; background: linear-gradient(90deg, transparent, rgba(195,168,114,0.5), transparent); }
.cta-inline {
  background: var(--navy-900); border: 1px solid rgba(195,168,114,0.4); border-radius: 16px;
  padding: 36px 40px; box-shadow: 0 16px 40px rgba(5,23,49,0.18);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-inline .t { font-family: var(--font-serif); font-size: 26px; color: var(--ivory); }
.cta-inline p { color: var(--navy-200); font-size: 15px; line-height: 1.6; margin: 10px 0 0; max-width: 56ch; }

/* ---------- booking confirmed (standalone dark page) ----------
   This page is the Cal.com post-booking redirect target. It deliberately has
   no site header or nav: it is a terminal page whose only job is to get the
   candidate to the intake form. Dark full-bleed canvas, per the original
   design. Scoped to .page-confirm so it cannot affect any other page. */
.page-confirm {
  background: var(--navy-900);
  color: var(--ivory);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
  line-height: 1.6;
}
.page-confirm a { color: var(--navy-200); }
.page-confirm a:hover, .page-confirm a:focus-visible { color: var(--gold-300); }

.confirm-wrap { width: 100%; max-width: 600px; margin: auto; text-align: center; }

.confirm-logo { width: 210px; height: auto; margin: 0 auto 26px; display: block; }

.confirm-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: .75em;
}
.confirm-eyebrow::before, .confirm-eyebrow::after {
  content: ""; width: 26px; height: 1px; background: rgba(195,168,114,0.42);
}

.page-confirm h1 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 3.6rem); line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 0 20px; color: var(--ivory);
}
.page-confirm h1 em { font-style: italic; color: var(--gold-300); }

.confirm-lead { color: var(--navy-200); font-size: 1.06rem; line-height: 1.6; max-width: 44ch; margin: 0 auto; }

.confirm-rule {
  width: 100%; height: 1px; margin: 44px 0 6px;
  background: linear-gradient(90deg, transparent, rgba(195,168,114,0.42) 16%, rgba(195,168,114,0.42) 84%, transparent);
}

.confirm-steps { text-align: left; margin-top: 12px; }
.confirm-step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 22px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: start;
}
.confirm-step:last-child { border-bottom: none; }
.confirm-step .n { font-family: var(--font-mono); font-size: .82rem; color: var(--navy-300); padding-top: .35em; letter-spacing: .04em; }
.confirm-step .t { font-weight: 600; font-size: 1.08rem; color: var(--ivory); margin-bottom: 4px; letter-spacing: -0.005em; }
.confirm-step .b { color: var(--navy-200); font-size: .97rem; line-height: 1.55; max-width: 46ch; }

/* the emphasised action step — the intake form */
.confirm-step.key {
  background: var(--navy-850); border: 1px solid rgba(195,168,114,0.42);
  border-radius: 10px; padding: 22px 20px; margin: 6px -8px;
}
.confirm-step.key .n { color: var(--gold-400); }
.confirm-step.key .t { color: var(--gold-300); }
.confirm-step .flag {
  display: inline-block; font-family: var(--font-mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--navy-900);
  background: var(--gold-400); border-radius: 3px; padding: 2px 7px;
  margin-left: 10px; vertical-align: middle;
}

.confirm-foot { margin-top: 44px; font-size: .92rem; color: var(--navy-300); }
.confirm-foot a { border-bottom: 1px solid rgba(195,168,114,0.42); padding-bottom: 1px; transition: color .2s ease, border-color .2s ease; }
.confirm-foot a:hover, .confirm-foot a:focus-visible { border-color: var(--gold-400); }
.confirm-foot .brand-line { margin-top: 16px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--navy-300); }
.confirm-foot .tagline { margin-top: 8px; font-family: var(--font-serif); font-style: italic; font-size: .98rem; color: var(--navy-200); letter-spacing: .01em; }

/* entrance motion, disabled under prefers-reduced-motion by the global rule */
@media (prefers-reduced-motion: no-preference) {
  .page-confirm .reveal { opacity: 0; transform: translateY(12px); animation: rise .7s cubic-bezier(.2,0,0,1) forwards; }
  .page-confirm .confirm-logo.reveal { transform: translateY(8px) scale(.99); }
  .page-confirm .confirm-rule { transform: scaleX(0); animation: grow .85s cubic-bezier(.2,0,0,1) forwards .5s; }
  .page-confirm .d0 { animation-delay: .05s; }
  .page-confirm .d1 { animation-delay: .2s; }
  .page-confirm .d2 { animation-delay: .32s; }
  .page-confirm .d3 { animation-delay: .44s; }
  .page-confirm .s1 { animation-delay: .62s; }
  .page-confirm .s2 { animation-delay: .72s; }
  .page-confirm .s3 { animation-delay: .82s; }
  .page-confirm .d-foot { animation-delay: .95s; }
}
@keyframes rise { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes grow { to { transform: scaleX(1); } }
/* ---------- 404 ---------- */
.error-wrap { max-width: 620px; margin: 0 auto; text-align: center; padding: 120px var(--pad); }
.error-code { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-ink); }
.error-wrap h1 { font-size: clamp(34px, 5vw, 48px); margin: 18px 0 16px; }
.error-wrap p { color: var(--body); font-size: 17px; line-height: 1.7; margin: 0 auto 32px; max-width: 46ch; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-950); color: var(--navy-200); }
.footer-inner { max-width: var(--shell); margin: 0 auto; padding: 72px var(--pad) 44px; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr; gap: 40px; }
.footer-brand .tagline { font-family: var(--font-serif); font-size: 22px; color: var(--ivory); margin: 20px 0 0; line-height: 1.3; }
.footer-h { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 18px; font-weight: 600; }
.footer-brand .footer-h { margin: 26px 0 10px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-social a { color: var(--navy-200); font-size: 14px; transition: color 140ms; }
.footer-links a:hover, .footer-social a:hover { color: var(--gold-300); }
.footer-social { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.footer-social .sep { color: var(--body); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 52px; padding-top: 26px;
  display: flex; justify-content: space-between; gap: 32px;
  font-size: 12.5px; color: var(--navy-300); flex-wrap: wrap; line-height: 1.6;
}
.footer-legal span:last-child { max-width: 760px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .ask-grid { grid-template-columns: 1fr; }
  .split-sticky { grid-template-columns: 1fr !important; gap: 40px !important; }
  .split-sticky > div:first-child { position: static !important; }
}

/* Hero headline on phones/small tablets.
   Hands off exactly at the breakpoint: at 700px this clamp yields 42px, which
   is the same value the desktop rule produces there, so there is no jump.
   Desktop (>700px) is untouched. */
@media (max-width: 700px) {
  .h-hero { font-size: clamp(28px, 7.2vw, 42px); }
  .h-hero .nw { white-space: normal; }
}

@media (max-width: 900px) {
  :root { --pad: 22px; }
  .nav-toggle { display: inline-flex; }
  .header-inner { flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; min-height: 0; gap: 12px; }
  .site-nav {
    display: none; order: 3; width: 100%; margin-left: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 8px 0 6px; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .header-cta { order: 4; width: 100%; height: 44px; }
  .section, .section-sm { padding-top: 68px; padding-bottom: 68px; }
  .legal-layout { flex-direction: column; padding-bottom: 68px; }
  .legal-nav { position: static; width: 100%; flex-direction: row; flex-wrap: wrap; }
  .legal-nav a { border: 1px solid var(--line-grey); background: var(--white); }
  .legal-doc { padding: 32px 24px; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .trust-bar { margin-top: 56px; }
  .trust-item { border-left: none; border-top: 1px solid var(--line-soft); }
  .trust-item:first-child { border-top: none; }
  .step-col { border-left: none; border-top: 1px solid var(--line-soft); }
  .step-col:first-child { border-top: none; }
  .coach-grid.browse { grid-template-columns: 1fr; }
  .cta-inline { padding: 28px 24px; }
  .footer-legal { flex-direction: column; gap: 14px; }
}

@media (max-width: 620px) {
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .brand-word { font-size: 14px; letter-spacing: 0.24em; }
  .coach-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .error-actions .btn, .hero-actions .btn { width: 100%; }
  .book-card { padding: 24px; }
  .ask-panel { padding: 26px 22px; }
  .faq-a p { padding-right: 4px; }
  .confirm-step.key { margin: 6px 0; }
  .legal-doc { padding: 26px 18px; }
}
