/* ============================================================
   Precision Psychotherapy — stylesheet
   Concept: "clinical warmth" — scientific precision + human warmth
   ============================================================ */

:root {
  /* palette */
  --paper:      #F4F1E8;   /* warm ivory */
  --paper-2:    #EFEADD;   /* deeper card */
  --paper-3:    #E7E0CF;   /* hairline fills */
  --ink:        #14282B;   /* deep teal charcoal */
  --ink-soft:   #42514F;   /* secondary text */
  --ink-faint:  #6B7875;   /* tertiary */
  --accent:     #2A8B86;   /* blue-green teal */
  --accent-deep:#1A6562;
  --sage:       #7E9690;   /* muted blue-green */
  --sage-soft:  #B6C7C2;
  --line:       rgba(20, 40, 43, 0.14);
  --line-soft:  rgba(20, 40, 43, 0.08);

  /* type */
  --serif: "Spectral", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, monospace;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -0.01em; }

.display {
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.display em { font-style: italic; color: var(--accent); font-weight: 500; }

.h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.02; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); }

.lede {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}
.serif-italic { font-family: var(--serif); font-style: italic; }
.measure { max-width: 62ch; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 2px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn .arrow { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -18px rgba(21,36,29,.6); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--accent { --bg: var(--accent); --fg: var(--paper); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); box-shadow: none; }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand__mark {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-deep);
  border: 1px solid var(--accent); border-radius: 2px;
  padding: 3px 6px; line-height: 1;
}
.brand__word { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.brand__word b { font-weight: 600; }
.brand__word span { color: var(--ink-faint); font-weight: 400; font-style: italic; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; white-space: nowrap;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--accent); transition: width .3s cubic-bezier(.2,.8,.2,1);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 120px); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px; padding: 7px 14px 7px 12px;
  margin-bottom: 26px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
  position: relative; flex: none;
}
.dot--live { background: #3FA372; }
.dot--live::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid #3FA372; opacity: .6;
  animation: ping 2.4s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping { 0% { transform: scale(.6); opacity:.7;} 80%,100% { transform: scale(1.8); opacity: 0; } }

.hero__title { margin-bottom: 26px; }
.hero__title .line { display: block; }
.hero__lede { margin-bottom: 34px; }
.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero__metaItem .k { font-family: var(--serif); font-size: 28px; font-weight: 600; display:block; line-height: 1; }
.hero__metaItem .v { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; display:block; }

/* hero visual: regulation waveform card */
.hero__visual { position: relative; }
.waveCard {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 30px 30px 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(21,36,29,.8);
}
.waveCard__label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,241,232,.55); margin-bottom: 6px;
}
.waveCard__svg { width: 100%; height: auto; display: block; }
.waveCard__foot {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(244,241,232,.45); margin-top: 4px;
}
.waveCard__tag {
  position: absolute; right: 24px; top: 50%;
  font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--accent);
}

/* faint grid backdrop */
.gridlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 75%);
}

/* ---------- belief / difference strip ---------- */
.belief { background: var(--ink); color: var(--paper); }
.belief .eyebrow { color: var(--accent); }
.belief__statement {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.18; letter-spacing: -0.01em;
  max-width: 24ch;
}
.belief__statement b { font-weight: 600; }
.belief__statement .hl { color: var(--accent); font-style: italic; }
.belief__grid { display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.belief__contrast { display: grid; gap: 18px; }
.contrastRow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch;
  border-top: 1px solid rgba(244,241,232,.16); padding-top: 18px;
}
.contrastRow:last-child { border-bottom: 1px solid rgba(244,241,232,.16); padding-bottom: 18px; }
.contrastCell .t { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.contrastCell--old .t { color: rgba(244,241,232,.4); }
.contrastCell--new .t { color: var(--accent); }
.contrastCell p { font-size: 15.5px; color: rgba(244,241,232,.82); }
.contrastCell--old p { color: rgba(244,241,232,.45); text-decoration: line-through; text-decoration-color: rgba(244,241,232,.25); }

/* ---------- approach pillars ---------- */
.sectionHead { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px,4vw,64px); align-items: end; margin-bottom: clamp(40px,5vw,72px); }
.sectionHead__title { }
.sectionHead__note { color: var(--ink-soft); font-size: 17px; max-width: 44ch; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pillar {
  padding: 32px 26px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .35s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--paper-2); }
