/* ============================================================
   VICTORIA McCARTNEY — PSYCHOTHERAPY
   Design system. Earthy editorial, warm, human.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand palette */
  --ivory:     #F7F2EA;
  --cream:     #FFF9F3;
  --sage:      #A8B29A;
  --olive:     #5E6650;
  --olive-dk:  #4A5140;
  --rose:      #D8A3A5;
  --rose-soft: #F0DCDC;
  --mauve:     #A97880;
  --mauve-dk:  #8A5D65;
  --cocoa:     #6C5548;
  --espresso:  #332B27;
  --lavender:  #C8B8D8;

  /* Semantic */
  --bg:          var(--ivory);
  --bg-alt:      var(--cream);
  --text:        var(--espresso);
  --text-soft:   #5A4F48;
  --line:        #E4DACE;
  --accent:      var(--olive);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --hand:  "Caveat", "Bradley Hand", cursive;

  /* Scale — fluid */
  --step--1: clamp(0.875rem, 0.84rem + 0.17vw, 0.95rem);
  --step-0:  clamp(1.0625rem, 1.02rem + 0.22vw, 1.1875rem);
  --step-1:  clamp(1.25rem, 1.17rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3:  clamp(1.875rem, 1.6rem + 1.35vw, 2.75rem);
  --step-4:  clamp(2.25rem, 1.75rem + 2.5vw, 4rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --max: 1160px;
  --measure: 62ch;

  --header-h: 78px;

  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(51, 43, 39, 0.05);
  --shadow:    0 10px 30px -12px rgba(51, 43, 39, 0.16);
  --shadow-lg: 0 24px 60px -24px rgba(51, 43, 39, 0.24);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

p { margin: 0 0 1.15em; max-width: var(--measure); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--olive); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--mauve-dk); }

ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.5em; }

:focus-visible {
  outline: 3px solid var(--mauve);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--olive); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0 0 12px 0;
  z-index: 200; font-weight: 500;
}
.skip-link:focus { left: 0; top: 0; }

/* ---------- 3. Layout ---------- */
.wrap {
  width: 100%; max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 760px; }

section { padding-block: var(--section-y); position: relative; }
.bg-cream  { background: var(--cream); }
.bg-sage   { background: #EDF0E8; }
.bg-rose   { background: #FBF0EF; }
.bg-olive  { background: var(--olive); color: var(--cream); }
.bg-olive h1, .bg-olive h2, .bg-olive h3 { color: var(--cream); }
.bg-olive p { color: #E8E6DC; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mauve-dk);
  margin-bottom: 0.9rem;
  display: block;
}
.bg-olive .eyebrow { color: var(--sage); }

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--text-soft); }
.bg-olive .lede { color: #E8E6DC; }

.center { text-align: center; }
.center p { margin-inline: auto; }

/* Handwritten annotation */
.hand {
  font-family: var(--hand);
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.65rem);
  color: var(--mauve-dk);
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transform: rotate(-2.5deg);
}
.hand svg { width: 1em; height: 1em; flex: none; }

/* Hand-drawn underline under a word */
.mark { position: relative; white-space: nowrap; }
.mark svg {
  position: absolute; left: 0; bottom: -0.22em;
  width: 100%; height: 0.36em; overflow: visible;
  color: var(--rose);
}

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--olive);
  --btn-fg: #FFFDF9;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 500;
  line-height: 1;
  padding: 1.05em 1.9em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  background: var(--olive-dk); border-color: var(--olive-dk);
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--olive);
  border-color: var(--sage);
}
.btn--ghost:hover {
  background: rgba(168, 178, 154, 0.18);
  border-color: var(--olive); color: var(--olive);
}
.btn--light { --btn-bg: var(--cream); --btn-fg: var(--olive); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--olive-dk); }
.btn--sm { font-size: var(--step--1); padding: 0.8em 1.4em; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  align-items: center;
}

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -14px rgba(51,43,39,0.3);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { text-decoration: none; color: var(--text); line-height: 1.05; display: block; }
.brand__name {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 500;
  letter-spacing: -0.01em; display: block;
}
.brand__role {
  font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mauve-dk); display: block; margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list {
  display: flex; align-items: center; gap: 1.6rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__list li { margin: 0; }
.nav__link {
  font-size: 0.97rem; color: var(--text); text-decoration: none;
  padding: 0.4rem 0; position: relative; font-weight: 400;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
  border-radius: 2px;
}
.nav__link:hover { color: var(--olive); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--olive); font-weight: 500; }

.nav-toggle {
  display: none;
  background: none; border: 1.5px solid var(--line);
  border-radius: 100px; padding: 0.6rem 0.95rem;
  align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.9rem; color: var(--text);
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 4px; width: 17px; }
.nav-toggle__bars span {
  height: 1.8px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    /* Absolute, not fixed: the header has a backdrop-filter, which makes it the
       containing block for fixed-position children and would collapse this
       panel to the height of the header itself. */
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    height: calc(100dvh - var(--header-h));
    background: var(--ivory);
    flex-direction: column; align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem var(--gutter) 3rem;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link {
    display: block; padding: 1.15rem 0;
    font-family: var(--serif); font-size: 1.5rem;
  }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 1.75rem; width: 100%; }
}

