/* Jess Breathe and Flow — shared design system */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Lato:wght@400;700;900&display=swap');

:root {
  /* Brand palette */
  --ivory: #fffdea;
  --slate: #5d8491;
  --clay: #a36f35;
  --mist: #91b6c2;
  --deep-blue: #34515b;
  --terracotta: #d89c8a;
  --inner-light: #fffac5;
  --ice-blue: #c0dae2;
  --stone: #8d989b;
  --mist-alt: #91aab2;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--deep-blue);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--ivory);
  padding: 28px 0;
  border-bottom: 1px solid rgba(93, 132, 145, 0.15);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-footer .logo img {
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.98rem;
  color: var(--deep-blue);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--clay); }

.nav-cta {
  background: var(--slate);
  color: var(--ivory) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--slate);
  color: var(--ivory);
}

.btn-primary:hover { background: var(--deep-blue); }

.btn-secondary {
  background: transparent;
  color: var(--clay);
  border: 1.5px solid var(--clay);
}

.btn-secondary:hover { background: var(--clay); color: var(--ivory); }

.btn-ghost {
  background: transparent;
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 14px 8px;
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }

.section-tight { padding: 64px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--clay);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--slate);
  margin: 0 0 20px;
  line-height: 1.15;
  font-weight: 500;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 20px; max-width: 62ch; }

.subhead {
  font-size: 1.15rem;
  color: var(--deep-blue);
  max-width: 56ch;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ivory);
  padding: 88px 0 96px;
}

.hero .wrap {
  max-width: 780px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---------- Cards / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }

.split-media img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-media.placeholder {
  background: var(--mist);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 24px;
}

.tint-mist { background: var(--mist); }
.tint-ivory { background: var(--ivory); }
.tint-inner-light { background: var(--inner-light); }
.tint-clay { background: var(--clay); color: var(--ivory); }
.tint-clay h2, .tint-clay h3 { color: var(--ivory); }

/* ---------- Agreement / list blocks ---------- */
.agreement-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.agreement-list li {
  padding-left: 28px;
  position: relative;
}

.agreement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--clay);
  border-radius: 50%;
}

/* ---------- Newsletter strip ---------- */
.newsletter {
  background: var(--terracotta);
  padding: 56px 0;
}

.newsletter-box {
  background: var(--ivory);
  max-width: 620px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 4px;
  text-align: center;
}

.newsletter-box form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-box input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--stone);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-fine {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--clay);
  color: var(--ivory);
  padding: 64px 0 32px;
}

.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.site-footer .logo { color: var(--ivory); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--inner-light);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: var(--ivory);
  text-decoration: none;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-nav a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,253,234,0.25);
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.85;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--ivory);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--duration-medium) var(--ease-smoke);
}

.footer-social a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 1; }
  .split.reverse .split-copy { order: 2; }
  section { padding: 64px 0; }
  .footer-top { flex-direction: column; gap: 32px; }
}

/* ================================================
   Motion system: "smoke" — slow, dissolving, hazy
   used consistently for buttons, links, pages, images
   ================================================ */

:root {
  --ease-smoke: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 1200ms;
  --duration-medium: 800ms;
  --duration-fast: 400ms;
}

/* Smooth cross-page flow using the native View Transitions API.
   Old page dissolves outward into haze, new page condenses into
   focus out of it, like smoke clearing. Chrome/Edge only; other
   browsers just navigate normally, no JS framework required. */
@view-transition {
  navigation: auto;
}

@keyframes smoke-dissolve-out {
  from { opacity: 1; filter: blur(0); transform: scale(1); }
  to   { opacity: 0; filter: blur(14px); transform: scale(1.04); }
}

@keyframes smoke-condense-in {
  from { opacity: 0; filter: blur(14px); transform: scale(0.98); }
  to   { opacity: 1; filter: blur(0); transform: scale(1); }
}

::view-transition-old(root) {
  animation: smoke-dissolve-out var(--duration-slow) var(--ease-smoke) both;
}

::view-transition-new(root) {
  animation: smoke-condense-in var(--duration-slow) var(--ease-smoke) both;
}

/* Buttons: a soft bloom, like a puff releasing outward on hover,
   and a gentle blur-settle rather than a hard snap */
.btn {
  transition:
    background-color var(--duration-medium) var(--ease-smoke),
    color var(--duration-medium) var(--ease-smoke),
    transform var(--duration-slow) var(--ease-smoke),
    box-shadow var(--duration-slow) var(--ease-smoke),
    filter var(--duration-medium) var(--ease-smoke);
  filter: blur(0);
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 60px -12px rgba(93, 132, 145, 0.5);
}

.btn:active {
  transform: scale(0.97);
  filter: blur(0.3px);
  transition-duration: var(--duration-fast);
}

.btn-secondary:hover {
  box-shadow: 0 24px 60px -12px rgba(163, 111, 53, 0.45);
}

/* Links: an underline that drifts in slowly, like it's condensing
   out of haze rather than being drawn */