.pillar__num { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--accent-deep); margin-bottom: 44px; display:block; }
.pillar__title { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 14px; line-height: 1.1; min-height: 2.2em; }
.pillar__body { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- modalities ---------- */
.modalities { background: var(--paper-2); }
.modGrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.modCard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 24px 22px 26px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.modCard:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -30px rgba(21,36,29,.45); border-color: var(--sage); }
.modCard__abbr { font-family: var(--serif); font-size: 34px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.modCard__name { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); margin: 8px 0 14px; }
.modCard__body { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- therapists ---------- */
.team { }
.teamGrid { display: grid; gap: 28px; margin-top: 8px; }
.profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
}
.profile__media { position: relative; }
.profile__photo { width: 100%; height: 400px; }
.profile__status {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 11px 6px 10px;
}
.profile__pricing { margin-top: 16px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.priceRow { display:flex; justify-content: space-between; align-items: baseline; padding: 11px 14px; font-size: 14px; }
.priceRow + .priceRow { border-top: 1px solid var(--line); }
.priceRow .l { color: var(--ink-soft); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.priceRow .r { font-weight: 600; }

.profile__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin-bottom: 4px; }
.profile__name { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 42px); font-weight: 600; line-height: 1; }
.profile__pronoun { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); letter-spacing: .04em; }
.profile__role { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 22px; }
.profile__credline { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 22px; }
.credChip { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 2px; padding: 4px 9px; }
.profile__bio { color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 60ch; }
.profile__bio b { color: var(--ink); font-weight: 600; }
.profile__quote {
  font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.4;
  color: var(--ink); border-left: 2px solid var(--accent); padding-left: 18px; margin: 24px 0;
}
.profile__quote cite { display:block; font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }

.tagRow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px;
  transition: border-color .25s, color .25s;
}
.tag:hover { border-color: var(--sage); color: var(--ink); }
.profile__actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.subhead { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 12px; }

/* ---------- who we help ---------- */
.help { background: var(--ink); color: var(--paper); }
.help .eyebrow { color: var(--accent); }
.help .sectionHead__note { color: rgba(244,241,232,.7); }
.help__title { color: var(--paper); }
.helpGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(244,241,232,.14); border: 1px solid rgba(244,241,232,.14); margin-top: 12px; }
.helpItem {
  background: var(--ink); padding: 22px 22px; display: flex; align-items: baseline; gap: 14px;
  transition: background .3s;
}
.helpItem:hover { background: #1B2E26; }
.helpItem .n { font-family: var(--mono); font-size: 11px; color: var(--accent); flex: none; }
.helpItem .t { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.helpItem .d { display:block; font-family: var(--sans); font-size: 13px; color: rgba(244,241,232,.55); margin-top: 3px; font-weight: 400; }

/* ---------- process + fees ---------- */
.process__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,5vw,72px); align-items: start; }
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); padding-top: 4px; }
.step__title { font-family: var(--serif); font-size: 23px; font-weight: 600; margin-bottom: 7px; }
.step__body { color: var(--ink-soft); font-size: 15.5px; max-width: 46ch; }

