/* =============================================================================
   Brooke McKenzie Therapy — Editorial Calm
   A design system for a high-end private therapy practice.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------------------------- */
:root {
  /* Palette — warm, editorial, restrained */
  --c-paper:        #F2EDE4;   /* primary background — warm oatmeal */
  --c-paper-2:      #EAE2D4;   /* slightly deeper warm tone for sections */
  --c-cream:        #FAF6EE;   /* highlight cream */
  --c-ink:          #1B2520;   /* primary text — deep forest-charcoal */
  --c-ink-2:        #3A453E;   /* secondary text */
  --c-ink-3:        #6B746C;   /* tertiary / meta */
  --c-rule:         rgba(27, 37, 32, 0.14);
  --c-rule-strong:  rgba(27, 37, 32, 0.28);
  --c-clay:         #B85A3A;   /* terracotta accent — primary CTA */
  --c-clay-deep:    #963F22;   /* clay hover */
  --c-moss:         #3F4A36;   /* deep moss — secondary accent */
  --c-gold:         #B79355;   /* dusty gold — small accents */

  /* Typography */
  --f-display: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Type scale (clamped, fluid) */
  --t-eyebrow: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --t-body:    clamp(1rem, 0.96rem + 0.2vw, 1.06rem);
  --t-lede:    clamp(1.18rem, 1.08rem + 0.4vw, 1.32rem);
  --t-h6:      clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
  --t-h5:      clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --t-h4:      clamp(1.6rem, 1.4rem + 0.9vw, 2.1rem);
  --t-h3:      clamp(2rem, 1.7rem + 1.4vw, 2.8rem);
  --t-h2:      clamp(2.6rem, 2.1rem + 2.2vw, 3.8rem);
  --t-h1:      clamp(3.2rem, 2.4rem + 3.6vw, 5.6rem);
  --t-display: clamp(4rem, 3rem + 5vw, 7.5rem);

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --container-text: 680px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 180ms;
  --dur-2: 320ms;
  --dur-3: 600ms;
  --dur-4: 900ms;

  /* Radii — restrained */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-pill: 999px;
}

/* -----------------------------------------------------------------------------
   2. BASE / RESET
   ----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* subtle paper grain */
  background-image:
    radial-gradient(at 0% 0%, rgba(184, 90, 58, 0.04) 0%, transparent 40%),
    radial-gradient(at 100% 100%, rgba(63, 74, 54, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--c-ink); color: var(--c-cream); }

:focus-visible {
  outline: 2px solid var(--c-clay);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* -----------------------------------------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------------------------------------- */
.display, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--f-display);
  font-weight: 380;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--c-ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  text-wrap: balance;
}

.display { font-size: var(--t-display); line-height: 0.95; letter-spacing: -0.03em; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); line-height: 1.02; }
.h3 { font-size: var(--t-h3); line-height: 1.08; }
.h4 { font-size: var(--t-h4); line-height: 1.15; font-weight: 420; }
.h5 { font-size: var(--t-h5); line-height: 1.25; font-weight: 450; font-variation-settings: "opsz" 32, "SOFT" 30; }
.h6 { font-size: var(--t-h6); line-height: 1.3; font-weight: 500; font-variation-settings: "opsz" 18, "SOFT" 20; }

.h1 em, .h2 em, .h3 em, .display em {
  font-style: italic;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--c-clay);
}

.lede {
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--c-ink-2);
  letter-spacing: -0.01em;
  font-weight: 380;
  max-width: 38ch;
  text-wrap: pretty;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-ink-3);
  font-weight: 500;
}

.eyebrow--clay { color: var(--c-clay); }

.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow-rule::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.serif { font-family: var(--f-display); font-weight: 380; font-variation-settings: "opsz" 32, "SOFT" 50; }

.italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }

p + p { margin-top: 1em; }

/* Editorial figure number — "01 / 02 / 03" */
.figure-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: clamp(2.5rem, 1.8rem + 2vw, 3.6rem);
  color: var(--c-clay);
  line-height: 1;
}

