/* ==========================================================================
   Nextchapter Therapy Studio — Master Stylesheet
   Forest-green editorial design system
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --ink: #1f2d15;          /* deep forest, for body headings */
  --moss: #3b5829;         /* primary brand green (logo) */
  --moss-soft: #4d6c39;    /* lighter brand green */
  --sage: #8aa67a;         /* dusty sage accent */
  --sage-pale: #c8d2bd;    /* faded sage line work */

  /* Warm neutrals */
  --cream: #faf6ee;        /* primary background */
  --parchment: #f3ecdc;    /* secondary section background */
  --sand: #ebe3cf;         /* warmer beige */
  --blush: #e3c4b3;        /* dusty rose accent */
  --clay: #c68c70;         /* warm terra accent (used sparingly) */

  /* Text & line */
  --charcoal: #2c2c26;
  --mute: #6e6d62;
  --hair: rgba(31, 45, 21, 0.12);

  /* Typography */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Container & radius */
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 8px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Modern reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--moss); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--moss-soft); }
ul, ol { padding-left: 1.2em; }

/* Subtle paper-texture overlay on body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.18 0 0 0 0 0.08 0 0 0 0.04 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 1.95rem); line-height: 1.2; }
h4 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
p  { margin-block: 0.85em; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--moss);
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  font-variation-settings: "opsz" 30, "SOFT" 100;
}

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--moss);
  color: var(--cream);
}
.btn--primary:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(31, 45, 21, 0.6); }
.btn--ghost {
  color: var(--moss);
  border: 1px solid var(--moss);
}
.btn--ghost:hover { background: var(--moss); color: var(--cream); }
.btn--light {
  background: var(--cream);
  color: var(--moss);
}
.btn--light:hover { background: var(--parchment); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 30;
}
.brand__name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav__list {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--moss);
  transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--moss); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 880px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem var(--gutter) 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    gap: 0;
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__list li { border-bottom: 1px solid var(--hair); }
  .nav__link { display: block; padding: 1.1rem 0; font-size: 1.1rem; font-family: var(--serif); }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 1.5rem; align-self: flex-start; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(227, 196, 179, 0.35), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(138, 166, 122, 0.22), transparent 50%),
    var(--cream);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-block: 1.2rem 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--mute);
  max-width: 38ch;
  margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #d8e2cb 0%, #f3ecdc 55%, #e3c4b3 100%);
  box-shadow: 0 30px 60px -30px rgba(31, 45, 21, 0.35);
}
.hero__art-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
}
.hero__art-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.4;
  color: var(--ink);
  font-variation-settings: "opsz" 30, "SOFT" 100;
}
.hero__art-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 1rem;
}
.hero__art-leaf {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 90%;
  opacity: 0.4;
  z-index: 1;
}
.hero__art-leaf svg { width: 100%; height: 100%; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 480px; margin-inline: auto; aspect-ratio: 5 / 6; }
}

/* ---------- Decorative dividers ---------- */
.divider-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-block: var(--s-5);
}
.divider-mark::before, .divider-mark::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hair);
  max-width: 220px;
}
.divider-mark__icon { color: var(--moss); width: 32px; }

/* ---------- Approach / values section ---------- */
.approach { background: var(--cream); }
.approach__head { max-width: 720px; margin-bottom: var(--s-5); }
.approach__head h2 { margin-top: 0.8rem; }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.approach__card { padding-block: 0.5rem; }
.approach__card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--moss);
  font-variation-settings: "opsz" 30;
  margin-bottom: 1rem;
}
.approach__card h3 { margin-bottom: 0.8rem; }
.approach__card p { color: var(--mute); font-size: 0.96rem; }

/* ---------- Services preview / grid ---------- */
.services-band { background: var(--parchment); position: relative; }
.services-band__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: var(--s-5);
}
.services-band__head > div { max-width: 560px; }
.services-band__head h2 { margin-top: 0.8rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--hair);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--moss);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(31, 45, 21, 0.35);
  border-color: var(--sage-pale);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: var(--moss);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 0.7rem; }
.service-card__meta {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}
.service-card p { color: var(--mute); margin-bottom: 1.5rem; flex-grow: 1; }
.service-card__link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.service-card__link .arrow { transition: transform 0.25s var(--ease); }
.service-card:hover .service-card__link .arrow { transform: translateX(4px); }

/* ---------- Pull quote / testimonial section ---------- */
.pull {
  background: var(--moss);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pull__inner {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.pull__quote-mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--sage);
  opacity: 0.5;
  margin-bottom: -2rem;
}
.pull h2 {
  color: var(--cream);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 1.5rem;
}
.pull__attribution {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-pale);
}
.pull::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.07), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(227, 196, 179, 0.12), transparent 50%);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  color: var(--cream);
}
.cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  max-width: 22ch;
  margin: 0;
}
.cta-strip p {
  color: var(--sage-pale);
  max-width: 36ch;
  margin: 0.5rem 0 0;
}