.feeCard { background: var(--ink); color: var(--paper); border-radius: 4px; padding: 32px 30px; position: sticky; top: 96px; }
.feeCard__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.feeCard__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.feeCard__price .num { font-family: var(--serif); font-size: 62px; font-weight: 600; line-height: 1; }
.feeCard__price .per { font-family: var(--mono); font-size: 12px; color: rgba(244,241,232,.6); letter-spacing: .06em; }
.feeCard__sub { color: rgba(244,241,232,.62); font-size: 14.5px; margin-bottom: 24px; }
.feeList { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 0; }
.feeList li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; padding: 12px 0; border-top: 1px solid rgba(244,241,232,.14); color: rgba(244,241,232,.9); }
.feeList li .tick { color: var(--accent); flex: none; font-family: var(--mono); }

/* ---------- closing CTA ---------- */
.closing { text-align: center; position: relative; overflow: hidden; }
.closing__mantra {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 6vw, 76px); line-height: 1.05; letter-spacing: -0.02em;
  max-width: 16ch; margin: 0 auto 16px;
}
.closing__mantra .hl { color: var(--accent); font-style: italic; }
.closing__sub { color: var(--ink-soft); font-size: clamp(18px,2vw,21px); max-width: 48ch; margin: 0 auto 38px; }
.closing__attr { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 36px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(244,241,232,.7); padding-block: clamp(56px,7vw,88px) 32px; }
.footer a { color: rgba(244,241,232,.7); transition: color .2s; }
.footer a:hover { color: var(--paper); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(244,241,232,.14); }
.footer__brand .brand__word { color: var(--paper); }
.footer__brand p { margin-top: 16px; font-size: 14.5px; max-width: 34ch; line-height: 1.6; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,241,232,.5); margin: 0 0 16px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col li { font-size: 14.5px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: rgba(244,241,232,.45); }
.footer__bottom a { text-decoration: none; }
.landack { margin-top: 18px; font-size: 12.5px; color: rgba(244,241,232,.5); max-width: 70ch; line-height: 1.6; font-style: italic; }

/* ---------- flowchart ---------- */
.flowchart { --fc-line: rgba(21,36,29,.24); max-width: 720px; margin: clamp(40px,5vw,64px) auto 0; display: flex; flex-direction: column; align-items: center; }
.fc-box { width: 100%; background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: 24px 26px; text-align: center; }
.fc-box--start { background: var(--paper); }
.fc-box--final { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.fc-step { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); display: block; margin-bottom: 9px; }
.fc-box--final .fc-step { color: var(--accent); }
.fc-title { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.18; display: block; }
.fc-box--final .fc-title { font-size: clamp(20px,2.4vw,26px); max-width: 26ch; margin: 0 auto; }
.fc-sub { font-size: 14px; color: var(--ink-soft); margin: 9px auto 0; display: block; line-height: 1.5; max-width: 46ch; }
.fc-choice { display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.fc-pill { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); border-radius: 100px; padding: 9px 20px; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.fc-pill:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.fc-connect { position: relative; width: 100%; height: 36px; }
.fc-c-stem { position: absolute; left: 50%; top: 0; width: 2px; height: 18px; background: var(--fc-line); transform: translateX(-50%); }
.fc-c-stem--down { top: 18px; }
.fc-c-bar { position: absolute; top: 18px; left: 25%; right: 25%; height: 2px; background: var(--fc-line); }
.fc-c-drop { position: absolute; width: 2px; height: 18px; background: var(--fc-line); }
.fc-connect--split .fc-c-drop { top: 18px; }
.fc-connect--merge .fc-c-drop { top: 0; }
.fc-c-drop--l { left: 25%; }
.fc-c-drop--r { right: 25%; }
.fc-row2 { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fc-row2 .fc-box { display: flex; flex-direction: column; }

/* ---------- fees ---------- */
.fees { background: var(--paper-2); }
.feeGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feeCard2 { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: clamp(26px,3vw,36px); display: flex; flex-direction: column; }
.feeCard2--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.feeCard2__name { font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; }
.feeCard2__role { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin: 10px 0 22px; }
.feeCard2--dark .feeCard2__role { color: rgba(244,241,232,.55); }
.feeCard2__rows { display: flex; flex-direction: column; margin-bottom: 26px; }
.feeRow { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); }
.feeRow span { white-space: nowrap; }
.feeRow b { white-space: nowrap; }
.feeCard2--dark .feeRow { border-color: rgba(244,241,232,.16); color: rgba(244,241,232,.78); }
.feeRow b { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); }
.feeCard2--dark .feeRow b { color: var(--paper); }
.feeCard2 .btn { margin-top: auto; }
.feeFacts { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin-top: 20px; }
.feeFact { background: var(--paper); padding: 18px 20px; font-size: 14px; color: var(--ink-soft); }
.feeFact .arrow { color: var(--accent); font-family: var(--mono); margin-right: 6px; }

