/* ===== Self-hosted fonts (no third-party requests) ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-400-italic.woff2') format('woff2');
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F8F5EF;
  --bg-card: #FDFAF3;
  --bg-elevated: #F2EDE3;
  --ink: #1F1C17;
  --ink-soft: #4A453E;
  --stone: #8C857A;
  --stone-light: #B8B0A2;
  --accent: #2E4732;
  --accent-hover: #1F3623;
  --accent-soft: #E5EBE6;
  --line: rgba(31, 28, 23, 0.10);
  --line-soft: rgba(31, 28, 23, 0.06);
  --line-strong: rgba(31, 28, 23, 0.18);

  --font-serif: 'Instrument Serif', 'Iowan Old Style', Palatino, Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', Menlo, monospace;

  /* Type scale - fixed sizes for desktop (overridden on mobile) */
  --fs-h1: 64px;
  --fs-h2: 40px;
  --fs-h3: 22px;
  --fs-lede: 17px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 13px;
  --fs-eyebrow: 12px;

  /* Spacing scale - three tiers, three values each */
  /* TIGHT - within a pair (label+heading, heading+subhead) */
  --sp-tight-1: 4px;
  --sp-tight-2: 8px;
  --sp-tight-3: 12px;
  /* NORMAL - between elements in a group */
  --sp-1: 16px;
  --sp-2: 24px;
  --sp-3: 32px;
  /* LOOSE - between groups, between cards */
  --sp-loose-1: 48px;
  --sp-loose-2: 64px;
  --sp-loose-3: 96px;
  /* SECTION - between major sections */
  --sp-section: 128px;

  --max-w: 1240px;
  --content-w: 920px;
  --reading-w: 680px;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ===== Typography utilities ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}

p { color: var(--ink-soft); }

/* ===== Site shell ===== */
.shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--line);
}
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-loose-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}
.logo-place {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.site-nav .nav-link {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 8px 4px;
  position: relative;
  letter-spacing: 0;
  font-weight: 400;
  transition: color 0.18s ease, box-shadow 0.18s ease;
}
.site-nav .nav-link:hover { color: var(--ink); }
.site-nav .nav-link.active {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 0 var(--accent);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(0) rotate(225deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -16px;
  min-width: 240px;
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: 0 8px 24px rgba(31, 28, 23, 0.06), 0 2px 8px rgba(31, 28, 23, 0.04);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu button:hover {
  background: var(--bg-elevated);
  color: var(--accent);
}
.nav-dropdown-menu button .dropdown-meta {
  display: block;
  font-size: 13px;
  color: var(--stone);
  margin-top: 2px;
  font-weight: 400;
}

/* Burger menu (mobile) */
.burger-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
}
.burger-trigger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 28, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 1000;
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: var(--bg);
  border-left: 0.5px solid var(--line);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0.24, 1);
  display: flex;
  flex-direction: column;
  padding: var(--sp-2);
  box-shadow: -8px 0 32px rgba(31, 28, 23, 0.12);
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-tight-3) var(--sp-1) var(--sp-2);
  border-bottom: 0.5px solid var(--line);
  margin-bottom: var(--sp-2);
}
.mobile-drawer-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.mobile-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.mobile-drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-drawer-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-drawer-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-drawer-nav > button {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2) var(--sp-1);
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--ink);
  text-align: left;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
  font-weight: 400;
}
.mobile-drawer-nav > button:hover,
.mobile-drawer-nav > button:active {
  background: var(--bg-elevated);
  color: var(--accent);
}
.mobile-drawer-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: var(--sp-tight-2) 0;
}
.mobile-drawer-group-label {
  padding: var(--sp-tight-3) var(--sp-1) var(--sp-tight-2);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.mobile-drawer-sublink {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-tight-3) var(--sp-1) var(--sp-tight-3) var(--sp-2);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-soft);
  text-align: left;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
  font-weight: 400;
}
.mobile-drawer-sublink:hover,
.mobile-drawer-sublink:active {
  background: var(--bg-elevated);
  color: var(--accent);
}
.mobile-drawer-cta {
  padding: var(--sp-2) var(--sp-1) var(--sp-1);
  border-top: 0.5px solid var(--line);
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-tight-3);
  align-items: center;
}
.mobile-drawer-friction {
  font-size: 12px;
  color: var(--stone);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-tight-3) var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 1px 2px rgba(46, 71, 50, 0.15);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 71, 50, 0.2), 0 2px 4px rgba(46, 71, 50, 0.12);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(46, 71, 50, 0.15);
}
.btn:disabled,
.btn[disabled] {
  background: var(--bg-elevated);
  color: var(--stone);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
  opacity: 0.7;
}
.btn-primary:disabled,
.btn-primary[disabled] {
  background: var(--bg-elevated);
  color: var(--stone);
}
.btn-large {
  padding: 14px 64px;
  font-size: 15px;
  font-weight: 500;
}
.btn-text {
  background: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  border-radius: 0;
  padding: 4px 0;
}
.btn-text:hover { background: none; color: var(--accent); }