/* -----------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ----------------------------------------------------------------------------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--narrow { max-width: var(--container-narrow); }
.wrap--text { max-width: var(--container-text); }

section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section-divider {
  height: 1px;
  background: var(--c-rule);
  border: 0;
  margin: 0;
}

.grid { display: grid; gap: var(--gutter); }
.flex { display: flex; gap: var(--s-4); }
.flex-col { display: flex; flex-direction: column; gap: var(--s-4); }
.center { display: grid; place-items: center; }

.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-6); }

/* -----------------------------------------------------------------------------
   5. BUTTONS / CTAs
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05em 1.7em;
  font-family: var(--f-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--dur-2) var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-clay);
  color: var(--c-cream);
  box-shadow: 0 1px 0 rgba(27, 37, 32, 0.06), 0 8px 28px -12px rgba(184, 90, 58, 0.45);
}
.btn-primary:hover {
  background: var(--c-clay-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(27, 37, 32, 0.08), 0 14px 36px -14px rgba(150, 63, 34, 0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-secondary:hover {
  background: var(--c-ink);
  color: var(--c-cream);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-rule-strong);
  padding: 0.85em 1.3em;
}
.btn-ghost:hover { border-color: var(--c-ink); background: rgba(27, 37, 32, 0.04); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 500;
  color: var(--c-clay);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--dur-2) var(--ease);
}
.btn-link:hover { gap: 0.7em; }
.btn-link::after {
  content: "→";
  transition: transform var(--dur-2) var(--ease);
}
.btn-link:hover::after { transform: translateX(2px); }

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--dur-2) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

/* -----------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 237, 228, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-rule);
  background: rgba(242, 237, 228, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: var(--s-6);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 32, "SOFT" 60;
  color: var(--c-ink);
}
.logo .logo-mark {
  font-style: italic;
  color: var(--c-clay);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.logo .logo-sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-variation-settings: normal;
  margin-left: 0.6em;
  align-self: center;
  border-left: 1px solid var(--c-rule-strong);
  padding-left: 0.7em;
}

.nav-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--c-ink-2);
  position: relative;
  padding-block: 0.5em;
  transition: color var(--dur-1) var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: var(--c-clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after,
.nav-links a.is-current::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: var(--s-3); align-items: center; }

.phone-link {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--c-ink-2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.phone-link:hover { color: var(--c-clay); }

/* Logo sublabel hides on tighter desktops to avoid nav crowding */
@media (max-width: 1180px) {
  .logo .logo-sub { display: none; }
}
@media (max-width: 1080px) {
  .nav-cta .phone-link { display: none; }
}
@media (max-width: 980px) {
  .nav-links { gap: var(--s-5); }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-rule-strong);
  border-radius: var(--r-pill);
  padding: 0.5em 0.9em;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  align-items: center;
  gap: 0.4em;
}
.nav-toggle .toggle-bars {
  display: inline-block;
  width: 16px; height: 10px;
  position: relative;
}
.nav-toggle .toggle-bars::before,
.nav-toggle .toggle-bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--c-ink);
  transition: transform var(--dur-2) var(--ease);
}
.nav-toggle .toggle-bars::before { top: 1px; }
.nav-toggle .toggle-bars::after { bottom: 1px; }
.nav-toggle[aria-expanded="true"] .toggle-bars::before { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .toggle-bars::after { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--c-paper);
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transform: translateY(-100%);
  transition: transform var(--dur-3) var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 380;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-rule);
  padding: 0.4em 0;
}
.mobile-menu .mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* -----------------------------------------------------------------------------
   7. HERO
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem) clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding: 0.5em 1em 0.5em 0.6em;
  border: 1px solid var(--c-rule-strong);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  background: rgba(250, 246, 238, 0.6);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-clay);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--c-clay);
  opacity: 0.35;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero h1 {
  margin-bottom: var(--s-5);
}

.hero .lede { margin-bottom: var(--s-6); max-width: 44ch; }

.hero-meta {
  display: flex;
  gap: var(--s-6);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-rule);
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.hero-meta-item .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.hero-meta-item .value {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  color: var(--c-ink);
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #C9B695 0%, #8E7A5A 60%, #5C4D38 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(27, 37, 32, 0.3),
              0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 240, 220, 0.4), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(63, 74, 54, 0.3), transparent 60%);
  z-index: 1;
}
.hero-portrait .portrait-initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: clamp(8rem, 16vw, 14rem);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 300;
  color: rgba(250, 246, 238, 0.85);
  z-index: 2;
  letter-spacing: -0.04em;
}
.hero-portrait .portrait-tag {
  position: absolute;
  bottom: var(--s-5); left: var(--s-5);
  background: var(--c-paper);
  padding: 0.6em 1em;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink);
  z-index: 3;
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero-decoration--1 {
  top: 8%; right: -4%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 90, 58, 0.08), transparent 70%);
  filter: blur(20px);
}

