/* =====================================================
   Mary Hoisington, LMFT LLC — brand stylesheet
   Palette: navy #1f3b47 · shoreline #6f9c95 · clay #c17a55 · cream #faf5ec
   Type: Fraunces (serif display) + Mulish (humanist sans)
   ===================================================== */

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

:root {
  --navy: #1f3b47;
  --navy-deep: #162e39;
  --shoreline: #6f9c95;
  --shoreline-text: #3f6a63;   /* darkened for AA contrast on cream */
  --clay: #c17a55;
  --clay-text: #8e5330;        /* darkened for AA contrast on cream */
  --cream: #faf5ec;
  --cream-warm: #f4ecdd;
  --sand: #e6d9c2;
  --text: #2c3538;
  --text-secondary: #4f5a59;
  --text-light: #6e746e;
  --border: #ded2bd;
  --border-light: #ece2d1;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1160px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
a:focus-visible { outline: 2px solid var(--shoreline-text); outline-offset: 3px; }

/* Cross-document view transitions — pages cross-fade into each other
   (Chromium + Safari 18+; older browsers simply navigate normally) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: 0.25s; }
::view-transition-new(root) { animation-duration: 0.35s; }

/* Brand-colored text selection */
::selection { background: var(--clay); color: var(--cream); }

/* Modern typographic wrapping — balanced headings, no orphaned words */
h1, h2, h3, .col-header, .consult-band-text h2 { text-wrap: balance; }
p { text-wrap: pretty; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ===== FADE-IN — progressive enhancement only.
   Content is fully visible by default (no-JS safe).
   Animation applies only when JS adds the .js class. ===== */
.fade-in { opacity: 1; transform: none; }
html.js .fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .fade-in.visible { opacity: 1; transform: translateY(0); }
html.js .fade-in-delay-1 { transition-delay: 0.1s; }
html.js .fade-in-delay-2 { transition-delay: 0.22s; }
html.js .fade-in-delay-3 { transition-delay: 0.34s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,245,236,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(31,59,71,0.07);
  border-bottom-color: var(--border-light);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
  transition: height 0.35s ease;
}
.site-nav.scrolled .nav-inner { height: 68px; }
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.25;
  flex-shrink: 0;
}
.nav-brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--shoreline-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--clay);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active,
.nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream) !important;
  background: var(--navy);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--clay-text); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  margin: 5.5px 0;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ===== BUTTONS — navy primary (cream on navy ≈ 10.9:1, WCAG AAA) ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--navy);
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--navy);
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(31,59,71,0.22);
}
.btn-primary:hover {
  background: var(--clay-text);
  border-color: var(--clay-text);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(142,83,48,0.28);
}
/* arrow glides in on hover */
.btn-primary .btn-arrow {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 0.3s ease, opacity 0.3s ease, transform 0.3s ease, margin-left 0.3s ease;
  vertical-align: baseline;
  overflow: hidden;
}
.btn-primary:hover .btn-arrow {
  max-width: 1.4em;
  opacity: 1;
  transform: translateX(0);
  margin-left: 8px;
}

/* ===== HERO ===== */
.hero {
  padding: 0 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
  width: 100%;
  padding: 128px 0 72px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shoreline-text);
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--clay);
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 3.1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--clay-text);
}
.hero-text .hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 500px;
}
.hero-text .hero-note {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
/* Authority cue — grounding credibility strip */
.hero-cred {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 36px;
  max-width: 470px;
  line-height: 1.5;
}
.hero-cred .cred-line { display: block; white-space: nowrap; }
.hero-cred .cred-line-sub {
  margin-top: 5px;
  color: var(--shoreline-text);
  font-weight: 700;
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
/* The one organic blob — signature motif, single location.
   Drifts almost imperceptibly, like breathing. Disabled for reduced-motion. */
@keyframes blobBreathe {
  from { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; transform: rotate(0deg) scale(1); }
  to   { border-radius: 54% 46% 44% 56% / 46% 56% 46% 54%; transform: rotate(3deg) scale(1.04); }
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -26px -14px 8px 26px;
  background: var(--shoreline);
  opacity: 0.16;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  z-index: 0;
  animation: blobBreathe 9s ease-in-out infinite alternate;
}
.hero-image-wrap img {
  width: 100%;
  max-width: 410px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(31,59,71,0.16);
}

/* ===== SECTION UTILITIES ===== */
.section-rule {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.section-rule hr {
  border: none;
  border-top: 1px solid var(--border-light);
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shoreline-text);
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '\2733';
  color: var(--clay-text);
  font-size: 0.95em;
  letter-spacing: 0;
}

/* ===== HOMEPAGE INTRO — WHO I WORK WITH ===== */
.intro-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 48px 0;
}
.intro-inner { max-width: 840px; }
.intro-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.62;
  color: var(--navy);
  letter-spacing: -0.008em;
  margin-bottom: 30px;
}
.intro-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--clay-text);
  border-left: 3px solid var(--clay);
  padding-left: 22px;
}
@media (max-width: 900px) {
  .intro-section { padding: 56px 28px 0; }
  .intro-lede { font-size: 1.08rem; }
  .intro-pull { font-size: 1rem; }
}