/* ===== Page system ===== */
.page { display: none; }
.page.active { display: block; }
main { flex: 1; }

/* ===== Sections ===== */
section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-loose-1);
}
.section-pad-lg { padding-top: var(--sp-section); padding-bottom: var(--sp-section); }
.section-pad-md { padding-top: var(--sp-loose-3); padding-bottom: var(--sp-loose-3); }
.section-pad-sm { padding-top: var(--sp-loose-2); padding-bottom: var(--sp-loose-2); }

/* Full-bleed sections (with their own background colour) */
.section-bleed {
  background: var(--bg-elevated);
  margin: 0;
  max-width: none;
  padding-left: var(--sp-loose-1);
  padding-right: var(--sp-loose-1);
}
.section-bleed-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-divider {
  border-top: 0.5px solid var(--line);
}

/* ===== Hero ===== */
.hero {
  padding-top: var(--sp-loose-3);
  padding-bottom: var(--sp-section);
}
.hero .social-proof-strip {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--sp-tight-3);
  white-space: nowrap;
}
.hero .social-proof-strip span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stone-light);
  margin: 0 var(--sp-tight-2) 2px var(--sp-tight-3);
  vertical-align: middle;
}
.hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.05;
  margin-bottom: var(--sp-2);
  max-width: 14em;
  letter-spacing: -0.02em;
}
.hero .subhead {
  font-family: var(--font-sans);
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 38em;
  margin-bottom: var(--sp-loose-1);
  font-weight: 400;
}
.hero .cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-tight-3);
}
.hero .cta-row .btn { margin: 0; }
.hero .friction {
  font-size: 13px;
  color: var(--stone);
}

/* Left + portrait variant */
.hero-a {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-loose-2);
  align-items: center;
}
.hero-a > div:first-child {
  max-width: 620px;
}
.hero-a h1 {
  max-width: 14em;
}
.hero-a .subhead {
  max-width: 28em;
}
.hero-a .hero-portrait {
  max-width: 440px;
  justify-self: end;
  width: 100%;
}

/* Tablet - side-by-side cramps below ~1100px, switch to stacked (still left-aligned) */
@media (max-width: 1100px) {
  .hero-a {
    grid-template-columns: 1fr;
    gap: var(--sp-loose-1);
  }
  .hero-a > div:first-child {
    max-width: 640px;
  }
  .hero-a h1 {
    max-width: 16em;
  }
  .hero-a .subhead {
    max-width: 36em;
  }
  .hero-a .hero-portrait {
    max-width: 420px;
    width: 100%;
    justify-self: start;
    aspect-ratio: 4/3;
    max-height: 360px;
  }
  .testimonials-grid-three { grid-template-columns: repeat(2, 1fr); }
}

.hero-portrait {
  aspect-ratio: 4/5;
  background: #C8C0AB url('/assets/denise.jpg') center / cover no-repeat;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

/* ===== Section heads ===== */
.section-head {
  margin-bottom: var(--sp-loose-1);
  max-width: 720px;
}
.section-head .eyebrow {
  margin-bottom: var(--sp-tight-3);
  display: block;
}
.section-head h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-1);
  letter-spacing: -0.02em;
}
.section-head .lede {
  font-family: var(--font-sans);
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 60ch;
  font-weight: 400;
}