/* ---------- Site footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--sage-pale);
  padding-block: 4rem 2rem;
  position: relative;
  z-index: 2;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 210, 189, 0.18);
}
.site-footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--cream);
}
.site-footer__brand svg { width: 36px; height: 36px; color: var(--cream); }
.site-footer__brand .brand__name { color: var(--cream); }
.site-footer__brand .brand__name small { color: var(--sage); }
.site-footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sage-pale);
  max-width: 30ch;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; font-size: 0.94rem; }
.site-footer a { color: var(--sage-pale); }
.site-footer a:hover { color: var(--cream); }
.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: var(--sage);
  gap: 1rem;
}
.site-footer__base p { margin: 0; }

@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.page-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(227, 196, 179, 0.3), transparent 50%),
    var(--cream);
}
.page-hero__inner { max-width: 720px; margin-inline: 0; }
.page-hero h1 { margin-top: 1rem; }
.page-hero .lede { margin-top: 1.5rem; }

.about-bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: var(--s-7);
}
.about-bio__portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(31, 45, 21, 0.3);
}
.about-bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-bio__portrait-cred {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 30, "SOFT" 100;
}
.about-bio__portrait-cred small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 0.5rem;
}
.about-bio__copy p { font-size: 1.04rem; color: var(--charcoal); }
.about-bio__copy p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.6rem 0 0;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

@media (max-width: 880px) {
  .about-bio { grid-template-columns: 1fr; }
  .about-bio__portrait { max-width: 420px; margin-inline: auto; }
  .about-bio__copy p:first-child::first-letter { font-size: 3.5rem; }
}

.credentials {
  background: var(--parchment);
}
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: var(--s-4);
}
.credentials__item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--hair);
}
.credentials__item h4 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
}
.credentials__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mute);
}

/* ==========================================================================
   SERVICES PAGES
   ========================================================================== */
.service-hero {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(ellipse at 80% 30%, rgba(138, 166, 122, 0.22), transparent 55%),
    var(--cream);
}
.service-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: end;
}
.service-hero__crumb {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.5rem;
}
.service-hero__crumb a { color: var(--mute); }
.service-hero__crumb a:hover { color: var(--moss); }
.service-hero h1 { margin-bottom: 1.5rem; }
.service-hero__price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.service-hero__price small {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}

@media (max-width: 880px) {
  .service-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.service-detail__aside {
  position: sticky;
  top: 100px;
  padding: 2rem;
  background: var(--parchment);
  border-radius: var(--radius-lg);
}
.service-detail__aside h4 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.service-detail__aside ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.service-detail__aside li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--hair);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.service-detail__aside li:first-child { border-top: 0; padding-top: 0; }
.service-detail__aside .btn { width: 100%; justify-content: center; }
.service-detail h2 { margin-top: 2rem; margin-bottom: 1rem; }
.service-detail h2:first-child { margin-top: 0; }
.service-detail__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.service-detail__list li {
  position: relative;
  padding: 1.1rem 0 1.1rem 1.75rem;
  border-bottom: 1px solid var(--hair);
  font-size: 1.02rem;
  line-height: 1.55;
}
.service-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75em;
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
}
.service-detail__quote {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--moss);
  background: var(--parchment);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.service-detail__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  font-variation-settings: "opsz" 30, "SOFT" 100;
  margin: 0;
}

@media (max-width: 880px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__aside { position: static; }
}

/* Insurance note */
.insurance-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  font-size: 0.94rem;
  color: var(--charcoal);
}
.insurance-note strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact-info { padding-top: 1rem; }
.contact-info__item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--hair);
}
.contact-info__item:last-child { border-bottom: 1px solid var(--hair); }
.contact-info__label {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
}
.contact-info__val {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
}
.contact-info__val a { color: var(--ink); }
.contact-info__val a:hover { color: var(--moss); }

.contact-form {
  background: var(--parchment);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}
@media (max-width: 540px) {
  .contact-form { padding: 1.5rem 1.25rem; }
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(59, 88, 41, 0.12);
}
.form-field--honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  display: none;
}
.form-status.is-success { display: block; background: rgba(59, 88, 41, 0.1); color: var(--ink); border-left: 3px solid var(--moss); }
.form-status.is-error { display: block; background: rgba(198, 140, 112, 0.12); color: #8a3d20; border-left: 3px solid var(--clay); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq__list {
  margin-top: var(--s-4);
  border-top: 1px solid var(--hair);
}
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
  transition: color 0.2s var(--ease);
}
.faq__q:hover { color: var(--moss); }
.faq__q-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--moss);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__q-icon { transform: rotate(45deg); }
.faq__a {
  padding-bottom: 1.5rem;
  color: var(--mute);
  font-size: 1rem;
  max-width: 70ch;
}

/* ==========================================================================
   Scroll-reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

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

/* ==========================================================================
   Utility
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