/* -----------------------------------------------------------------------------
   8. SECTIONS / EDITORIAL LAYOUTS
   ----------------------------------------------------------------------------- */

/* Section header — eyebrow + title pair */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 880px) {
  .section-head--split { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}

.section-head .eyebrow { margin-bottom: var(--s-3); display: block; }

/* "Who We Serve" / Intro Block */
.intro-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 880px) {
  .intro-block { grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 6vw, 6rem); }
}

.intro-block .figure-num { margin-bottom: var(--s-4); }

.pull-quote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  line-height: 1.25;
  font-weight: 380;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.pull-quote em { color: var(--c-clay); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  padding: var(--s-7) var(--s-6) var(--s-6);
  background: var(--c-cream);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 90, 58, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-rule-strong);
  box-shadow: 0 30px 60px -30px rgba(27, 37, 32, 0.18);
}
.service-card:hover::before { opacity: 1; }

.service-card .figure-num { font-size: 1.6rem; }
.service-card .price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  color: var(--c-ink);
}
.service-card .price small {
  font-size: 0.85rem;
  color: var(--c-ink-3);
  font-weight: 400;
  margin-left: 0.3em;
}
.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 420;
  line-height: 1.15;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  letter-spacing: -0.018em;
}
.service-card p { color: var(--c-ink-2); font-size: 0.96rem; }
.service-card .service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 0.92rem;
  color: var(--c-ink-2);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px dashed var(--c-rule);
}
.service-card .service-features li {
  display: flex;
  gap: 0.5em;
  align-items: baseline;
}
.service-card .service-features li::before {
  content: "—";
  color: var(--c-clay);
}

.service-card.is-featured {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}
.service-card.is-featured h3,
.service-card.is-featured .price { color: var(--c-paper); }
.service-card.is-featured p { color: rgba(242, 237, 228, 0.75); }
.service-card.is-featured .service-features { color: rgba(242, 237, 228, 0.8); border-top-color: rgba(242, 237, 228, 0.18); }
.service-card.is-featured .figure-num { color: var(--c-gold); }
.service-card.is-featured .ribbon {
  position: absolute;
  top: var(--s-5); right: var(--s-5);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 0.3em 0.7em;
  border-radius: var(--r-pill);
}

/* Process / "How it works" */
.process {
  background: var(--c-paper-2);
  margin-block: 0;
}
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  list-style: none;
  counter-reset: step;
}
@media (min-width: 720px) { .process-list { grid-template-columns: repeat(3, 1fr); } }

.process-step {
  position: relative;
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-rule-strong);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.process-step .step-num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-clay);
}
.process-step h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.8rem);
  font-weight: 420;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.process-step p { color: var(--c-ink-2); font-size: 0.97rem; }

/* About preview / split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .about-split { grid-template-columns: 1fr 1.1fr; }
}
.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }

.credential-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-rule);
}
.credential-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.credential-list .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.credential-list .value {
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 480;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

/* Testimonial / pull quote section */
.testimonial-section {
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "“";
  position: absolute;
  top: -3rem;
  left: -2rem;
  font-family: var(--f-display);
  font-size: 30rem;
  line-height: 1;
  color: rgba(183, 147, 85, 0.08);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  pointer-events: none;
  z-index: 0;
}
.testimonial-section .wrap { position: relative; z-index: 1; }
.testimonial-quote {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  line-height: 1.3;
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.015em;
  max-width: 28ch;
  margin-bottom: var(--s-6);
  color: var(--c-cream);
  text-wrap: balance;
}
.testimonial-quote em { color: var(--c-gold); }

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.testimonial-attribution .avatar-init {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-clay), var(--c-clay-deep));
  display: grid;
  place-items: center;
  color: var(--c-cream);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  font-variation-settings: "opsz" 32, "SOFT" 100;
}
.testimonial-attribution .person {
  display: flex;
  flex-direction: column;
}
.testimonial-attribution .person strong {
  font-family: var(--f-display);
  font-weight: 480;
  font-size: 1rem;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.testimonial-attribution .person span {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.55);
  margin-top: 0.2em;
}

/* FAQ */
.faq-list {
  list-style: none;
  border-top: 1px solid var(--c-rule-strong);
}
.faq-item {
  border-bottom: 1px solid var(--c-rule-strong);
}
.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 440;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  transition: color var(--dur-2) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-clay);
  transition: transform var(--dur-2) var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--c-clay); }