/* ===== Service cards (Who I work with) ===== */
.services-intro {
  font-family: var(--font-sans);
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 60ch;
  line-height: 1.6;
  font-weight: 400;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-1);
}
.service-card {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  text-align: left;
  font-family: inherit;
  color: inherit;
  width: 100%;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-card .service-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--sp-1);
}
.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-tight-3);
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
  flex: 1;
}
.service-card .who-it-suits {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  color: var(--stone);
  line-height: 1.55;
  margin-bottom: var(--sp-2);
  padding-top: var(--sp-1);
  border-top: 0.5px solid var(--line);
}
.service-card .who-it-suits strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: var(--sp-tight-1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-eyebrow);
}
.service-card .arrow {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent);
  margin-top: auto;
  align-self: flex-start;
  transition: transform 0.2s ease;
}
.service-card:hover .arrow {
  transform: translateX(4px);
}

/* ===== Approach + how it works (interleaved) ===== */
.approach-section {
  background: var(--bg-elevated);
  margin: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.approach-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-loose-1);
}
/* Process - 2x2 grid */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  align-items: start;
}
.process-step .step-number {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.process-step h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-tight-3);
  letter-spacing: -0.02em;
}
.process-step .step-body p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ===== About teaser ===== */
.about-teaser {
  max-width: 720px;
}
.about-teaser h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.about-teaser p {
  font-size: var(--fs-body);
  line-height: 1.65;
  margin-bottom: var(--sp-1);
}
.about-teaser .name-line {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--sp-tight-3);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
.testimonials-grid-three {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  padding: var(--sp-loose-1) var(--sp-3);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  flex: 1;
  letter-spacing: -0.005em;
}
.testimonial blockquote::before {
  content: '"';
  font-size: 44px;
  line-height: 0;
  color: var(--accent);
  margin-right: var(--sp-tight-1);
  vertical-align: -8px;
}
.testimonial-context {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border-top: 0.5px solid var(--line);
  padding-top: var(--sp-1);
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--accent);
  color: var(--bg);
  padding: var(--sp-loose-3) var(--sp-loose-1);
  text-align: center;
  margin: 0 auto var(--sp-loose-3);
  max-width: none;
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: var(--fs-h1);
  color: var(--bg);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.final-cta p {
  font-family: var(--font-sans);
  font-size: var(--fs-lede);
  color: rgba(248, 245, 239, 0.78);
  margin-bottom: var(--sp-loose-1);
  line-height: 1.5;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.final-cta .btn-primary {
  background: var(--bg);
  color: var(--accent);
}
.final-cta .btn-primary:hover {
  background: var(--bg-card);
}
.final-cta .friction {
  margin-top: var(--sp-1);
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.5);
}

/* ===== Inner page hero (for non-home pages) ===== */
.page-hero {
  padding-top: var(--sp-loose-3);
  padding-bottom: var(--sp-loose-2);
  border-bottom: 0.5px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: var(--sp-tight-3); display: block; }
.page-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-2);
  max-width: 24ch;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero .subhead {
  font-family: var(--font-sans);
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}

