/* ============================================================
   Counseling with Courtney — Editorial Quiet
   Warm cream paper · Cormorant Garamond · Lato · Caveat accent
   ============================================================ */

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

:root {
  /* Paper + ink */
  --paper:        #f6f1e7;
  --paper-deep:   #ebe2d0;
  --paper-alt:    #efe9da;
  --ink:          #232a25;
  --ink-soft:     #4f574f;
  --ink-muted:    #6a6759;

  /* Hairlines */
  --rule:         #d8cdb6;
  --rule-soft:    #e3dccb;

  /* Accents */
  --sage:         #8a9e91;
  --sage-deep:    #5d7367;
  --sage-darker:  #455a4f;
  --terracotta:   #b6755b;
  --terracotta-deep: #98593f;

  /* System */
  --shadow:       0 1px 0 rgba(35, 42, 37, 0.04), 0 14px 30px rgba(35, 42, 37, 0.06);
  --maxw:         1240px;
  --maxw-narrow:  780px;
  --transition:   380ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Subtle paper grain — printed feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.12 0 0 0 0.085 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Cormorant', serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.005em;
}

p { line-height: 1.7; }

.label-sc {
  font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--terracotta-deep);
  text-transform: uppercase;
}

.script {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: var(--terracotta-deep);
  line-height: 1;
}

a { color: var(--sage-darker); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-deep); }

.prose a:not(.btn) {
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  padding-bottom: 1px;
  transition: color var(--transition);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--maxw-narrow); }

.rule { border: 0; border-top: 1px solid var(--rule); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: var(--transition);
}
.btn::after {
  content: '→';
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0;
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.btn:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: var(--paper);
}
.btn:hover::after { transform: translateX(5px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-paper:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: var(--paper);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
  transition: var(--transition);
}
.arrow-link::after {
  content: '→';
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  transition: transform var(--transition);
}
.arrow-link:hover {
  color: var(--terracotta-deep);
  border-bottom-color: var(--terracotta);
}
.arrow-link:hover::after { transform: translateX(5px); }

/* ---------- Header (two-tier: brand band + thin sticky nav) ---------- */
.site-header {
  position: static;
  background: transparent;
  border-bottom: 0;
}

/* TIER 1 — Brand band (non-sticky, scrolls away) */
.brand-band {
  background: var(--paper-deep);
  padding: 6px 0 4px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.brand-band .container {
  display: flex;
  justify-content: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  line-height: 1;
}
.brand-logo:hover { color: var(--ink); }
.brand-logo img {
  height: 200px;
  width: auto;
  display: block;
  flex-shrink: 0;
  /* Compensate for transparent whitespace baked into the logo PNG */
  margin: -48px -14px;
}
.wordmark-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.brand-line .with {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: var(--terracotta);
  font-size: 1.7rem;
  margin: 0 4px;
  letter-spacing: 0;
}
.brand-logo .tag {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* TIER 2 — Thin sticky nav */
.thin-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.94);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  border-bottom: 1px solid var(--rule);
}
.thin-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.thin-nav .nav-list {
  padding: 14px 0;
}

/* ---------- Legacy text-only header (kept for backward compatibility) ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 32px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.005em;
}
.brand:hover { color: var(--ink); }
.brand .with {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: var(--terracotta);
  font-size: 1.55rem;
  margin: 0 4px;
  letter-spacing: 0;
}
.brand .tag {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-list a {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--terracotta);
  transition: right 420ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.nav-list a:hover::after,
.nav-list a.active::after { right: 0; }
.nav-list a.active { color: var(--terracotta-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--terracotta-deep);
  border: 1px solid var(--terracotta);
  padding: 10px 18px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta::after {
  content: '→';
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0;
  font-size: 1rem;
}
.nav-cta:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 96px;
  align-items: end;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--terracotta);
}
.hero-eyebrow .label-sc { color: var(--ink-soft); }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.013em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage-darker);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-signature {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  color: var(--terracotta-deep);
  margin-bottom: 40px;
  display: inline-block;
  line-height: 1;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* ---------- Photo plate ---------- */
.plate {
  position: relative;
  background: var(--paper-alt);
  padding: 14px 14px 60px;
  box-shadow: var(--shadow);
}
.plate-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 25%, rgba(138, 158, 145, 0.28), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(182, 117, 91, 0.22), transparent 55%),
    var(--paper-deep);
  border: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.plate-img::before {
  content: attr(data-label);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-muted);
  font-size: 1rem;
  padding: 8px 16px;
  background: rgba(246, 241, 231, 0.85);
  border: 1px solid var(--rule-soft);
}
.plate-img:has(img) {
  background: var(--paper-deep);
}
.plate-img:has(img)::before { display: none; }
.plate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plate-caption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.plate-caption .label-sc {
  color: var(--ink-muted);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
}
.plate-caption em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.plate-sm {
  max-width: 360px;
}