.faq-item .faq-body {
  padding-bottom: var(--s-5);
  color: var(--c-ink-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 60ch;
}

/* Areas served */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  position: relative;
  padding: var(--s-7) var(--s-5) var(--s-5);
  border: 1px solid var(--c-rule-strong);
  border-radius: var(--r-md);
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: all var(--dur-2) var(--ease);
  overflow: hidden;
}
.area-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--c-clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out);
}
.area-card:hover { transform: translateY(-2px); border-color: var(--c-ink); }
.area-card:hover::after { transform: scaleX(1); }
.area-card .area-state {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-clay);
}
.area-card h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2.2rem);
  font-weight: 380;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.area-card .cities {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  margin-top: auto;
  padding-top: var(--s-3);
}

/* CTA Band */
.cta-band {
  background: var(--c-cream);
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 90, 58, 0.07), transparent 60%);
  pointer-events: none;
}
.cta-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: end;
  position: relative;
}
@media (min-width: 880px) {
  .cta-band-grid { grid-template-columns: 1.4fr 1fr; gap: var(--s-8); }
}

.cta-band h2 { margin-bottom: var(--s-5); }
.cta-band .cta-side {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.cta-band .cta-side .btn { width: 100%; }
.cta-band .contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-rule);
}
.cta-band .contact-line .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.cta-band .contact-line a {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 480;
}
.cta-band .contact-line a:hover { color: var(--c-clay); }

/* -----------------------------------------------------------------------------
   9. FOOTER
   ----------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: clamp(4rem, 6vw, 6rem) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-9);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(242, 237, 228, 0.15);
}
@media (min-width: 880px) {
  .footer-top { grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--s-7); }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 36ch;
}
.footer-brand .logo,
.footer-brand .logo .logo-mark { color: var(--c-paper); }
.footer-brand .logo .logo-sub { color: rgba(242, 237, 228, 0.5); border-left-color: rgba(242, 237, 228, 0.2); }
.footer-brand p {
  color: rgba(242, 237, 228, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.55);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a {
  font-size: 0.95rem;
  color: rgba(242, 237, 228, 0.85);
  transition: color var(--dur-2) var(--ease);
}
.footer-col a:hover { color: var(--c-gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(242, 237, 228, 0.45);
}
.footer-bottom p { line-height: 1.5; }
.footer-bottom a { color: inherit; border-bottom: 1px dotted currentColor; padding-bottom: 1px; }
.footer-bottom a:hover { color: var(--c-gold); border-color: var(--c-gold); }

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(242, 237, 228, 0.55);
  line-height: 1.55;
  max-width: 80ch;
  margin: var(--s-5) 0 0;
  padding: var(--s-4);
  border: 1px solid rgba(242, 237, 228, 0.12);
  border-radius: var(--r-md);
}

/* -----------------------------------------------------------------------------
   10. PAGE-SPECIFIC: ABOUT
   ----------------------------------------------------------------------------- */
.page-hero {
  padding-block: clamp(3.5rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  position: relative;
  border-bottom: 1px solid var(--c-rule);
}
.page-hero h1 { max-width: 14ch; margin-bottom: var(--s-5); }
.page-hero .lede { max-width: 50ch; }

.about-bio {
  max-width: var(--container-text);
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--c-ink-2);
}
.about-bio h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.4rem + 0.6vw, 2rem);
  font-weight: 420;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  letter-spacing: -0.015em;
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
  color: var(--c-ink);
}
.about-bio h2:first-child { margin-top: 0; }
.about-bio blockquote {
  border-left: 2px solid var(--c-clay);
  padding-left: var(--s-5);
  margin: var(--s-6) 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  color: var(--c-ink);
}

/* -----------------------------------------------------------------------------
   11. PAGE-SPECIFIC: SERVICES (extended)
   ----------------------------------------------------------------------------- */
.what-to-expect {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 880px) {
  .what-to-expect { grid-template-columns: 1fr 1fr; }
}
.expect-item {
  padding: var(--s-5);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-md);
  background: var(--c-cream);
}
.expect-item h4 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 440;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-3);
}
.expect-item p { color: var(--c-ink-2); font-size: 0.96rem; }

