/* ============================================================
   LIFE'S DARING ADVENTURE — Monique Shefer Life Coaching
   Single stylesheet.
   Palette: white · silver · green + a little pink
   Fonts:   Cormorant Garamond (display) + Lora (body)
   Design intent: calm, spacious, mobile-first, accessible.
   ============================================================ */

/* -----  Design tokens  ------------------------------------- */
:root {
  /* colour */
  --paper:        #FAFBFA;   /* page background — soft white */
  --white:        #FFFFFF;
  --mist:         #EEF2EF;   /* card / panel — silvery white */
  --mist-deep:    #E3E9E5;   /* deeper panel */
  --silver:       #D9DEDB;   /* hairlines */
  --silver-deep:  #BFC7C2;
  --green:        #6FA386;   /* primary accent */
  --green-deep:   #3E6B52;   /* links, focus ring */
  --green-ink:    #2B362F;   /* dark sections, footer */
  --pink:         #EBC6D5;   /* soft pink accent */
  --pink-deep:    #BE7191;   /* pink used for small accents/text */
  --stone:        #6C736E;   /* muted text */
  --ink:          #2A302C;   /* primary text */
  --line:         #DCE2DE;

  /* iridescent gradient — white/silver/green/pink, used sparingly */
  --iridescent: linear-gradient(
      120deg,
      #F3DCE6 0%,
      #E4EBE7 34%,
      #CFE4D6 67%,
      #EEF2EF 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;
  --container: 72rem;
  --container-narrow: 44rem;
  --radius:    14px;
  --radius-sm: 8px;

  --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(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--green-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(--green-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--mist  { background: var(--mist); }
.section--green-ink { background: var(--green-ink); color: var(--paper); }
.section--green-ink h1, .section--green-ink h2, .section--green-ink h3 { color: var(--white); }

/* -----  Page banner (top image band on interior pages) ----- */
.page-banner {
  position: relative;
  height: clamp(150px, 26vh, 300px);
  overflow: hidden;
  background: var(--mist);
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-banner__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(43, 54, 47, 0.18) 0%, rgba(43, 54, 47, 0.02) 32%,
    rgba(250, 251, 250, 0) 60%, rgba(250, 251, 250, 0.85) 100%);
}

/* -----  Page hero (non-home pages) ------------------------- */
.page-hero {
  padding-block: var(--s-7) var(--s-3);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-banner + .page-hero { padding-block-start: var(--s-6); }
.page-hero__inner { max-width: 48rem; position: relative; z-index: 1; }
.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.5; filter: blur(60px);
  pointer-events: none; z-index: 0;
}

/* -----  Prose / long-form body content -------------------- */
.prose { max-width: 42rem; }
.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 p, .prose ul, .prose ol { margin-bottom: var(--s-4); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose blockquote {
  border-left: 2px solid var(--green);
  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 strong { font-weight: 600; color: var(--ink); }

.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(--green-ink); color: var(--white);
  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(--white); }

/* -----  Header & nav  -------------------------------------- */
.site-header {
  position: sticky; top: 0;
  background: rgba(250, 251, 250, 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.5rem; text-decoration: none; color: var(--green-ink); }
.logo:hover { color: var(--green-ink); }
.logo__mark { width: 30px; height: 30px; flex: 0 0 auto; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-ink); white-space: nowrap;
}
.logo__sub {
  font-family: "Lora", Georgia, serif;
  font-size: 0.58rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--stone); margin-top: 3px; white-space: nowrap;
}
@media (max-width: 400px) {
  .logo__word { font-size: 1rem; }
  .logo__sub { font-size: 0.52rem; letter-spacing: 0.1em; }
  .logo__mark { width: 26px; height: 26px; }
}

@media (min-width: 1120px) {
  .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(--silver); 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-5); align-items: center; }
.primary-nav a, .has-sub > .sub-toggle {
  font-family: "Lora", Georgia, serif; font-size: var(--t-sm);
  text-decoration: none; color: var(--ink); letter-spacing: 0.02em;
}
@media (min-width: 1120px) {
  .primary-nav > ul > li > a,
  .primary-nav .sub-toggle { white-space: nowrap; }
  .primary-nav ul { gap: var(--s-4); }
}
@media (min-width: 1320px) { .primary-nav ul { gap: var(--s-5); } }
.primary-nav a:hover { color: var(--green-deep); }

/* dropdown */
.has-sub { position: relative; }
.has-sub > .sub-toggle {
  font-family: "Lora", Georgia, serif; font-size: var(--t-sm);
  background: none; border: 0; color: var(--ink); cursor: pointer;
  letter-spacing: 0.02em; padding: 0; display: inline-flex; align-items: center; gap: 0.3rem;
}
.has-sub > .sub-toggle:hover { color: var(--green-deep); }
.has-sub > .sub-toggle::after { content: "▾"; font-size: 0.7em; color: var(--stone); }
.subnav {
  list-style: none; margin: 0; padding: var(--s-4);
  position: absolute; top: 100%; margin-top: 8px; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 12px 34px rgba(43, 54, 47, 0.12);
  min-width: 230px; flex-direction: column; gap: 0; align-items: stretch;
  opacity: 0; visibility: hidden; transition: opacity 0.18s var(--ease);
}
.subnav li + li { margin-top: 0; }
.subnav a { display: block; padding: 0.4rem var(--s-3); border-radius: var(--radius-sm); white-space: nowrap; }
.subnav a:hover { background: var(--mist); }
@media (min-width: 1120px) {
  /* Invisible hover-bridge so the cursor can travel from the trigger
     to the submenu without crossing an empty gap that closes it. */
  .has-sub::after {
    content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px;
  }
  .has-sub:hover .subnav,
  .has-sub:focus-within .subnav { opacity: 1; visibility: visible; }
}

.primary-nav.is-open {
  display: block; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--line); padding: var(--s-4);
  max-height: calc(100dvh - 64px); overflow-y: auto;
}
.primary-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: var(--s-4); }
.primary-nav.is-open .subnav {
  position: static; transform: none; opacity: 1; visibility: visible; display: flex;
  box-shadow: none; border: 0; border-left: 1px solid var(--silver);
  border-radius: 0; padding: var(--s-2) 0 var(--s-2) var(--s-4); margin-top: var(--s-3); min-width: 0;
}
.primary-nav.is-open .has-sub > .sub-toggle { margin-bottom: 0; }