/* ---------- booking modal ---------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,24,20,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal.is-open .modal__backdrop { animation: modalFade .28s ease both; }
.modal__panel { position: relative; width: 100%; max-width: 540px; background: var(--paper); border-radius: 6px; padding: clamp(28px,4vw,44px); box-shadow: 0 50px 90px -40px rgba(15,24,20,.7); }
.modal.is-open .modal__panel { animation: modalIn .32s cubic-bezier(.2,.8,.2,1) both; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink-faint); cursor: pointer; padding: 6px; transition: color .2s; }
.modal__close:hover { color: var(--ink); }
.modal__title { font-family: var(--serif); font-size: clamp(26px,3.4vw,34px); font-weight: 600; line-height: 1.05; margin: 16px 0 10px; letter-spacing: -.01em; }
.modal__sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 24px; max-width: 42ch; }
.modal__choices { display: grid; gap: 14px; }
.chooseCard { display: flex; flex-direction: column; gap: 7px; border: 1px solid var(--line); border-radius: 4px; padding: 20px 22px; cursor: pointer; transition: border-color .25s, transform .25s, box-shadow .25s; background: var(--paper-2); }
.chooseCard:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 18px 36px -26px rgba(15,24,20,.5); }
.chooseCard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.chooseCard__name { font-family: var(--serif); font-size: 21px; font-weight: 600; white-space: nowrap; }
.chooseCard__badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.chooseCard__role { font-size: 13.5px; color: var(--ink-soft); }
.chooseCard__cta { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; }
.chooseCard__cta .arrow { transition: transform .3s; }
.chooseCard:hover .chooseCard__cta .arrow { transform: translateX(4px); }
.modal__foot { margin-top: 22px; font-size: 13.5px; color: var(--ink-faint); text-align: center; }
.modal__foot a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
  .modGrid { grid-template-columns: repeat(3, 1fr); }
  .belief__grid, .process__grid { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 240px 1fr; }
  .helpGrid { grid-template-columns: repeat(2, 1fr); }
  .feeCard { position: static; }
  .profile__photo { height: 300px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .feeGrid { grid-template-columns: 1fr; }
  .feeFacts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .sectionHead { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .modGrid { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile__media { max-width: 280px; }
  .profile__photo { height: 340px; }
  .helpGrid { grid-template-columns: 1fr; }
  .contrastRow { grid-template-columns: 1fr; gap: 12px; }
  .hero__meta { gap: 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .feeFacts { grid-template-columns: 1fr; }
  .fc-row2 { grid-template-columns: 1fr; gap: 0; }
  .fc-connect--split .fc-c-bar, .fc-connect--split .fc-c-drop,
  .fc-connect--merge .fc-c-bar, .fc-connect--merge .fc-c-drop { display: none; }
  .fc-connect .fc-c-stem { height: 100%; top: 0; }
  .fc-row2 .fc-box + .fc-box { margin-top: 36px; position: relative; }
  .fc-row2 .fc-box + .fc-box::before { content: ""; position: absolute; top: -36px; left: 50%; width: 2px; height: 36px; background: var(--fc-line); transform: translateX(-50%); }
}

/* ============================================================
   Blog / Insights page
   ============================================================ */