.main-nav a,
.footer-nav a,
.logo {
  position: relative;
}

.main-nav a::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: currentColor;
  filter: blur(0.4px);
  opacity: 0;
  transition:
    width var(--duration-slow) var(--ease-smoke),
    opacity var(--duration-medium) var(--ease-smoke);
}

.main-nav a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
  opacity: 0.9;
}

.main-nav a.nav-cta::after { display: none; }

.main-nav a, .footer-nav a {
  transition: color var(--duration-medium) var(--ease-smoke), opacity var(--duration-medium) var(--ease-smoke);
}

/* Images: resolve out of a haze as they enter view, blur clearing
   to sharp alongside a slow settle, once, no repeat */
.split-media {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(22px) scale(0.97);
  transition:
    opacity var(--duration-slow) var(--ease-smoke),
    filter var(--duration-slow) var(--ease-smoke),
    transform var(--duration-slow) var(--ease-smoke);
}

.split-media.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* Respect people who've asked for less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .split-media { opacity: 1; filter: none; transform: none; }
  .btn { filter: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}

/* ================================================
   Hand-drawn annotations — circles, underlines, arrows
   Caveat handwriting accent + existing brand ink colors
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

.handwritten {
  font-family: 'Caveat', cursive;
  color: var(--clay);
  line-height: 1;
}

.annotate {
  position: relative;
  display: inline-block;
}

.annotate svg {
  position: absolute;
  overflow: visible;
  pointer-events: none;
  filter: blur(0);
  transition: filter var(--duration-slow) var(--ease-smoke);
}

.annotate:not(.in-view) svg {
  filter: blur(3px);
}

.annotate svg path {
  fill: none;
  stroke: var(--clay);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset var(--duration-slow) var(--ease-smoke);
}

.annotate-thick svg path {
  stroke-width: 7;
}

.annotate.in-view svg path {
  stroke-dashoffset: 0;
}

.annotate-underline svg {
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 18px;
}

.annotate-circle {
  padding: 0 6px;
}

.annotate-circle svg {
  left: -8%;
  top: -22%;
  width: 116%;
  height: 148%;
}

.annotate-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.annotate-arrow svg {
  position: static;
  flex-shrink: 0;
  transition: filter var(--duration-slow) var(--ease-smoke);
}

.annotate-arrow:not(.in-view) svg { filter: blur(3px); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid .split-media {
  aspect-ratio: 4/5;
  margin: 0;
}

.gallery-grid .split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Full-bleed hero (retreat pages) ---------- */
.hero-fullbleed {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero-fullbleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(52,81,91,0.35), rgba(52,81,91,0.6));
  z-index: 1;
}

.hero-fullbleed .hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 720px;
  padding: 0 32px;
}

.hero-fullbleed .eyebrow {
  color: var(--inner-light);
}

.hero-fullbleed h1 {
  color: var(--ivory);
}

.hero-fullbleed .retreat-meta {
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin: 16px 0 32px;
  opacity: 0.95;
}

/* ---------- Problem section (curved, tint-clay) ---------- */
.curved-section {
  background: var(--deep-blue);
  color: var(--ivory);
  padding: 88px 0;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
}

.curved-section h2 { color: var(--ivory); text-align: center; }

.curved-section .subhead {
  color: var(--ivory);
  opacity: 0.9;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card h3 {
  color: var(--terracotta);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 16px;
}

.problem-card p {
  background: rgba(255,253,234,0.12);
  padding: 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  text-align: center;
  max-width: none;
  margin: 0;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--ivory);
}

.btn-on-dark {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid var(--ivory);
}

.btn-on-dark:hover { background: var(--ivory); color: var(--deep-blue); }

.center-actions { text-align: center; }

/* ---------- Four column grid ---------- */
.col-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.col-grid-4 h3 {
  color: var(--clay);
  font-size: 1.1rem;
}

.col-grid-4 p {
  font-size: 0.95rem;
  max-width: none;
}

/* ---------- About preview ---------- */
.about-preview .eyebrow { text-align: left; }

.about-preview blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--slate);
  margin: 0 0 32px;
  max-width: 62ch;
}

.credentials-line {
  font-size: 0.9rem;
  color: var(--stone);
  border-top: 1px solid rgba(93,132,145,0.2);
  padding-top: 16px;
  margin-top: 24px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.testimonial-card {
  background: var(--inner-light);
  padding: 28px;
  border-radius: 4px;
}

.testimonial-card p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 16px;
  max-width: none;
}

.testimonial-card .source {
  font-size: 0.85rem;
  color: var(--clay);
  font-weight: 700;
}

/* ---------- Numbered steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--mist);
  margin-bottom: 8px;
  line-height: 1;
}

.step-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-item p { font-size: 0.95rem; }

/* ---------- Partner logo strip ---------- */
.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 32px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--stone);
  opacity: 0.85;
}

@media (max-width: 860px) {
  .problem-grid, .col-grid-4, .testimonial-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .curved-section { border-radius: 0; }
  .logo-strip { gap: 28px; font-size: 0.95rem; }
}