/* ===== THE WORK — editorial section (replaced the card grid) ===== */
.work-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px 36px;
}
.work-inner { max-width: 840px; }
.feature-card {
  margin-top: 48px;
  background: var(--cream-warm);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--clay);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.feature-card p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* ===== WHAT BRINGS PEOPLE HERE — chips ===== */
.chips-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 48px 88px;
}
.chips {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
}
.chips li {
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 21px;
  line-height: 1.4;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.chips li:hover {
  background: #eaf0e8;
  border-color: var(--shoreline);
  transform: translateY(-2px);
}

/* band caption under the invitation CTA */
.band-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 0.84rem;
  color: rgba(250,245,236,0.62);
  line-height: 1.65;
  max-width: 56ch;
}

/* ===== ABOUT — voice block & human close ===== */
.intro-lede .dim { color: var(--text-light); }
.about-inner { max-width: 840px; }
.voice-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin: 72px 0;
}
.voice-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: -0.008em;
  padding-left: clamp(20px, 3vw, 36px);
  border-left: 3px solid var(--clay);
  margin: 0;
}
.human-close {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: -0.008em;
  margin: 64px 0 20px;
}
.human-close em { font-style: italic; color: var(--clay-text); }

.fee-item .fee-amount { font-variant-numeric: tabular-nums; }

/* ===== CONSULTATION / INVITATION BAND ===== */
.consult-band { padding: 20px 48px 96px; }
.consult-band-inner {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 76px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
/* the still photograph behind the invitation — with gentle parallax */
.band-bg {
  position: absolute;
  inset: -48px 0;
  z-index: 0;
  pointer-events: none;
}
.band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
.band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,34,45,0.88) 0%, rgba(15,42,56,0.72) 55%, rgba(15,42,56,0.6) 100%);
}
.consult-band-text, .consult-band .btn-primary { position: relative; z-index: 1; }
.consult-band-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  max-width: 21ch;
  line-height: 1.25;
}
.consult-band-text h2 em {
  font-style: italic;
  color: #e2a97f;
}
.consult-band-text p {
  font-size: 0.98rem;
  color: rgba(250,245,236,0.75);
  line-height: 1.6;
}
.consult-band .btn-primary {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.consult-band .btn-primary:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy-deep);
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 164px 48px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.page-header .page-rule {
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: var(--clay);
  margin-top: 24px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 104px;
}
.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.page-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}
.page-content p:last-child { margin-bottom: 0; }

/* ===== ABOUT ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}
.about-image-wrap { position: sticky; top: 124px; }
.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(31,59,71,0.14);
}
.credentials {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border-light);
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.credential-item {
  background: var(--cream-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 32px;
  border-left: 3px solid var(--shoreline);
}
.credential-item h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shoreline-text);
  margin-bottom: 12px;
}
.credential-item p {
  font-size: 0.94rem;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.6;
}
.license-list { list-style: none; padding: 0; margin-top: 6px; }
.license-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

/* ===== SERVICES ===== */
.service-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block h2.service-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  padding-top: 2px;
  line-height: 1.3;
  margin-bottom: 0;
}
.service-block .service-body p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-block .service-body p:last-child { margin-bottom: 0; }