.nav-cta a {
  border: 1px solid var(--green-ink); border-radius: 999px;
  padding: var(--s-2) var(--s-4); color: var(--green-ink);
}
.nav-cta a:hover { background: var(--green-ink); color: var(--white); }

@media (min-width: 1120px) {
  .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(--green-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(--green-ink); color: var(--white); }
.btn--primary:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--green-ink); color: var(--white); }
.btn:active { transform: translateY(1px); }

/* -----  Hero (layered: bg image + light overlay + text) ---- */
.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(250, 251, 250, 0.10) 0%,
    rgba(250, 251, 250, 0.24) 45%,
    rgba(250, 251, 250, 0.66) 86%,
    rgba(250, 251, 250, 0.94) 100%);
}
.hero__inner { max-width: 50rem; margin-inline: auto; position: relative; z-index: 1; }
.hero__brand {
  font-family: "Lora", Georgia, serif;
  font-size: var(--t-sm); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--green-ink); margin: 0 auto var(--s-4); max-width: none;
  text-shadow: 0 1px 14px rgba(250, 251, 250, 0.9);
}
.hero h1 { margin-bottom: var(--s-5); text-shadow: 0 1px 28px rgba(250, 251, 250, 0.7); }
.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: 40rem;
  text-shadow: 0 1px 18px rgba(43, 54, 47, 0.6);
}
.hero__lede {
  font-size: var(--t-lg); color: var(--ink); max-width: 40rem;
  margin: 0 auto var(--s-7); text-shadow: 0 1px 16px rgba(250, 251, 250, 0.8);
}
.hero__cta { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
.hero__shimmer {
  position: absolute; inset: -10% -10% auto -10%; height: 320px;
  background: var(--iridescent); opacity: 0.5; filter: blur(60px);
  pointer-events: none; z-index: -1;
}

/* -----  Feature row (text + image) ------------------------- */
.feature-row {
  display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center;
}
@media (min-width: 860px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .feature-row--reverse .feature-row__media { order: 2; }
}
.feature-row__media { border-radius: var(--radius); overflow: hidden; }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-row p:last-child { margin-bottom: 0; }

/* -----  Offer / link 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(--mist); 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), transform 0.25s var(--ease);
}
.offer-card:hover { border-color: var(--green); background: var(--white); transform: translateY(-2px); }
.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(--green-deep); }

/* -----  What-we-do list ------------------------------------ */
.do-list { list-style: none; padding: 0; margin: var(--s-5) 0; max-width: 40rem; }
.do-list li {
  position: relative; padding-left: var(--s-6); margin-bottom: var(--s-3);
  font-size: var(--t-lg);
}
.do-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--green); font-size: 0.95em;
}