/* ---------- 6. Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); position: relative; }
.hero__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { order: -1; max-width: 420px; margin-inline: auto; }
}
.hero h1 { margin-bottom: 0.45em; }
.hero__lede { font-size: var(--step-1); line-height: 1.6; color: var(--text-soft); }
.hero .btn-row { margin-top: 2rem; }
.hero__note { margin-top: 1.75rem; }

.hero__media { position: relative; }
.hero__blob {
  position: absolute; inset: -7% -5% -5% -7%;
  background: var(--sage); opacity: 0.4;
  border-radius: 58% 42% 46% 54% / 46% 52% 48% 54%;
  z-index: 0;
}
.hero__photo {
  position: relative; z-index: 1;
  border-radius: 52% 48% 45% 55% / 48% 46% 54% 52%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--rose-soft);
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__sparkle { position: absolute; z-index: 2; color: var(--rose); }
.hero__sparkle--1 { top: -4%; right: 6%; width: 34px; }
.hero__sparkle--2 { bottom: 4%; left: -3%; width: 22px; color: var(--lavender); }

/* ---------- 7. Cards ---------- */
.grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage); }
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--text-soft); margin-bottom: 0; font-size: 1rem; }
.card__icon {
  width: 46px; height: 46px; margin-bottom: 1.1rem;
  color: var(--olive);
}
.card--tinted { background: #FBF0EF; border-color: #F0DCDC; }
.card--sage   { background: #EDF0E8; border-color: #DCE2D5; }
.card--plain  { background: transparent; border-color: var(--line); }

/* Numbered / approach list */
.approach { display: grid; gap: 0; border-top: 1px solid var(--line); }
.approach__item {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.approach__num {
  font-family: var(--serif); font-size: var(--step-1);
  color: var(--sage); line-height: 1; padding-top: 0.15em;
  font-variant-numeric: tabular-nums;
}
.approach__item h3 { margin-bottom: 0.3em; }
.approach__item p { color: var(--text-soft); margin: 0; }

/* Pull quote */
.pullquote {
  font-family: var(--serif);
  font-size: var(--step-2);
  line-height: 1.35;
  color: var(--olive);
  max-width: 22ch;
  margin: 0;
  position: relative;
}
.bg-olive .pullquote { color: var(--cream); }

/* Split section */
.split {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split--narrow-media { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 880px) { .split--narrow-media { grid-template-columns: 1fr; } }

.framed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--rose-soft);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  position: relative;
}
.framed img { width: 100%; height: 100%; object-fit: cover; }
.framed--wide { aspect-ratio: 5 / 4; }

/* ---------- 8. Accordion (FAQ) ---------- */
.faq { border-top: 1px solid var(--line); max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.3;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--olive); }
.faq summary::after {
  content: ""; position: absolute; right: 0.35rem; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--sage); border-bottom: 2px solid var(--sage);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq__body { padding: 0 2rem 1.6rem 0; }
.faq__body p { color: var(--text-soft); }

/* ---------- 9. Forms ---------- */
.form { display: grid; gap: 1.15rem; max-width: 620px; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.95rem; font-weight: 500; }
.field .hint { font-size: var(--step--1); color: var(--text-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem;
  padding: 0.9rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(168, 178, 154, 0.25);
}
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 0.7rem; }
.field--check input { width: 20px; height: 20px; margin-top: 0.25rem; accent-color: var(--olive); }
.field--check label { font-weight: 400; font-size: 0.95rem; color: var(--text-soft); }
.form__note { font-size: var(--step--1); color: var(--text-soft); max-width: 60ch; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- 10. Resource tiles ---------- */
.tile {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  min-height: 210px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile h3 { font-size: var(--step-1); margin-bottom: 0.35em; }
.tile p { font-size: 0.97rem; margin: 0; }
.tile__tag {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; margin-bottom: auto; padding-bottom: 1.25rem; display: block;
}
.tile--1 { background: #EDF0E8; color: var(--olive); }
.tile--1 p { color: #4A5140; }
.tile--2 { background: #FBF0EF; color: var(--mauve-dk); }
.tile--2 p { color: #6B4A50; }
.tile--3 { background: #F2EDF6; color: #6A5A7A; }
.tile--3 p { color: #5E5069; }
.tile--4 { background: #F3EBE4; color: var(--cocoa); }
.tile--4 p { color: #5C463B; }

/* ---------- 11. Footer ---------- */
.site-footer {
  background: var(--olive);
  color: #E8E6DC;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: 0;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--rose); }
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
}
@media (max-width: 1040px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand .brand__name { color: var(--cream); font-size: 1.5rem; }
.footer__brand .brand__role { color: var(--sage); }
.footer h4 {
  font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage);
  margin: 0 0 1rem; font-weight: 500;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer__links li { margin: 0; }
.footer__links a { text-decoration: none; font-size: 0.97rem; }
.footer__links a:hover { text-decoration: underline; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 230, 220, 0.2);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--step--1); color: #C9CEC0;
}
.footer__bottom a { color: #C9CEC0; }

.crisis {
  background: #4A5140;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  color: #E8E6DC;
  border: 1px solid rgba(232, 230, 220, 0.18);
}
.crisis strong { color: #fff; }
.crisis p { max-width: 80ch; margin: 0; }

.social {
  display: flex; gap: 0.75rem; margin-top: 1.25rem;
}
.social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(232, 230, 220, 0.3);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social a:hover { background: rgba(232, 230, 220, 0.14); border-color: var(--sage); }
.social svg { width: 19px; height: 19px; }

/* ---------- 12. Page header (interior pages) ---------- */
.page-head {
  padding-block: clamp(2.75rem, 6vw, 5rem) clamp(2rem, 4vw, 3.25rem);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { max-width: 18ch; }
.page-head .lede { max-width: 56ch; margin-top: 0.5em; }

.breadcrumb {
  font-size: var(--step--1); color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb li + li::before { content: "/"; color: var(--sage); }
.breadcrumb a { color: var(--text-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--olive); text-decoration: underline; }

/* ---------- 13. CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- 14. Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .tile:hover { transform: none; }
}

/* ---------- 15. Utilities ---------- */
.stack > * + * { margin-top: 1.25rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* ---------- 16. Mobile hero tuning ----------
   On phones the portrait must not push the headline and CTA below the fold.
   Social traffic arrives here first, so headline + face + button share screen one. */
@media (max-width: 880px) {
  .hero { padding-block: 1.25rem clamp(2.5rem, 7vw, 4rem); }
  .hero__media { max-width: 268px; }
  .hero__photo { aspect-ratio: 1 / 1.12; }
  .hero__sparkle--1 { width: 26px; }
  .hero__grid { gap: 1.75rem; }
  .hero .btn-row { margin-top: 1.5rem; }
  .hero .btn-row .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 420px) {
  .hero__media { max-width: 216px; }
  .hero .btn-row .btn { width: 100%; }
}

/* ---------- 17. Video grid (Instagram / TikTok) ---------- */
.video-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.video-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
  color: var(--text);
}
.video-card__frame {
  aspect-ratio: 9 / 16;
  background: #EDF0E8;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.video-card__frame img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(94, 102, 80, 0.92);
  display: grid; place-items: center;
  position: absolute;
  box-shadow: var(--shadow);
}
.video-card__play svg { width: 20px; height: 20px; color: var(--cream); margin-left: 3px; }
.video-card__body { padding: 1.15rem 1.35rem 1.4rem; }
.video-card__body h3 { font-size: 1.12rem; margin-bottom: 0.25em; }
.video-card__body p { font-size: 0.95rem; color: var(--text-soft); margin: 0; }
.video-card__meta {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mauve-dk); font-weight: 500; display: block; margin-bottom: 0.5rem;
}

/* ---------- 18. Further reading list ---------- */
.reading { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.reading li { margin: 0; border-bottom: 1px solid var(--line); }
.reading a {
  display: grid; grid-template-columns: 1fr auto; gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0.25rem 1.25rem 0;
  text-decoration: none; color: var(--text);
  transition: color 0.2s var(--ease), padding 0.25s var(--ease);
}
.reading a:hover { color: var(--olive); padding-left: 0.5rem; }
.reading__title { font-family: var(--serif); font-size: var(--step-1); line-height: 1.25; display: block; }
.reading__desc { font-size: 0.95rem; color: var(--text-soft); display: block; margin-top: 0.3rem; max-width: 62ch; }
.reading__arrow { color: var(--sage); flex: none; width: 22px; height: 22px; }
.reading a:hover .reading__arrow { color: var(--olive); }

/* ---------- 19. Small print note ---------- */
.note {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
  font-size: var(--step--1);
  color: var(--text-soft);
}
.note p { margin: 0; max-width: 72ch; }

/* ---------- 20. Spacing helpers ---------- */
/* A portrait image in a two-column split runs much taller than the text beside
   it, which leaves a dead gap before the next section. Capping the height keeps
   the two columns closer in size and the scroll feeling continuous. */
.framed--capped {
  aspect-ratio: auto;
  height: clamp(340px, 42vw, 500px);
}
@media (max-width: 880px) {
  .framed--capped { height: clamp(300px, 70vw, 420px); }
}

/* Pulls a section up when the one above it already ends in a lot of empty space. */
.section--tight { padding-top: clamp(1.75rem, 3.5vw, 3rem); }

/* ---------- 21. Contact form states ---------- */
.form__success {
  background: #EDF0E8;
  border: 1px solid #DCE2D5;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 620px;
}
.form__success h3 {
  font-size: var(--step-1);
  color: var(--olive);
  margin-bottom: 0.5em;
}
.form__success p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 0.9em;
}
.form__success p:last-child { margin-bottom: 0; }

.form__error {
  background: #FBF0EF;
  border: 1px solid #EBD3D3;
  border-left: 3px solid var(--mauve);
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  font-size: var(--step--1);
  color: var(--text);
  line-height: 1.55;
}
.form__error a { color: var(--mauve-dk); }

.form button[type="submit"][disabled] {
  opacity: 0.65;
  cursor: progress;
}