/* -----------------------------------------------------------------------------
   12. PAGE-SPECIFIC: CONTACT
   ----------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: var(--s-9); } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.field label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.field label .req { color: var(--c-clay); }
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-rule-strong);
  padding: 0.65em 0;
  font-family: var(--f-body);
  font-size: 1.05rem;
  color: var(--c-ink);
  transition: border-color var(--dur-2) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--c-clay);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-ink-3); opacity: 0.7; }
.field.has-error input,
.field.has-error textarea { border-bottom-color: var(--c-clay-deep); }
.field-error {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-clay-deep);
  letter-spacing: 0.06em;
  display: none;
}
.field.has-error .field-error { display: block; }

.contact-side {
  background: var(--c-paper-2);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  align-self: start;
}
.contact-side h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 440;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 32, "SOFT" 40;
}
.contact-method {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--c-rule);
}
.contact-method:last-of-type { border-bottom: 0; }
.contact-method .label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.contact-method a {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 460;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
.contact-method a:hover { color: var(--c-clay); }

.form-success {
  display: none;
  padding: var(--s-5);
  background: var(--c-cream);
  border: 1px solid var(--c-moss);
  border-radius: var(--r-md);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success h4 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 440;
  margin-bottom: var(--s-3);
}

/* -----------------------------------------------------------------------------
   13. BLOG / RESOURCES
   ----------------------------------------------------------------------------- */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 720px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-rule-strong);
  transition: padding var(--dur-2) var(--ease);
}
.post-card:hover { padding-left: var(--s-3); }
.post-card .post-meta {
  display: flex;
  gap: var(--s-3);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.post-card .post-meta .post-cat { color: var(--c-clay); }
.post-card h3 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.7rem);
  font-weight: 440;
  line-height: 1.18;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  letter-spacing: -0.015em;
}
.post-card p { color: var(--c-ink-2); font-size: 0.96rem; }
.post-card .read-more {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-clay);
}

/* -----------------------------------------------------------------------------
   14. UTILITIES
   ----------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.muted { color: var(--c-ink-2); }
.muted-2 { color: var(--c-ink-3); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-6 { margin-bottom: var(--s-6); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--c-ink); color: var(--c-paper);
  padding: 0.6em 1em;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* -----------------------------------------------------------------------------
   15. SCROLL REVEAL
   ----------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -----------------------------------------------------------------------------
   16. RESPONSIVE NAV BREAKS
   ----------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .phone-link,
  .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .hero-meta { gap: var(--s-4); }
  .hero-meta-item { flex: 1 0 45%; }
  .cta-row .btn { flex: 1 1 auto; }
}

/* Lock body when mobile menu open */
body.menu-open { overflow: hidden; }

/* -----------------------------------------------------------------------------
   17. EDITORIAL DROPDOWN — for "Areas Served" on desktop nav
   ----------------------------------------------------------------------------- */
.nav-links li.has-children { position: relative; }
.nav-links li.has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.4em;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur-2) var(--ease);
  opacity: 0.55;
}
.nav-links li.has-children:hover > a::after,
.nav-links li.has-children.is-open > a::after { transform: rotate(45deg) translateY(0); opacity: 1; }

.editorial-dropdown {
  position: fixed;
  left: 0; right: 0;
  top: 67px;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-rule);
  box-shadow: 0 30px 60px -30px rgba(27, 37, 32, 0.15);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), visibility 0s linear var(--dur-2);
}
.editorial-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), visibility 0s;
}

.editorial-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-7);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.editorial-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--c-rule);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: padding var(--dur-2) var(--ease);
}
.editorial-dropdown-item:hover { padding-left: var(--s-3); }
.editorial-dropdown-item::after {
  content: "→";
  position: absolute;
  top: var(--s-4);
  right: 0;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-clay);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.editorial-dropdown-item:hover::after { opacity: 1; transform: translateX(0); }

.editorial-dropdown-item .state-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.editorial-dropdown-item .state-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.8rem);
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1;
}
.editorial-dropdown-item:hover .state-name { color: var(--c-clay); }
.editorial-dropdown-item .state-cities {
  font-size: 0.85rem;
  color: var(--c-ink-3);
  line-height: 1.45;
}

