/* ============================================================
   PRISMATIC SOUL — single stylesheet
   Palette: sage · stone · cream + iridescent accent
   Fonts:   Cormorant Garamond (display) + Lora (body)
   Design intent: ND-friendly, sensory-soft, mobile-first.
   ============================================================ */

/* -----  Design tokens  ------------------------------------- */
:root {
  /* colour */
  --cream:           #F8F2E4;     /* page background */
  --cream-deep:      #F0E6CF;     /* card / panel background */
  --sage:            #94A38B;     /* primary accent */
  --sage-deep:       #6F8068;     /* link, focus ring */
  --stone:           #847B6E;     /* muted text */
  --ink:             #2A2826;     /* primary text */
  --line:            #DDD2BA;     /* hairlines */
  --white:           #FFFDF7;

  /* iridescent gradient — used sparingly */
  --iridescent: linear-gradient(
      120deg,
      #E8D5E0 0%,
      #D9DDEB 33%,
      #DCE8DA 66%,
      #EADDC8 100%);

  /* type scale (fluid via clamp) */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.3125rem;
  --t-2xl:  clamp(1.5rem, 2.2vw + 0.8rem, 2rem);
  --t-3xl:  clamp(1.875rem, 3vw + 1rem, 2.75rem);
  --t-4xl:  clamp(2.25rem, 4vw + 1rem, 3.75rem);
  --t-5xl:  clamp(2.75rem, 5vw + 1rem, 4.5rem);

  /* spacing */
  --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;

  /* layout */
  --measure: 64ch;             /* readable text width */
  --container: 72rem;          /* max page width */
  --container-narrow: 44rem;
  --radius:    14px;
  --radius-sm: 8px;

  /* motion */
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* -----  Reset & base  -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
hr { border: 0; height: 1px; background: var(--line); margin: var(--s-7) 0; }

/* -----  Typography  ---------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.005em;
}
h1 { font-size: var(--t-5xl); font-weight: 500; letter-spacing: -0.015em; }
h2 { font-size: var(--t-4xl); font-style: italic; font-weight: 400; }
h3 { font-size: var(--t-2xl); }
h4 { font-size: var(--t-xl); font-weight: 600; }
p  { margin: 0 0 var(--s-4); max-width: var(--measure); }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.25rem; max-width: var(--measure); }
li + li { margin-top: var(--s-2); }
em { color: var(--stone); }
.lede { font-size: var(--t-lg); color: var(--stone); }

/* -----  Layout primitives  --------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-4);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--s-6); }
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: var(--s-8);
}
@media (min-width: 768px) {
  .section { padding-block: var(--s-9); }
}

.section--cream-deep { background: var(--cream-deep); }
.section--ink        { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }

/* -----  Page hero (for non-home pages) -------------------- */
.page-hero {
  padding-block: var(--s-7) var(--s-3);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: 48rem; position: relative; z-index: 1; }

/* When a body section follows the page-hero, tighten the gap. */
.page-hero + .section { padding-block-start: var(--s-4); }
.page-hero h1 {
  font-size: var(--t-4xl);
  margin-bottom: var(--s-4);
}
.page-hero__deck {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: var(--t-xl);
  color: var(--stone);
  max-width: 42rem;
  margin: 0;
}
.page-hero__shimmer {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 280px;
  background: var(--iridescent);
  opacity: 0.18;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* -----  Prose / long-form body content -------------------- */
.prose { max-width: 40rem; }
.prose > * + * { margin-top: 0; }
.prose h2 {
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
  font-size: var(--t-3xl);
  color: var(--stone);
}
.prose h3 {
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  font-size: var(--t-xl);
  font-weight: 600;
  font-style: normal;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.005em;
}
.prose h4 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  font-size: var(--t-lg);
  font-weight: 600;
}
.prose p, .prose ul, .prose ol { margin-bottom: var(--s-4); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose hr {
  margin: var(--s-6) 0;
  border: 0;
  height: 1px;
  background: var(--line);
}
.prose blockquote {
  border-left: 2px solid var(--sage);
  padding: var(--s-2) 0 var(--s-2) var(--s-4);
  font-style: italic;
  color: var(--stone);
  margin: var(--s-5) 0;
  max-width: none;
}
.prose blockquote p { margin-bottom: var(--s-2); }
.prose .lede { font-size: var(--t-lg); color: var(--ink); }
.prose strong { font-weight: 600; color: var(--ink); }

/* Definition-list style for option pairs (e.g., Mentoring vs Coaching) */
.callout-pair {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: var(--s-5);
  margin: var(--s-6) 0;
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .callout-pair { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
.callout-pair h4 { margin: 0 0 var(--s-2); font-size: var(--t-base); letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-deep); }
.callout-pair p { margin: 0; }

/* Stat / detail block (e.g., format + length + price in mentoring) */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin: var(--s-6) 0;
}
@media (min-width: 600px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .detail-grid { grid-template-columns: repeat(4, 1fr); } }
.detail-grid__item {
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  padding: var(--s-4);
}
.detail-grid__item h4 {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 var(--s-2);
  font-weight: 600;
}
.detail-grid__item p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--t-xl);
  margin: 0;
  font-weight: 500;
}

/* External-link button */
.external-link-card {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-6) var(--s-5);
  border-radius: var(--radius);
  text-decoration: none;
  display: block;
  margin: var(--s-6) 0;
  transition: background 0.25s var(--ease);
}
.external-link-card:hover { background: #1A1816; color: var(--cream); }
.external-link-card h3 { color: var(--cream); margin-bottom: var(--s-2); }
.external-link-card p { color: var(--cream); opacity: 0.8; margin: 0; }
.external-link-card__url {
  display: inline-block;
  margin-top: var(--s-3);
  color: var(--sage);
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
}

.eyebrow {
  display: inline-block;
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--s-4);
}