.plate-wide {
  max-width: 100%;
  margin: 0 auto;
}
.plate-wide .plate-img {
  aspect-ratio: 3 / 2;
}

.plate-section {
  padding: 80px 0;
  background: var(--paper);
}
.plate-section .container { max-width: 1080px; }

/* ---------- Quote chapter break ---------- */
.quote-section {
  padding: 110px 0;
  text-align: center;
  position: relative;
}
.quote-section .container { max-width: 880px; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 0.4;
  color: var(--terracotta);
  display: block;
  margin-bottom: 24px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 40px;
}
.quote-cite {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--ink-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.quote-cite::before, .quote-cite::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--rule);
}

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.section-alt { background: var(--paper-alt); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 36px;
  margin-bottom: 64px;
}
.section-head .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--terracotta);
  line-height: 0.85;
}
.section-head h1,
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
}
.section-head h1 em,
.section-head h2 em { font-style: italic; color: var(--sage-darker); }
.section-head .section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin-top: 14px;
  line-height: 1.6;
}

/* ---------- Teaser pair (asymmetric) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 56px;
}
.teaser {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--ink);
}
.teaser-1 { grid-column: 1 / span 6; }
.teaser-2 { grid-column: 7 / span 6; padding-top: 80px; }
.teaser .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
}
.teaser h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--ink);
}
.teaser p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 8px;
}

/* ---------- CTA chapter break ---------- */
.cta-break {
  background: var(--paper-deep);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-break::before, .cta-break::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--terracotta);
}
.cta-break::before { top: 56px; }
.cta-break::after { bottom: 56px; }
.cta-break h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
}
.cta-break p {
  max-width: 580px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.65;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}
.about-aside {
  position: sticky;
  top: 124px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-credentials {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.about-credentials .label-sc {
  display: block;
  margin-bottom: 16px;
  color: var(--ink-muted);
}
.about-credentials ul { list-style: none; }
.about-credentials li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-credentials li::before {
  content: '·';
  color: var(--terracotta);
  font-size: 1.6rem;
  line-height: 0;
}
.about-credentials li:last-child { border-bottom: 0; }

.prose {
  font-family: 'Lato', sans-serif;
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--ink-soft);
}
.prose p { margin-bottom: 1.4em; }
.prose h2, .prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--ink);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.prose h3 {
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sage-darker);
  font-weight: 400;
}
.prose em { font-style: italic; color: var(--ink); }
.prose strong { font-weight: 600; color: var(--ink); }

.dropcap > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  float: left;
  font-size: 5.6rem;
  line-height: 0.86;
  padding: 8px 16px 0 0;
  color: var(--terracotta-deep);
}

.signature-block {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.signature-block .script {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  color: var(--terracotta-deep);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.signature-block .label-sc {
  color: var(--ink-muted);
}

/* ---------- Specialties ---------- */
.specialties-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.specialty {
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.specialty:nth-child(odd) {
  border-right: 1px solid var(--rule);
  padding-right: 48px;
}
.specialty:nth-child(even) {
  padding-left: 48px;
}
.specialty .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: block;
}
.specialty h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 12px;
  line-height: 1.15;
}
.specialty p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- Modalities ---------- */
.modalities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
}
.modality {
  border-top: 1px solid var(--ink);
  padding-top: 32px;
}
.modality .label-sc {
  display: block;
  margin-bottom: 16px;
}
.modality h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.65rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.modality p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---------- Fees ledger ---------- */
.fees-ledger {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 56px 0;
}
.fee-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 6px;
  border-bottom: 1px solid var(--rule);
}
.fee-row:last-child { border-bottom: 0; }
.fee-row .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
}
.fee-row .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.fee-row .label small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.fee-row .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--terracotta-deep);
}