.blogHero { padding-top: clamp(40px,6vw,72px); padding-bottom: clamp(32px,4vw,56px); }
.blogHero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px,4vw,56px); align-items: end; }
.blogHero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(40px,6vw,78px); line-height: .98; letter-spacing: -.025em; }
.blogHero__title em { font-style: italic; color: var(--accent); }
.blogHero__note { color: var(--ink-soft); font-size: 17px; max-width: 42ch; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(32px,4vw,48px); }
.chip { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); background: var(--paper-2); border: 1px solid var(--line); border-radius: 100px; padding: 8px 15px; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; margin-top: 8px; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; background: var(--paper-2); }
.featured__media { min-height: 360px; position: relative; }
.featured__media image-slot { width: 100%; height: 100%; min-height: 360px; }
.featured__body { padding: clamp(28px,4vw,48px); display: flex; flex-direction: column; justify-content: center; }
.featured__flag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); display: inline-flex; gap: 10px; align-items: center; }
.featured__title { font-family: var(--serif); font-size: clamp(28px,3.2vw,42px); font-weight: 600; line-height: 1.06; margin: 16px 0; letter-spacing: -.015em; }
.featured__excerpt { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-bottom: 24px; max-width: 48ch; }
.postMeta { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); display: flex; gap: 16px; flex-wrap: wrap; }

.postGrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: clamp(40px,5vw,64px); }
.postCard { display: flex; flex-direction: column; border-top: 2px solid var(--ink); padding-top: 20px; cursor: pointer; transition: border-color .25s; }
.postCard:hover { border-color: var(--accent); }
.postCard__tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep); }
.postCard__title { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.15; margin: 12px 0; transition: color .2s; }
.postCard:hover .postCard__title { color: var(--accent-deep); }
.postCard__excerpt { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 18px; flex: 1; }
.postCard__foot { margin-top: auto; }
.postCard.is-hidden { display: none; }

.subscribe { background: var(--ink); color: var(--paper); border-radius: 5px; padding: clamp(32px,4vw,52px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin-top: clamp(48px,6vw,84px); }
.subscribe h3 { font-family: var(--serif); font-size: clamp(24px,3vw,36px); font-weight: 600; color: var(--paper); max-width: 22ch; line-height: 1.05; }
.subscribe p { color: rgba(244,241,232,.7); margin-top: 12px; max-width: 46ch; }
.subForm { display: flex; gap: 10px; }
.subForm input { font-family: var(--sans); font-size: 15px; padding: 15px 16px; border-radius: 2px; border: 1px solid rgba(244,241,232,.25); background: rgba(244,241,232,.06); color: var(--paper); min-width: 240px; }
.subForm input::placeholder { color: rgba(244,241,232,.5); }
.subForm input:focus { outline: none; border-color: var(--accent); }

@media (max-width: 1000px) {
  .blogHero__grid { grid-template-columns: 1fr; gap: 24px; }
  .featured { grid-template-columns: 1fr; }
  .featured__media, .featured__media image-slot { min-height: 260px; }
  .postGrid { grid-template-columns: repeat(2,1fr); }
  .subscribe { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .postGrid { grid-template-columns: 1fr; }
  .subForm { flex-direction: column; }
  .subForm input { min-width: 0; width: 100%; }
}

/* ============================================================
   Soft edges (brand default)
   ============================================================ */
.btn { border-radius: 11px; }
.brand__mark { border-radius: 6px; }
.modCard, .chooseCard, .feeFacts, .fc-box, .fc-pill { border-radius: 14px; }
.waveCard, .feeCard2, .modal__panel, .featured, .subscribe, .helpGrid { border-radius: 20px; }
.profile { border-radius: 22px; }
.profile__pricing { border-radius: 14px; }
.credChip { border-radius: 8px; }
.subForm input { border-radius: 11px; }
.fc-box--final { border-radius: 16px; }
.modCard { border-radius: 16px; }