/* -----  Skip link  ----------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -100px;
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: var(--s-4); color: var(--cream); }

/* -----  Header & nav  -------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 242, 228, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  text-decoration: none;
  color: #1A1816;
}
.logo:hover { color: #1A1816; }
.logo__mark { width: 18px; height: 22px; flex: 0 0 auto; }
.logo__word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.175rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: #1A1816;
}

/* Pull the logo closer to the left edge on wider screens */
@media (min-width: 900px) {
  .site-header .container {
    padding-inline: var(--s-4);
  }
}
@media (min-width: 1280px) {
  .site-header .container {
    max-width: none;
    padding-inline: var(--s-5);
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.primary-nav {
  display: none;
}
.primary-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.primary-nav a {
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-sm);
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.primary-nav a:hover { color: var(--sage-deep); }

.primary-nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: var(--s-4);
}
.primary-nav.is-open ul {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block; }
}

/* -----  Buttons  ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: var(--s-3) var(--s-5);
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-base);
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.15s var(--ease);
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn:active { transform: translateY(1px); }

/* -----  Hero (layered: bg image + cream overlay + text on top) ----- */
.hero {
  position: relative;
  padding-block: var(--s-9) var(--s-8);
  text-align: center;
  overflow: hidden;
  min-height: clamp(460px, 78vh, 720px);
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg,
    rgba(248, 242, 228, 0.06) 0%,
    rgba(248, 242, 228, 0.16) 45%,
    rgba(248, 242, 228, 0.60) 88%,
    rgba(248, 242, 228, 0.90) 100%);
}
.hero__inner {
  max-width: 48rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: var(--s-5);
  text-shadow: 0 1px 28px rgba(248, 242, 228, 0.65);
}
.hero__deck {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: var(--t-2xl);
  color: #FFFFFF;
  margin: 0 auto var(--s-6);
  max-width: 36rem;
  text-shadow: 0 1px 18px rgba(42, 40, 38, 0.55);
}
.hero__lede {
  font-size: var(--t-lg);
  color: var(--ink);
  max-width: 38rem;
  margin: 0 auto var(--s-7);
  text-shadow: 0 1px 16px rgba(248, 242, 228, 0.7);
}
.hero__shimmer {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 320px;
  background: var(--iridescent);
  opacity: 0.22;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* -----  Track grid  ---------------------------------------- */
.track-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
@media (min-width: 768px) { .track-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .track-grid { grid-template-columns: repeat(3, 1fr); } }
.track-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-5);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.track-card:hover { border-color: var(--sage); transform: translateY(-2px); }
.track-card h3 {
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-xl);
  margin-bottom: var(--s-3);
}
.track-card__hook {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--ink);
  margin-bottom: var(--s-3);
  max-width: none;
}
.track-card__for {
  font-size: var(--t-sm);
  color: var(--stone);
  margin: 0;
  max-width: none;
}