/* ===== Service page specific ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-loose-2);
  margin-bottom: var(--sp-loose-2);
}
.service-detail h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.service-detail h3 {
  font-size: 20px;
  margin-bottom: var(--sp-1);
  margin-top: var(--sp-2);
}
.service-detail p {
  font-size: var(--fs-body);
  line-height: 1.65;
  margin-bottom: var(--sp-1);
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--sp-2);
}
.service-detail ul li {
  position: relative;
  padding-left: var(--sp-2);
  margin-bottom: var(--sp-tight-3);
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.6;
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.fit-block {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  padding: var(--sp-3);
  margin: var(--sp-loose-2) 0;
}
.fit-block h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.fit-stances {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-1);
}
.fit-stance {
  padding: var(--sp-2);
  background: var(--bg);
  border: 0.5px solid var(--line);
  border-radius: 4px;
}
.fit-stance strong {
  display: block;
  font-weight: 500;
  font-size: var(--fs-body);
  margin-bottom: var(--sp-tight-1);
  color: var(--ink);
}
.fit-stance span {
  font-size: var(--fs-body-sm);
  color: var(--stone);
}

.session-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-loose-1);
  padding: var(--sp-3);
  background: var(--bg-elevated);
  border-radius: 6px;
}
.session-detail-item .eyebrow { margin-bottom: var(--sp-tight-2); display: block; }
.session-detail-item .value {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.session-detail-item .meta {
  font-size: var(--fs-caption);
  color: var(--stone);
  margin-top: var(--sp-tight-1);
}

/* Specialism deep-dives (Individual page) */
.specialism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.specialism {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  padding: var(--sp-3);
}
.specialism h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-tight-3);
  letter-spacing: -0.02em;
}
.specialism p {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ===== About page ===== */
/* About page two-column layout */
.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: var(--sp-loose-3);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about-page-content {
  max-width: 580px;
}
.about-page-content > * + * { margin-top: var(--sp-2); }
.about-page-content h2 {
  font-size: 28px;
  margin-top: var(--sp-loose-1) !important;
  margin-bottom: var(--sp-tight-2);
  letter-spacing: -0.015em;
}
.about-page-content h2:first-child { margin-top: 0 !important; }
.about-page-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.about-page-content .pull-quote {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: var(--sp-2);
  margin: var(--sp-loose-1) 0;
  letter-spacing: -0.01em;
}

.about-page-portrait {
  position: sticky;
  top: 100px;
}
.about-portrait-image {
  aspect-ratio: 4/5;
  background: #B8AE93 url('/assets/denise.jpg') center / cover no-repeat;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.about-portrait-caption {
  margin-top: var(--sp-tight-3);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--stone);
  text-align: right;
  font-style: italic;
}

.credentials-inline {
  margin-top: var(--sp-loose-2) !important;
  padding-top: var(--sp-3);
  border-top: 0.5px solid var(--line);
}
.credentials-inline h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-2);
}
.credentials-inline ul {
  list-style: none;
  padding: 0;
}
.credentials-inline li {
  padding: var(--sp-tight-3) 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 0.5px solid var(--line-soft);
}
.credentials-inline li:last-child { border-bottom: none; }
.credentials-inline li strong {
  color: var(--ink);
  font-weight: 500;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--sp-loose-2);
}
.contact-info h3 {
  font-size: 22px;
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-loose-1);
  letter-spacing: -0.015em;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p {
  font-size: var(--fs-body);
  line-height: 1.65;
  margin-bottom: var(--sp-1);
  color: var(--ink-soft);
}
.contact-info a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.contact-flow {
  list-style: none;
  padding: 0;
  margin-top: var(--sp-2);
  counter-reset: flow;
}
.contact-flow li {
  counter-increment: flow;
  padding: var(--sp-1) 0 var(--sp-1) 50px;
  position: relative;
  border-bottom: 0.5px solid var(--line);
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-flow li:last-child { border-bottom: none; }
.contact-flow li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--sp-1);
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
}

/* ===== Form progress bar ===== */
.form-progress {
  margin: calc(var(--sp-3) * -1) calc(var(--sp-3) * -1) var(--sp-3);
  padding: 0;
}
.form-progress-bar {
  height: 3px;
  background: var(--line);
  border-radius: 0 0 0 0;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.form-progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.32, 0.72, 0.24, 1);
}

/* Booking form wrapper - centred single column */
.booking-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.booking-form {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 8px;
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.form-step {
  display: none;
  flex: 1;
  flex-direction: column;
  animation: fadeIn 0.25s ease;
}
.form-step.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step-head {
  margin-bottom: var(--sp-2);
}
.form-step-meta {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--sp-tight-3);
}
.form-step-head h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: var(--sp-tight-2);
  color: var(--ink);
}
.form-help {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
}

.option-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-tight-3);
}
.option-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: var(--sp-2);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--sp-tight-1);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.option-card:hover {
  border-color: var(--accent);
  background: var(--bg-card);
}
.option-card:active {
  transform: scale(0.99);
}
.option-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.option-card .option-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.option-card .option-meta {
  font-size: 13px;
  color: var(--stone);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-tight-2);
  margin-bottom: var(--sp-2);
}
.chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: var(--sp-tight-3) var(--sp-2);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.chip.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-tight-2);
}
.form-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.form-input {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: var(--sp-tight-3) var(--sp-1);
  transition: border-color 0.15s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: var(--sp-tight-3) var(--sp-1);
  transition: border-color 0.15s ease;
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
  width: 100%;
}
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-label-meta {
  color: var(--stone);
  font-weight: 400;
  margin-left: var(--sp-tight-1);
}
.form-required {
  color: #b43c32;
  font-weight: 500;
  margin-left: var(--sp-tight-1);
}