/* -----  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(43,54,47,0.30) 0%, rgba(43,54,47,0.04) 38%, transparent 68%);
  pointer-events: none;
}
.feature-strip__caption {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 92%; 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(--white); text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

/* -----  Pull-quote (atmospheric breaks) -------------------- */
.pull-quote { text-align: center; padding-block: var(--s-8); background: var(--paper); }
.pull-quote--mist { background: var(--mist); }
.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; margin-inline-start: var(--s-3); display: inline;
}

/* -----  Testimonials (reviews) ----------------------------- */
.testimonial-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-6);
}
@media (min-width: 700px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s-6); display: flex; flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.testimonial:hover { border-color: var(--green); transform: translateY(-2px); }
.testimonial h3 {
  font-size: var(--t-xl); font-style: italic; font-weight: 500;
  margin-bottom: var(--s-3); color: var(--green-deep);
}
.testimonial p { margin-bottom: var(--s-3); }
.testimonial__author {
  margin-top: auto; font-family: "Lora", Georgia, serif; font-size: var(--t-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone);
}

/* -----  Quote list (inspiration) --------------------------- */
.quote-list { display: flex; flex-direction: column; gap: var(--s-3); margin: var(--s-6) 0; max-width: none; }
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s-5) var(--s-6); max-width: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.quote-card:hover { border-color: var(--pink); background: var(--white); }
.quote-card p {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: var(--t-lg); line-height: 1.4; color: var(--ink); margin: 0; max-width: none;
}
.quote-card cite {
  display: block; margin-top: var(--s-2);
  font-family: "Lora", Georgia, serif; font-style: normal; font-size: var(--t-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-deep);
}

/* -----  Resource cards (with image) ------------------------ */
.resource-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-6); }
@media (min-width: 640px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .resource-grid { grid-template-columns: repeat(3, 1fr); } }
.resource-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.resource-card:hover { border-color: var(--green); transform: translateY(-3px); }
.resource-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--mist); }
.resource-card__media img { width: 100%; height: 100%; object-fit: cover; }
.resource-card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); }
.resource-card__body h3 { font-size: var(--t-lg); font-weight: 600; font-style: normal; margin: 0; }
.resource-card__body p { font-size: var(--t-sm); color: var(--stone); margin: 0; }
.resource-card__tag {
  align-self: flex-start; font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-deep); background: var(--mist); border-radius: 999px; padding: 2px 10px;
}
/* keep a two-card row from stretching to three columns */
@media (min-width: 1000px) { .resource-grid--two { grid-template-columns: repeat(2, 1fr); } }

/* double-wide boxed image above the Stress / Neurodiversity pair */
.resource-band {
  margin-top: var(--s-6); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
}
.resource-band picture { display: block; }
.resource-band img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 5; object-fit: cover; }

/* pair of link cards beneath the shared resource band */
.pair-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-5); }
@media (min-width: 640px) { .pair-grid { grid-template-columns: 1fr 1fr; } }