/* ---------- Note block (insurance) ---------- */
.note-block {
  background: var(--paper-deep);
  padding: 40px 44px;
  margin: 64px 0 24px;
  border-left: 2px solid var(--terracotta);
  position: relative;
}
.note-block .label-sc {
  display: block;
  margin-bottom: 14px;
}
.note-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.note-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}

.contact-list {
  list-style: none;
  border-top: 1px solid var(--ink);
}
.contact-list li {
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-list .label-sc {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-muted);
}
.contact-list .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.contact-list .value a { color: var(--ink); }
.contact-list .value a:hover { color: var(--terracotta-deep); }

.consult-card {
  margin-top: 40px;
  background: var(--sage-darker);
  color: var(--paper);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.consult-card::before {
  content: '';
  position: absolute;
  top: 24px; right: 24px;
  width: 32px; height: 1px;
  background: rgba(246, 241, 231, 0.4);
}
.consult-card .label-sc {
  color: rgba(246, 241, 231, 0.55);
  display: block;
  margin-bottom: 16px;
}
.consult-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.2;
}
.consult-card p {
  color: rgba(246, 241, 231, 0.85);
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------- Form ---------- */
.form {
  border-top: 1px solid var(--ink);
  padding-top: 44px;
}
.form-row {
  margin-bottom: 32px;
  position: relative;
}
.form label,
.form legend {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 0;
}
.form fieldset { border: 0; padding: 0; min-width: 0; }
.form label .opt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin-left: 8px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  transition: border-color var(--transition);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 0;
  border-bottom-color: var(--terracotta);
}
.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path d='M1 1l6 7 6-7' stroke='%2398593f' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.form select:invalid,
.form select option[disabled] {
  color: var(--ink-muted);
  font-style: italic;
}
.form select option {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
}

/* Radio + checkbox groups */
.form-choice-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0 4px;
  border-bottom: 1px solid var(--rule);
}
.form-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.form-choice:hover { color: var(--terracotta-deep); }
.form-choice input[type="radio"],
.form-choice input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--rule);
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.form-choice input[type="radio"] {
  border-radius: 50%;
}
.form-choice input[type="checkbox"] {
  border-radius: 2px;
}
.form-choice input[type="radio"]:hover,
.form-choice input[type="checkbox"]:hover {
  border-color: var(--terracotta);
}
.form-choice input[type="radio"]:checked {
  border-color: var(--terracotta-deep);
  background: var(--terracotta-deep);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.form-choice input[type="checkbox"]:checked {
  border-color: var(--terracotta-deep);
  background: var(--terracotta-deep);
}
.form-choice input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-choice input[type="radio"]:focus-visible,
.form-choice input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.form-helper {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.form input[type="date"] {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
}
.form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  filter: invert(0.3);
}
.form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
}
.form textarea::placeholder,
.form input::placeholder {
  color: var(--ink-muted);
  font-style: italic;
  opacity: 0.65;
}
.form-submit { margin-top: 12px; }
.form-note {
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ---------- Form success + error states ---------- */
.form-success {
  border-top: 1px solid var(--ink);
  padding-top: 44px;
}
.form-success .label-sc {
  display: block;
  margin-bottom: 14px;
  color: var(--terracotta-deep);
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.form-success a {
  color: var(--terracotta-deep);
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
}
.form-error {
  background: rgba(182, 117, 91, 0.1);
  border-left: 2px solid var(--terracotta-deep);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--terracotta-deep);
  line-height: 1.55;
}

/* ---------- Footer / Colophon ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper-alt);
  padding: 96px 0 36px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--terracotta);
}
.colophon {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.colophon h4 {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  color: rgba(246, 241, 231, 0.55);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.colophon-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.95rem;
  color: var(--paper);
  line-height: 1.05;
  margin-bottom: 24px;
}
.colophon-brand .with {
  font-family: 'Caveat', cursive;
  color: var(--terracotta);
  font-size: 2.05rem;
  margin: 0 4px;
}
.colophon p {
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
}
.colophon ul { list-style: none; }
.colophon li { margin-bottom: 10px; }
.colophon a {
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.colophon a:hover { color: var(--paper); }

.colophon-bottom {
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(246, 241, 231, 0.4);
  text-transform: uppercase;
}

/* ---------- Crisis resources strip ---------- */
.crisis-strip {
  background: var(--paper);
  padding: 64px 0 56px;
  border-top: 1px solid var(--terracotta);
  position: relative;
  z-index: 2;
}
.crisis-strip .container { text-align: center; }
.crisis-label-top {
  display: inline-block;
  margin-bottom: 32px;
}
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
  margin-bottom: 28px;
}
.crisis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 0 8px;
}
.crisis-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  color: var(--terracotta-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.crisis-num a { color: var(--terracotta-deep); }
.crisis-num a:hover { color: var(--ink); }
.crisis-name {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 6px;
}
.crisis-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-top: 2px;
}
.crisis-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
@media (max-width: 700px) {
  .crisis-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 1100ms cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}