/* ===== FEES ===== */
.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.fee-item {
  padding: 40px 34px;
  background: var(--cream-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.fee-item h2 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shoreline-text);
  margin-bottom: 20px;
}
.fee-item .fee-amount {
  font-family: var(--font-serif);
  font-size: 2.9rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.fee-item .fee-note {
  font-size: 0.85rem;
  color: var(--text-light);
}
.fee-item p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.fee-item p:last-child { margin-bottom: 0; }
.fee-item a { color: var(--clay-text); text-decoration: none; }
.fee-item a:hover { color: var(--navy); }

/* ===== CONTACT ===== */
.contact-invite {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  max-width: 22ch;
}
.contact-invite em {
  font-style: italic;
  color: var(--clay-text);
}
.contact-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 46ch;
}
.contact-mini {
  margin-top: 26px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 2.1;
}
.contact-mini a {
  color: var(--clay-text);
  text-decoration: none;
}
.contact-mini a:hover { color: var(--navy); }
.contact-note {
  margin-top: 18px;
  margin-bottom: 44px;
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 52ch;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-cta { margin-bottom: 52px; }
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-detail h2 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shoreline-text);
  margin-bottom: 8px;
}
.contact-detail p {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
}
.contact-detail a {
  color: var(--clay-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail a:hover { color: var(--navy); }
.contact-right {
  background: var(--navy);
  padding: 44px;
  border-radius: var(--radius-lg);
}
.contact-right .contact-detail { margin-bottom: 30px; }
.contact-right .contact-detail:last-child { margin-bottom: 0; }
.contact-right .contact-detail h2 { color: var(--shoreline); }
.contact-right .contact-detail p { color: rgba(250,245,236,0.92); }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; }
.faq-item {
  background: var(--cream-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--clay-text);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; }
.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== EDITORIAL OVERRIDES inside .page-content =====
   .page-content p/h2 outrank single-class editorial elements;
   these restore the intended scale on About + Contact. */
.page-content p.intro-lede {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.62;
  color: var(--navy);
  letter-spacing: -0.008em;
  margin-bottom: 30px;
}
.page-content p.human-close {
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: -0.008em;
  margin: 64px 0 20px;
}
.page-content h2.contact-invite {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 22px;
}
.page-content p.contact-sub { font-size: 1.05rem; line-height: 1.75; margin-bottom: 34px; }
.page-content p.contact-mini { font-size: 0.82rem; line-height: 2.1; margin-top: 26px; margin-bottom: 0; }
.page-content p.contact-note { font-size: 0.88rem; margin-top: 18px; margin-bottom: 44px; color: var(--text-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-deep);
  padding: 56px 48px;
}
.footer-crisis {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(250,245,236,0.14);
}
.footer-crisis p {
  font-size: 0.85rem;
  color: rgba(250,245,236,0.72);
  text-align: center;
  line-height: 1.6;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left p {
  font-size: 0.82rem;
  color: rgba(250,245,236,0.55);
  line-height: 1.7;
}
.footer-left a {
  color: rgba(250,245,236,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-left a:hover { color: var(--cream); }
.footer-right p {
  font-size: 0.8rem;
  color: rgba(250,245,236,0.45);
  line-height: 1.6;
}
.footer-right a {
  color: rgba(250,245,236,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-right a:hover { color: var(--cream); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: rgba(250,245,236,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 28px 32px;
    gap: 22px;
  }
  .nav-toggle { display: block; }
  .nav-inner { padding: 0 28px; }
  .hero { padding: 0 28px; min-height: auto; }
  /* Stacked hero order: eyebrow, headline, sub-line, portrait, credibility strip, call button */
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 132px 0 56px; }
  .hero-text { display: contents; }
  .hero-text > .hero-eyebrow { order: 1; }
  .hero-text > h1 { order: 2; }
  .hero-text > .hero-sub { order: 3; }
  .hero-grid > .hero-image-wrap { order: 4; margin: 10px 0 36px; }
  .hero-text > .hero-cred { order: 5; }
  .hero-text > div { order: 6; }
  .hero-text h1 { font-size: 2.25rem; }
  .hero-image-wrap { justify-content: center; }
  .hero-image-wrap img { max-width: 320px; }
  /* Tablet: the organic blob stretches across the full-width stacked hero — remove it there */
  .hero-image-wrap::before { display: none; }
  .work-section { padding: 52px 28px 24px; }
  .chips-section { padding: 24px 28px 60px; }
  .feature-card { padding: 28px 26px; }
  .voice-block { grid-template-columns: 1fr; margin: 48px 0; }
  .voice-block .voice-portrait { max-width: 320px; margin: 0 auto; }
  .consult-band { padding: 12px 28px 64px; }
  .consult-band-inner { flex-direction: column; text-align: center; gap: 28px; padding: 48px 36px; }
  .page-header { padding: 132px 28px 40px; }
  .page-header h1 { font-size: 2.1rem; }
  .page-content { padding: 0 28px 72px; }
  .content-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image-wrap { position: relative; top: auto; max-width: 340px; }
  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .fee-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-details-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-right { padding: 34px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .section-rule { padding: 0 28px; }
  .site-footer { padding: 44px 28px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  /* Phone: the blob hugs the portrait again, so it comes back */
  .hero-image-wrap::before { display: block; }
  .hero-text h1 { font-size: 1.9rem; }
  .hero-grid { padding: 120px 0 44px; }
  .nav-brand { font-size: 1.02rem; }
  .nav-brand span { font-size: 0.58rem; }
  .page-header h1 { font-size: 1.8rem; }
  .consult-band-text h2 { font-size: 1.45rem; }
  .consult-band-inner { padding: 46px 28px; }
  .contact-invite { font-size: 1.55rem; }
  .hero-cred { font-size: 0.66rem; letter-spacing: 0.1em; }
  .faq-item summary { padding: 18px 20px; font-size: 1rem; }
  .faq-answer { padding: 0 20px 20px; }
}