/* -----  Resource link categories --------------------------- */
.link-cats {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-6);
}
@media (min-width: 640px)  { .link-cats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .link-cats { grid-template-columns: repeat(3, 1fr); } }
.link-cat {
  background: var(--mist); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s-5); break-inside: avoid;
}
.link-cat h3 {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: normal; font-weight: 600;
  font-size: var(--t-lg); letter-spacing: 0.02em; margin: 0 0 var(--s-3); color: var(--green-ink);
  padding-bottom: var(--s-2); border-bottom: 1px solid var(--silver);
}
.link-cat ul { list-style: none; padding: 0; margin: 0; max-width: none; }
.link-cat li { margin: 0; }
.link-cat li + li { margin-top: var(--s-2); }
.link-cat a { text-decoration: none; border-bottom: 1px solid var(--silver); }
.link-cat a:hover { border-bottom-color: var(--green-deep); color: var(--ink); }
.link-cat .text-only { color: var(--stone); }

/* -----  Blog cards ----------------------------------------- */
.post-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); margin-top: var(--s-6); }
@media (min-width: 720px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.post-card:hover { border-color: var(--green); transform: translateY(-3px); }
.post-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--mist); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.post-card__meta { font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.post-card__body h3 { font-size: var(--t-xl); font-style: italic; font-weight: 500; margin: 0; }
.post-card__body h3 a { text-decoration: none; color: var(--ink); }
.post-card__body h3 a:hover { color: var(--green-deep); }
.post-card__excerpt { font-size: var(--t-sm); color: var(--stone); margin: 0; }
.post-card__arrow { margin-top: auto; font-size: var(--t-sm); color: var(--green-deep); }

/* -----  Signup / contact form ------------------------------ */
.signup {
  background: var(--mist); 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.5; filter: blur(50px); pointer-events: none; z-index: 0;
}
.signup__inner { position: relative; z-index: 1; max-width: 36rem; margin-inline: auto; }

/* contact two-column */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-7); }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: var(--s-8); } }
.contact-details p { margin-bottom: var(--s-3); }
.contact-details a { word-break: break-word; }

.form { display: grid; gap: var(--s-4); margin-top: var(--s-5); max-width: none; }
.form__row { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-size: var(--t-sm); color: var(--stone); margin-bottom: var(--s-2); }
.form input, .form textarea {
  font-family: "Lora", Georgia, serif; font-size: 1rem;
  padding: var(--s-3) var(--s-4); min-height: 48px;
  border: 1px solid var(--silver); border-radius: var(--radius-sm);
  background: var(--white); width: 100%; color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-size: var(--t-sm); color: var(--green-deep); min-height: 1.2em; }

.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: 1rem; padding: var(--s-3) var(--s-4);
  min-height: 48px; border: 1px solid var(--silver); border-radius: 999px;
  background: var(--white); 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: 240px 1fr; gap: var(--s-7); } }
.bio-teaser__photo {
  width: 100%; max-width: 240px; aspect-ratio: 1/1; border-radius: 50%;
  overflow: hidden; margin-inline: auto; border: 3px solid var(--white);
  box-shadow: 0 10px 30px rgba(43,54,47,0.12);
}
.bio-teaser__photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-teaser p { font-size: var(--t-lg); }

/* portrait used on about page */
.about-portrait { border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 40px rgba(43,54,47,0.14); }
.about-portrait img { width: 100%; height: auto; display: block; }

/* -----  Footer  -------------------------------------------- */
.site-footer {
  background: var(--green-ink); color: var(--paper);
  padding-block: var(--s-7); margin-top: var(--s-9); font-size: var(--t-sm);
}
.site-footer a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(250,251,250,0.25); padding-bottom: 1px; }
.site-footer a:hover { border-bottom-color: var(--paper); color: var(--white); }
.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(--green);
  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(250,251,250,0.15);
  font-size: var(--t-xs); color: rgba(250,251,250,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(--green-ink); color: var(--paper);
  padding: var(--s-4); border-radius: var(--radius); font-size: var(--t-sm);
  box-shadow: 0 10px 40px rgba(43,54,47,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(--paper); }
.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); }
.cookie-banner .btn--primary { background: var(--green); border-color: var(--green); color: var(--green-ink); }
.cookie-banner .btn--ghost { color: var(--paper); border-color: var(--paper); }

/* -----  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-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mx-auto { margin-inline: auto; }
.measure-center { max-width: var(--container-narrow); margin-inline: auto; }

/* -----  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; }
  .testimonial, .post-card, .resource-card, article { break-inside: avoid; }
}