.editorial-dropdown-cta {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  border-top: 0;
  align-self: stretch;
  justify-content: space-between;
  margin-top: var(--s-4);
}
.editorial-dropdown-cta:hover { padding-left: var(--s-5); }
.editorial-dropdown-cta::after { display: none; }
.editorial-dropdown-cta .cta-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.6);
}
.editorial-dropdown-cta .cta-text {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-style: italic;
  font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
  font-weight: 360;
  line-height: 1.2;
  color: var(--c-cream);
}
.editorial-dropdown-cta .cta-arrow {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-gold);
  align-self: flex-end;
  transition: transform var(--dur-2) var(--ease);
}
.editorial-dropdown-cta:hover .cta-arrow { transform: translateX(4px); }

@media (max-width: 1024px) {
  .editorial-dropdown-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
@media (max-width: 880px) {
  .editorial-dropdown { display: none; }
}

/* -----------------------------------------------------------------------------
   18. SIDE DRAWER — mobile slide-out menu (replaces full-screen .mobile-menu)
   ----------------------------------------------------------------------------- */
.side-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--c-paper);
  z-index: 60;
  transform: translateX(100%);
  transition: transform var(--dur-3) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(27, 37, 32, 0.4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.side-drawer.is-open { transform: translateX(0); }

.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 37, 32, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-3) var(--ease), visibility 0s linear var(--dur-3);
}
.side-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-3) var(--ease), visibility 0s;
}

.side-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem var(--s-5);
  border-bottom: 1px solid var(--c-rule);
}
.side-drawer-header .logo { font-size: 1.2rem; }
.side-drawer-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-rule-strong);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-ink);
  transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}
.side-drawer-close:hover { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }

.side-drawer-issue {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  padding: var(--s-5) var(--s-5) var(--s-3);
  display: flex;
  justify-content: space-between;
}

.side-drawer-nav {
  list-style: none;
  padding: 0 var(--s-5);
  display: flex;
  flex-direction: column;
}
.side-drawer-nav > li {
  border-bottom: 1px solid var(--c-rule);
}
.side-drawer-nav > li > a,
.side-drawer-nav > li > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: var(--s-5) 0;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.4rem + 0.6vw, 1.9rem);
  font-weight: 400;
  font-variation-settings: "opsz" 32, "SOFT" 50;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--c-ink);
  cursor: pointer;
  text-align: left;
  transition: color var(--dur-2) var(--ease);
}
.side-drawer-nav > li > a:hover,
.side-drawer-nav > li > button:hover { color: var(--c-clay); }
.side-drawer-nav .nav-arrow {
  font-family: var(--f-display);
  font-style: italic;
  font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
  color: var(--c-clay);
  font-size: 1.4rem;
  transition: transform var(--dur-2) var(--ease);
}
.side-drawer-nav .has-sub.is-open .nav-arrow { transform: rotate(90deg); }

.side-drawer-sub {
  list-style: none;
  padding: 0 0 var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--dur-3) var(--ease), opacity var(--dur-3) var(--ease), padding var(--dur-3) var(--ease);
}
.side-drawer-nav .has-sub.is-open .side-drawer-sub {
  max-height: 400px;
  opacity: 1;
}
.side-drawer-sub a {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-ink-2);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.side-drawer-sub a:hover { color: var(--c-clay); }
.side-drawer-sub a::before {
  content: "—";
  color: var(--c-clay);
  font-weight: 400;
}

.side-drawer-quote {
  margin: var(--s-7) var(--s-5) var(--s-5);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-rule-strong);
  border-bottom: 1px solid var(--c-rule-strong);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  color: var(--c-ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.side-drawer-quote-attr {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-style: normal;
}

.side-drawer-cta {
  margin: 0 var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.side-drawer-cta .btn { width: 100%; padding: 1.1em 1.5em; }
.side-drawer-contact {
  margin: 0 var(--s-5) var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-rule);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--c-ink-3);
}
.side-drawer-contact a { color: var(--c-ink); }
.side-drawer-contact a:hover { color: var(--c-clay); }

/* Hide the legacy mobile-menu (we're using side-drawer now) */
.mobile-menu { display: none !important; }

/* -----------------------------------------------------------------------------
   19. STICKY MOBILE CTA BAR
   ----------------------------------------------------------------------------- */
.sticky-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: none;
  padding: 0.7rem var(--s-3) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(27, 37, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  gap: var(--s-2);
  box-shadow: 0 -10px 30px -10px rgba(27, 37, 32, 0.25);
}
.sticky-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 0.5em;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.sticky-cta-bar .sb-call {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(242, 237, 228, 0.3);
}
.sticky-cta-bar .sb-call:hover { background: rgba(242, 237, 228, 0.08); border-color: var(--c-cream); }
.sticky-cta-bar .sb-book {
  background: var(--c-clay);
  color: var(--c-cream);
}
.sticky-cta-bar .sb-book:hover { background: var(--c-clay-deep); }