/* Inline form error */
.form-error {
  color: #b43c32;
  font-size: 13px;
  line-height: 1.5;
  margin-top: var(--sp-1);
  padding: var(--sp-tight-3) var(--sp-1);
  background: rgba(180, 60, 50, 0.06);
  border-left: 2px solid #b43c32;
  border-radius: 0 4px 4px 0;
}

/* Preferred contact method radio */
.contact-pref {
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-2);
  border-bottom: 0.5px solid var(--line);
}
.contact-pref .form-label {
  display: block;
  margin-bottom: var(--sp-tight-3);
}
.radio-row {
  display: flex;
  gap: var(--sp-tight-3);
}
.radio-option {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-tight-2);
  padding: var(--sp-tight-3) var(--sp-2);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.15s ease;
  flex: 0 0 auto;
}
.radio-option:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.radio-option input[type="radio"]:checked {
  border-color: var(--accent);
}
.radio-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.radio-option:has(input[type="radio"]:checked) {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink);
}

.qualifier-textarea-wrap {
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-tight-2);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--sp-2);
  gap: var(--sp-1);
}
.form-nav-back-only {
  justify-content: flex-start;
  margin-top: var(--sp-2);
}
.btn-back {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--stone);
  cursor: pointer;
  padding: var(--sp-tight-3) 0;
  transition: color 0.15s ease;
}
.btn-back:hover { color: var(--ink); }
.btn-back::before {
  content: '←';
  margin-right: var(--sp-tight-2);
}