/* ---------- Full-bleed split hero (home page) ---------- */
.hero-split-full {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 680px;
}

.hero-split-full .hero-text {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-split-full .hero-image {
  position: relative;
  overflow: hidden;
}

.hero-split-full .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-split-full .hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--slate);
  margin-top: 16px;
}

@media (max-width: 860px) {
  .hero-split-full { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-full .hero-image { min-height: 380px; }
  .hero-split-full .hero-text { padding: 56px 24px; }
}

/* ---------- Partner logo marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 32px 0;
  background: var(--ivory);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(35%);
  transition: opacity var(--duration-medium) var(--ease-smoke), filter var(--duration-medium) var(--ease-smoke);
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Generic reveal (extends the smoke treatment to any element) ---------- */
.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(18px);
  transition:
    opacity var(--duration-slow) var(--ease-smoke),
    filter var(--duration-slow) var(--ease-smoke),
    transform var(--duration-slow) var(--ease-smoke);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Staggered "breathing" cascade for grids, each item settles a beat after the last */
.problem-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.problem-grid .reveal:nth-child(2) { transition-delay: 140ms; }
.problem-grid .reveal:nth-child(3) { transition-delay: 280ms; }

.col-grid-4 .reveal:nth-child(1) { transition-delay: 0ms; }
.col-grid-4 .reveal:nth-child(2) { transition-delay: 110ms; }
.col-grid-4 .reveal:nth-child(3) { transition-delay: 220ms; }
.col-grid-4 .reveal:nth-child(4) { transition-delay: 330ms; }

.testimonial-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: 140ms; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: 280ms; }

.steps-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.steps-grid .reveal:nth-child(2) { transition-delay: 140ms; }
.steps-grid .reveal:nth-child(3) { transition-delay: 280ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; filter: none; transform: none; transition-delay: 0ms !important; }
}

/* ---------- Research & Insights page ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.stat-card {
  background: var(--ivory);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}

.stat-card img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 8px;
  display: block;
}

.stat-card.big-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card .big-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card .big-num-label {
  font-size: 1.05rem;
  color: var(--deep-blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card .big-num-source {
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
}

.thesis-callout {
  background: var(--mist);
  border-radius: 6px;
  padding: 36px 40px;
  margin: 32px 0;
}

.thesis-callout h3 {
  color: var(--ivory);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.thesis-callout p {
  color: var(--ivory);
  opacity: 0.95;
}

.thesis-callout .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--inner-light);
  margin-top: 16px;
}

.sources-list {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

@media (max-width: 860px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* Full Moon tier buttons */
.stat-card.big-number .btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* ---------- Mobile navigation ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--slate);
  margin: 5px 0;
  transition: transform var(--duration-medium) var(--ease-smoke),
              opacity var(--duration-medium) var(--ease-smoke);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-top: 1px solid rgba(93,132,145,0.18);
    box-shadow: 0 18px 40px rgba(52,81,91,0.12);
    padding: 12px 24px 24px;
    z-index: 60;
  }
  .main-nav.is-open { display: flex; }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(93,132,145,0.12);
  }
  .main-nav li:last-child a { border-bottom: 0; }
  .main-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-radius: 2px;
  }
}

/* ---------- Movement statement ---------- */
.movement {
  background: var(--deep-blue);
  text-align: center;
}
.movement h2 {
  color: var(--ivory);
  max-width: 18ch;
  margin: 0 auto 24px;
}
.movement p {
  color: var(--ivory);
  opacity: 0.92;
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---------- Two doors ---------- */
.doors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.door {
  background: var(--ivory);
  border: 1px solid rgba(93,132,145,0.18);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-medium) var(--ease-smoke),
              box-shadow var(--duration-medium) var(--ease-smoke);
}
.door:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(52,81,91,0.10);
}
.door h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--slate);
  margin: 0 0 12px;
}
.door p { margin: 0 0 20px; }
.door ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 0.95rem;
  color: var(--stone);
}
.door ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(93,132,145,0.10);
}
.door ul li:last-child { border-bottom: 0; }
.door .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 860px) {
  .doors { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Accessibility: skip link and visible keyboard focus
   --------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--clay, #A36F35);
  color: var(--ivory, #FFFDEA);
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--clay, #A36F35);
  outline-offset: 3px;
  border-radius: 2px;
}
.tint-mist :focus-visible,
.curved-section :focus-visible,
.hero-fullbleed :focus-visible {
  outline-color: var(--ivory, #FFFDEA);
}

.main-nav a[aria-current="page"] {
  color: var(--clay, #A36F35);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.main-nav a.nav-cta[aria-current="page"] {
  text-decoration: none;
}

/* ---------------------------------------------------------------
   Newsletter signup section
   --------------------------------------------------------------- */
.newsletter-section {
  background: var(--inner-light, #EFE7D8);
}
.newsletter-fallback {
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
  margin-top: 18px;
}