.reveal-2 { animation-delay: 0.12s; }
.reveal-3 { animation-delay: 0.24s; }
.reveal-4 { animation-delay: 0.38s; }
.reveal-5 { animation-delay: 0.52s; }
.reveal-6 { animation-delay: 0.66s; }
.reveal-7 { animation-delay: 0.8s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  z-index: 999;
  font-family: 'Cormorant SC', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-list, .nav-cta { display: none; }
  .nav-list.open { display: flex; }
  .nav-cta.open { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 16px 36px 24px;
    gap: 0;
  }
  .nav-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav-list li:last-child {
    border-bottom: 0;
    padding-top: 18px;
  }
  .nav-list li:last-child a {
    border: 1px solid var(--terracotta);
    color: var(--terracotta-deep);
    padding: 10px 0;
    text-align: center;
    width: 100%;
    display: block;
  }

  .hero { padding: 64px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .plate-sm { max-width: 460px; margin: 0 auto; }

  .quote-section { padding: 72px 0; }

  section { padding: 72px 0; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 28px;
    margin-bottom: 44px;
  }
  .section-head .num { font-size: 2.2rem; }

  .teaser-grid { display: flex; flex-direction: column; gap: 40px; }
  .teaser-2 { padding-top: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-aside { position: static; }

  .specialties-list { grid-template-columns: 1fr; }
  .specialty:nth-child(odd) { border-right: 0; padding-right: 0; }
  .specialty:nth-child(even) { padding-left: 0; }

  .modalities { grid-template-columns: 1fr; gap: 36px; }

  .contact-grid { grid-template-columns: 1fr; gap: 56px; }

  .colophon { grid-template-columns: 1fr 1fr; gap: 40px; }

  .cta-break { padding: 80px 0; }
  .cta-break::before { top: 36px; }
  .cta-break::after { bottom: 36px; }

  .container { padding: 0 28px; }
}

/* Two-tier header — mobile adjustments */
@media (max-width: 980px) {
  .brand-band { padding: 10px 0 8px; }
  .brand-logo { gap: 14px; }
  .brand-logo img { height: 130px; margin: -24px -8px; }
  .brand-line { font-size: 1.3rem; }
  .brand-line .with { font-size: 1.4rem; }
  .thin-nav .container { justify-content: space-between; }
}
@media (max-width: 600px) {
  .brand-logo img { height: 96px; margin: -18px -6px; }
  .brand-logo { gap: 10px; }
  .brand-line { font-size: 1.1rem; }
  .brand-logo .tag { font-size: 0.58rem; letter-spacing: 0.24em; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  .nav { padding: 18px 0; gap: 16px; }
  .brand { font-size: 1.18rem; }
  .brand .with { font-size: 1.28rem; }
  .brand .tag { font-size: 0.55rem; }

  .hero-headline { font-size: clamp(2.1rem, 9vw, 3rem); }

  .colophon { grid-template-columns: 1fr; gap: 32px; }
  .colophon-bottom { flex-direction: column; gap: 8px; text-align: left; }

  .fee-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px 0;
  }
  .fee-row .num {
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }

  .specialty { padding: 28px 0; }

  .quote-text { font-size: 1.4rem; }
  .quote-mark { font-size: 3.2rem; }

  .note-block { padding: 28px 24px; }

  .container { padding: 0 22px; }
}