.calendly-placeholder {
  background: var(--bg-elevated);
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  padding: var(--sp-3);
  margin-bottom: var(--sp-2);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calendly-placeholder .eyebrow {
  margin-bottom: var(--sp-tight-3);
  display: block;
  color: var(--accent);
}
.calendly-placeholder p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: var(--sp-tight-3);
}
.calendly-placeholder .placeholder-meta {
  font-size: 12px;
  color: var(--stone);
}
.calendly-placeholder code {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11px;
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Other ways block - small inline */
.other-ways {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.other-ways p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: var(--sp-tight-2);
}
.other-ways a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.other-ways .other-ways-meta {
  font-size: 13px;
  color: var(--stone);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: var(--reading-w);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 0.5px solid var(--line);
}
.faq-item summary {
  padding: var(--sp-2) 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent);
  margin-left: var(--sp-2);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  padding: 0 0 var(--sp-2) 0;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: var(--sp-loose-2) var(--sp-loose-1) var(--sp-3);
  margin-top: auto;
}
.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-loose-1);
  margin-bottom: var(--sp-loose-1);
  padding-bottom: var(--sp-loose-1);
  border-bottom: 0.5px solid rgba(248, 245, 239, 0.12);
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--bg);
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-tight-3);
}
.footer-brand p {
  font-family: var(--font-sans);
  color: rgba(248, 245, 239, 0.6);
  font-size: var(--fs-body-sm);
  max-width: 32ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.5);
  margin-bottom: var(--sp-1);
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li { margin-bottom: var(--sp-tight-3); }
.footer-col ul button {
  background: none;
  border: none;
  color: rgba(248, 245, 239, 0.85);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.footer-col ul button:hover { color: var(--bg); }

.footer-bacp {
  display: inline-block;
  background: var(--bg);
  padding: 12px 16px;
  border-radius: 4px;
  transition: opacity 0.15s ease;
  max-width: 200px;
}
.footer-bacp:hover { opacity: 0.85; }
.footer-bacp img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-1);
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.5);
  font-weight: 500;
}
.footer-bottom a {
  color: rgba(248, 245, 239, 0.5);
  text-decoration: none;
  margin-left: var(--sp-2);
}
.footer-bottom a:hover { color: var(--bg); }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  :root {
    --fs-h1: 40px;
    --fs-h2: 30px;
    --fs-h3: 20px;
    --fs-lede: 16px;
  }
  .site-header-inner { padding: var(--sp-tight-3) var(--sp-2); }
  .site-nav { display: none; }
  .burger-trigger { display: flex; }
  .logo-name { font-size: 17px; }
  .logo-place { font-size: 10px; letter-spacing: 0.12em; }
  .hero .social-proof-strip { font-size: 12px; letter-spacing: 0.04em; white-space: normal; line-height: 1.5; }
  .hero .social-proof-strip span { white-space: nowrap; }
  .hero .social-proof-strip span:not(:last-child)::after { content: ''; display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--stone-light); margin: 0 var(--sp-tight-2) 2px var(--sp-tight-3); vertical-align: middle; }
  section { padding: 0 var(--sp-2); }
  .section-pad-lg { padding-top: var(--sp-loose-2); padding-bottom: var(--sp-loose-2); }
  .section-pad-md { padding-top: var(--sp-loose-2); padding-bottom: var(--sp-loose-2); }
  .hero { padding-top: var(--sp-loose-2); padding-bottom: var(--sp-loose-2); }
  .hero-a { grid-template-columns: 1fr; gap: var(--sp-loose-1); }
  .hero-a > div:first-child { max-width: none; }
  .hero-a h1 { max-width: none; }
  .hero-a .subhead { max-width: none; }
  .hero-a .hero-portrait { max-width: none; justify-self: stretch; }
  .hero-portrait { max-height: none; aspect-ratio: auto; min-height: 540px; height: 75vh; max-height: 700px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: var(--sp-1); }
  .process-step {
    grid-template-columns: 64px 1fr;
    gap: var(--sp-1);
    padding: var(--sp-2);
  }
  .process-step .step-number { font-size: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: var(--sp-3); }
  .specialism-grid { grid-template-columns: 1fr; gap: var(--sp-1); }
  .session-details { grid-template-columns: 1fr; gap: var(--sp-1); padding: var(--sp-2); }
  .fit-stances { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-loose-1); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .footer-brand { grid-column: 1 / -1; }
  .about-page-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .about-page-portrait { position: static; order: -1; max-width: 480px; }
  .about-portrait-image { aspect-ratio: 4/3; }
  .about-portrait-caption { text-align: left; }
  .booking-wrapper { max-width: none; }
  .booking-form { padding: var(--sp-2); }
  .form-progress { margin: calc(var(--sp-2) * -1) calc(var(--sp-2) * -1) var(--sp-2); }
  .form-step-head h3 { font-size: 22px; }
  .final-cta { padding: var(--sp-loose-2) var(--sp-2); margin-bottom: var(--sp-loose-2); }
  .section-bleed { padding-left: var(--sp-2); padding-right: var(--sp-2); }
  .approach-inner { padding: 0 var(--sp-2); }
}

/* Small phones - extra tightening for social proof to keep one line */
@media (max-width: 400px) {
  .hero .social-proof-strip { font-size: 12px; letter-spacing: 0.04em; }
}

body.drawer-open { overflow: hidden; }
/* ===== Form additions: honeypot, consent, spinner ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.consent-field {
  margin-top: var(--sp-2);
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-tight-3);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.consent-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent-row a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-row a:hover { color: var(--accent-hover); }

.sending-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-loose-1) 0;
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ===== Calendly inline notice ===== */
.calcom-notice {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: var(--sp-tight-3) var(--sp-2);
  margin-bottom: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.calcom-notice p { margin: 0; }
.calcom-notice a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.calcom-notice a:hover { color: var(--accent-hover); }

#calcom-container {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-card);
}


/* ===== Crisis disclaimer in footer ===== */
.footer-crisis {
  border-top: 1px solid rgba(248, 245, 239, 0.12);
  padding-top: var(--sp-2);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.footer-crisis p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(248, 245, 239, 0.78);
  margin: 0;
}
.footer-crisis a {
  color: rgba(248, 245, 239, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-crisis strong { color: var(--bg); }

/* ===== Footer SPA-aware link buttons ===== */
.footer-link {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  margin-left: var(--sp-tight-3);
}
.footer-link:hover { color: var(--bg); }
.footer-link:first-child { margin-left: 0; }