@media (max-width: 880px) {
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 4.5rem; }
  body.menu-open { padding-bottom: 0; }
}

/* -----------------------------------------------------------------------------
   20. CONTACT FORM UPGRADES — state cards, time pills, trust column
   ----------------------------------------------------------------------------- */
.contact-grid--upgraded {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 1000px) { .contact-grid--upgraded { grid-template-columns: 1.4fr 1fr; gap: var(--s-9); } }

.contact-form-upgraded {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.contact-form-upgraded .field input,
.contact-form-upgraded .field textarea {
  padding: 0.85em 0;
  font-size: 1.08rem;
}

/* State selector cards */
.field-state {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.state-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 540px) { .state-cards { grid-template-columns: repeat(4, 1fr); } }

.state-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  padding: 1.1em 0.8em;
  border: 1px solid var(--c-rule-strong);
  border-radius: var(--r-md);
  background: var(--c-cream);
  cursor: pointer;
  transition: all var(--dur-2) var(--ease);
  text-align: center;
  font-family: var(--f-display);
  isolation: isolate;
}
.state-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.state-card .state-abbr {
  font-size: 1.5rem;
  font-weight: 460;
  font-variation-settings: "opsz" 32, "SOFT" 30;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.state-card .state-full {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-weight: 500;
}
.state-card:hover {
  border-color: var(--c-ink);
  transform: translateY(-1px);
}
.state-card:has(input:checked) {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.state-card:has(input:checked) .state-abbr { color: var(--c-cream); }
.state-card:has(input:checked) .state-full { color: rgba(242, 237, 228, 0.65); }
.state-card:has(input:focus-visible) {
  outline: 2px solid var(--c-clay);
  outline-offset: 2px;
}

/* Time pills */
.field-time {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.time-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.time-pill {
  position: relative;
  padding: 0.55em 1em;
  border: 1px solid var(--c-rule-strong);
  border-radius: var(--r-pill);
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-ink-2);
  cursor: pointer;
  transition: all var(--dur-2) var(--ease);
}
.time-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.time-pill:hover { border-color: var(--c-ink); color: var(--c-ink); }
.time-pill:has(input:checked) {
  background: var(--c-clay);
  border-color: var(--c-clay);
  color: var(--c-cream);
}

.contact-form-upgraded .field label .opt {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--c-ink-3);
  font-weight: 400;
  margin-left: 0.4em;
}

.contact-form-upgraded .form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-3);
}
.contact-form-upgraded .form-submit .btn {
  padding: 1.2em 2em;
  font-size: 1rem;
}
.contact-form-upgraded .form-meta {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* Trust column */
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.trust-promise {
  position: relative;
  padding: var(--s-6) var(--s-5);
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}
.trust-promise::before {
  content: "★";
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 8rem;
  color: var(--c-gold);
  opacity: 0.12;
  z-index: -1;
  line-height: 1;
  font-family: var(--f-display);
}
.trust-promise .trust-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
  display: block;
}
.trust-promise .trust-headline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 360;
  font-size: 1.5rem;
  line-height: 1.2;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.015em;
  color: var(--c-cream);
}
.trust-promise .trust-headline em { color: var(--c-gold); font-style: italic; }

.trust-testimonial {
  padding: var(--s-5);
  background: var(--c-paper-2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.trust-testimonial .trust-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.45;
  font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
  color: var(--c-ink);
}
.trust-testimonial .trust-attr {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--f-body);
  font-size: 0.85rem;
}
.trust-testimonial .trust-attr strong {
  font-family: var(--f-display);
  font-weight: 480;
  font-size: 0.95rem;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  color: var(--c-ink);
}
.trust-testimonial .trust-attr span {
  color: var(--c-ink-3);
  font-size: 0.78rem;
}

.trust-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-5) 0 0;
  border-top: 1px solid var(--c-rule);
}
.trust-features li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--c-ink-2);
  line-height: 1.4;
}
.trust-features .trust-icon {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-clay);
  font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
  line-height: 1;
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
}
.trust-features strong {
  display: block;
  color: var(--c-ink);
  font-weight: 600;
  margin-bottom: 0.1em;
}