/* -----  Offer grid  ---------------------------------------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
@media (min-width: 600px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }
.offer-card {
  display: block;
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: var(--s-5);
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.offer-card:hover { border-color: var(--sage); background: var(--white); }
.offer-card h3 {
  font-size: var(--t-xl);
  font-style: italic;
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.offer-card p { font-size: var(--t-sm); color: var(--stone); margin: 0; }
.offer-card__arrow {
  display: inline-block;
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  color: var(--sage-deep);
}

/* -----  Photo strip placeholder  --------------------------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.photo-strip__cell {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: var(--iridescent), var(--cream-deep);
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
}
.photo-strip__cell::after {
  content: "chateau photo";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: var(--t-xs);
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.photo-strip__cell img,
.photo-strip__cell picture { width: 100%; height: 100%; display: block; }
.photo-strip__cell picture img { object-fit: cover; }
.photo-strip__cell:has(img)::after { content: none; }
@media (max-width: 600px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* -----  Pull-quote (home page — atmospheric breaks) ------- */
.pull-quote {
  text-align: center;
  padding-block: var(--s-8);
  background: var(--cream);
}
.pull-quote--deep { background: var(--cream-deep); }
.pull-quote__text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw + 0.85rem, 2.25rem);
  line-height: 1.36;
  max-width: 42rem;
  margin: 0 auto var(--s-4);
  color: var(--ink);
  padding-inline: var(--s-4);
}
.pull-quote__source {
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
  white-space: nowrap;
}
.pull-quote__text .pull-quote__source {
  margin-inline-start: var(--s-3);
  display: inline;
}

/* -----  Manuscript quote list (book page) ----------------- */
.manuscript-quotes {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-5) 0 var(--s-7);
  max-width: none;
}
.manuscript-quote,
.prose .manuscript-quote {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-7);
  margin: 0;
  max-width: none;
  font-style: normal;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
@media (max-width: 600px) {
  .manuscript-quote { padding: var(--s-5); }
}
.manuscript-quote:hover { border-color: var(--sage); background: var(--white); }
.manuscript-quote__text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: var(--t-lg);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.manuscript-quote__source {
  font-family: "Lora", Georgia, serif;
  font-style: normal;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  margin-inline-start: var(--s-3);
}

/* -----  Feature strip (full-bleed image) ------------------- */
.feature-strip {
  position: relative;
  height: clamp(200px, 38vh, 420px);
  overflow: hidden;
}
.feature-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 40, 38, 0.32) 0%, rgba(42, 40, 38, 0.04) 38%, transparent 68%);
  pointer-events: none;
}
.feature-strip__caption {
  position: absolute;
  left: 50%;
  top: var(--s-6);
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 2.6vw + 0.65rem, 2.125rem);
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.005em;
  pointer-events: none;
}

/* -----  Signup section  ------------------------------------ */
.signup {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: var(--iridescent);
  opacity: 0.22;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.signup__inner { position: relative; z-index: 1; max-width: 36rem; margin-inline: auto; }
.signup h2 { margin-bottom: var(--s-3); }
.signup p { margin-inline: auto; max-width: 32rem; }
.signup__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.signup__form input[type="email"] {
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-base);
  padding: var(--s-3) var(--s-4);
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  width: 100%;
  text-align: center;
}
@media (min-width: 600px) {
  .signup__form { flex-direction: row; max-width: 30rem; margin-inline: auto; }
  .signup__form input[type="email"] { text-align: left; }
}
.signup__note {
  font-size: var(--t-xs);
  color: var(--stone);
  margin-top: var(--s-4);
}

/* -----  Bio teaser  ---------------------------------------- */
.bio-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 768px) {
  .bio-teaser { grid-template-columns: 220px 1fr; gap: var(--s-7); }
}
.bio-teaser__photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--iridescent), var(--cream-deep);
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
  margin-inline: auto;
}
.bio-teaser__photo::after {
  content: "headshot";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: var(--t-xs);
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.bio-teaser__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.bio-teaser p { font-size: var(--t-lg); }

/* -----  Footer  -------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--s-7);
  margin-top: var(--s-9);
  font-size: var(--t-sm);
}
.site-footer a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(248, 242, 228, 0.25); padding-bottom: 1px; }
.site-footer a:hover { border-bottom-color: var(--cream); color: var(--cream); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer h4 {
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--s-3);
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: var(--s-2); }
.site-footer__legal {
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(248, 242, 228, 0.15);
  font-size: var(--t-xs);
  color: rgba(248, 242, 228, 0.7);
}

/* -----  Cookie banner  ------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  max-width: 32rem;
  margin-inline: auto;
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-4);
  border-radius: var(--radius);
  font-size: var(--t-sm);
  box-shadow: 0 10px 40px rgba(42, 40, 38, 0.25);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner a { color: var(--cream); }
.cookie-banner__actions { display: flex; gap: var(--s-3); }
.cookie-banner .btn { min-height: 40px; padding: var(--s-2) var(--s-4); font-size: var(--t-sm); }

/* -----  Utilities  ----------------------------------------- */
.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-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }

/* -----  Print  --------------------------------------------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .signup, .hero__shimmer { display: none !important; }
  body { color: #000; background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
  .section { padding-block: 1rem; }
}
