/* ─── DESIGN TOKENS — Solarpunk Lavender + Living Green ─── */
:root {
  --bg: #f4f0fa;
  --surface: #ece4f4;
  --surface-2: #e0d5ee;
  --text: #1f1530;
  --text-muted: #4d4163;
  --text-faint: #7a6c92;
  --accent: #3f6a3a;
  --accent-2: #6e549d;
  --accent-3: #8fb58a;
  --sun: #c9a84c;
  --border: rgba(31, 21, 48, 0.12);

  --glow-sun: rgba(255, 220, 160, 0.28);
  --glow-leaf: rgba(143, 181, 138, 0.22);
  --glow-lilac: rgba(154, 127, 196, 0.18);

  --viz-stroke: rgba(31, 21, 48, 0.28);
  --viz-accent: rgba(63, 106, 58, 0.6);

  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs: clamp(0.78rem, 0.72rem + 0.25vw, 0.9rem);
  --text-sm: clamp(0.92rem, 0.85rem + 0.35vw, 1.02rem);
  --text-base: clamp(1.02rem, 0.97rem + 0.25vw, 1.14rem);
  --text-lg: clamp(1.2rem, 1.05rem + 0.75vw, 1.55rem);
  --text-xl: clamp(1.6rem, 1.25rem + 1.4vw, 2.4rem);
  --text-2xl: clamp(2.1rem, 1.3rem + 2.6vw, 3.6rem);
  --text-3xl: clamp(2.8rem, 1.2rem + 4.4vw, 5.4rem);

  --sp1: 0.25rem; --sp2: 0.5rem; --sp3: 0.75rem; --sp4: 1rem;
  --sp5: 1.25rem; --sp6: 1.5rem; --sp8: 2rem; --sp10: 2.5rem;
  --sp12: 3rem; --sp16: 4rem; --sp20: 5rem; --sp24: 6rem;

  --ease-unfurl: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.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;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; left: 0; top: 0;
  background: var(--accent); color: #f7f4fb;
  padding: 0.75rem 1rem;
  transform: translateY(-120%);
  transition: transform 0.18s ease;
  z-index: 200;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
}
.skip-link:focus { transform: translateY(0); }

/* ─── SOLARPUNK AURORA BG (calmer) ─── */
.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255,224,170,0.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(143,181,138,0.20), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #efe7f7 50%, var(--bg) 100%);
}
.aurora__layer {
  position: absolute; inset: -10%;
  filter: blur(50px);
  will-change: transform;
  opacity: 0.7;
}
.aurora__layer--sun {
  background: radial-gradient(circle at 70% 20%, var(--glow-sun) 0%, transparent 45%);
  animation: aurora-a 42s ease-in-out infinite alternate;
}
.aurora__layer--leaf {
  background: radial-gradient(circle at 20% 80%, var(--glow-leaf) 0%, transparent 50%);
  animation: aurora-b 56s ease-in-out infinite alternate;
}
.aurora__layer--lilac {
  background: radial-gradient(circle at 80% 70%, var(--glow-lilac) 0%, transparent 50%);
  animation: aurora-c 64s ease-in-out infinite alternate;
}
.aurora__noise {
  position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0 0.18  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}
@keyframes aurora-a { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-4vw, 3vh,0) scale(1.08); } }
@keyframes aurora-b { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(5vw,-4vh,0) scale(1.1); } }
@keyframes aurora-c { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(3vw, 5vh,0) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .aurora__layer { animation: none; } }

/* ─── LAYOUT WRAPPER ─── */
.page { position: relative; z-index: 10; }

/* ─── NAVBAR with integrated section nav ─── */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  z-index: 100;
}
.top-nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-width: 0;
}
.top-nav__logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-nav__mark {
  width: 14px; height: 14px; border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, #ffe1a8, var(--accent-3) 55%, var(--accent) 100%);
  box-shadow: 0 0 14px rgba(143,181,138,0.55);
  animation: mark-breathe 6s ease-in-out infinite alternate;
}
@keyframes mark-breathe {
  to { box-shadow: 0 0 22px rgba(255,224,170,0.7); transform: scale(1.08); }
}

.top-nav__sections {
  display: flex; align-items: center; gap: 0.15rem;
  list-style: none;
  justify-self: center;
}
.section-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  min-height: 44px; min-width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  transition: color 0.3s var(--ease-unfurl);
}
.section-link__roman { font-style: italic; }
.section-link__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 0; overflow: hidden; opacity: 0;
  transition: max-width 0.5s var(--ease-unfurl), opacity 0.3s ease;
  white-space: nowrap;
}
.section-link:hover .section-link__label,
.section-link:focus-visible .section-link__label,
.section-link[aria-current="page"] .section-link__label {
  max-width: 8rem; opacity: 1;
}
.section-link::after {
  content: ""; position: absolute; left: 50%; bottom: 6px;
  width: 0; height: 1.5px; background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.45s var(--ease-unfurl);
  border-radius: 2px;
}
.section-link:hover, .section-link:focus-visible { color: var(--text); }
.section-link[aria-current="page"] { color: var(--accent); }
.section-link[aria-current="page"]::after { width: calc(100% - 1.5rem); }

.top-nav__cta-wrap { justify-self: end; display: flex; }
.top-nav__cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  min-height: 44px;
  display: inline-flex; align-items: center; gap: 0.55rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.4s var(--ease-unfurl);
}
.top-nav__cta:hover {
  background: var(--accent); color: #f7f4fb;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(143,181,138,0.25), 0 8px 28px -12px rgba(63,106,58,0.55);
}
.top-nav__cta-arrow { transition: transform 0.4s var(--ease-unfurl); display: inline-block; }
.top-nav__cta:hover .top-nav__cta-arrow { transform: translateX(4px); }

.menu-disclosure { display: none; position: relative; }
.menu-disclosure[open] .menu-disclosure__caret { transform: rotate(180deg); }
.menu-disclosure__caret { display: inline-block; transition: transform 0.3s ease; }
.menu-disclosure__summary {
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 0.85rem;
  min-height: 44px;
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.menu-disclosure__summary::-webkit-details-marker { display: none; }
.menu-disclosure__panel {
  position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0;
  min-width: 220px;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 40px -20px rgba(31,21,48,0.25);
  animation: menu-unfurl 0.35s var(--ease-unfurl);
  transform-origin: top center;
}
.menu-disclosure__panel .section-link {
  justify-content: flex-start;
  padding: 0.75rem 1rem;
}
.menu-disclosure__panel .section-link__label {
  max-width: none; opacity: 1;
}
.menu-disclosure__panel .section-link::after { display: none; }
@keyframes menu-unfurl {
  from { opacity: 0; transform: scaleY(0.85) translateY(-6px); }
  to   { opacity: 1; transform: scaleY(1) translateY(0); }
}

@media (max-width: 900px) {
  .section-link__label { display: none; }
  .section-link { padding: 0.6rem 0.55rem; }
}
@media (max-width: 640px) {
  .top-nav { grid-template-columns: minmax(0,1fr) auto auto; }
  .top-nav__sections { display: none; }
  .menu-disclosure { display: block; justify-self: center; }
  .top-nav__cta { padding: 0.55rem 0.85rem; }
  .top-nav__cta span:first-child { display: none; }
  .top-nav__logo { font-size: 0.95rem; }
}

/* ─── SECTIONS ─── */
.act {
  min-height: 100dvh;
  padding-top: clamp(5.5rem, 12vh, 9rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
  padding-inline: clamp(2rem, 7vw, 8rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.act + .act, .act-divider + .act {
  content-visibility: auto;
  contain-intrinsic-size: 100dvh;
}
.act--centered { align-items: center; text-align: center; }
.act--split {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp16); align-items: center;
}
.act--split-reverse {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp16); align-items: center;
}
@media (max-width: 900px) {
  .act--split, .act--split-reverse { display: flex; flex-direction: column; gap: var(--sp10); }
  .act { padding-inline: 1.25rem; }
}

.act-divider {
  height: 14vh; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.act-divider span {
  display: block; width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: divider-grow 1.2s var(--ease-unfurl) forwards;
}
@keyframes divider-grow { to { height: 64px; } }
@media (prefers-reduced-motion: reduce) {
  .act-divider span { height: 64px; animation: none; }
}

/* ─── TYPOGRAPHY ─── */
.t-hero {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.t-hero__word { display: inline-block; }
.t-hero__word--accent {
  display: inline-block;
  font-style: italic;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 55%, var(--sun) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-block: 0.08em;
  padding-inline-end: 0.14em;
  margin-inline-end: -0.05em;
}
.t-payoff {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.t-lede {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 400;
  line-height: 1.32;
}
.t-display {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.t-section-hd {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  max-width: 36ch;
}
.t-ritual {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--accent);
  font-style: italic;
}
.t-person {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
}
.t-subhd {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400; font-style: italic;
  line-height: 1.2; max-width: 28ch;
}
.t-expl {
  font-family: var(--font-display);
  font-size: var(--text-lg); font-weight: 400; font-style: italic;
  color: var(--accent-2);
}
.t-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 62ch;
  font-weight: 400;
}
.t-narrow { max-width: 54ch; }
.t-muted { color: var(--text-muted); }
.t-faint {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-bq {
  font-family: var(--font-display);
  font-size: var(--text-lg); font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: var(--sp6);
  max-width: 48ch;
  line-height: 1.4;
}

.mt2 { margin-top: var(--sp2); } .mt4 { margin-top: var(--sp4); }
.mt6 { margin-top: var(--sp6); } .mt8 { margin-top: var(--sp8); }
.mt10 { margin-top: var(--sp10); } .mt12 { margin-top: var(--sp12); }
.mt16 { margin-top: var(--sp16); } .mt20 { margin-top: var(--sp20); }

.name-block { display: flex; flex-direction: column; gap: 0.75rem; position: relative; z-index: 2; }

/* ─── HERO CONSTELLATION ─── */
.act--hero { align-items: center; text-align: center; }
.constellation {
  position: absolute; inset: 0;
  display: flex; justify-content: center; align-items: center;
  pointer-events: none; z-index: 1; opacity: 0.7;
}
.constellation svg { width: clamp(420px, 60vw, 720px); height: auto; overflow: visible; }
.constellation .orbits circle {
  fill: none; stroke: color-mix(in srgb, var(--accent) 22%, transparent);
  stroke-width: 0.5; stroke-dasharray: 2 6;
}
.constellation .core-glow { transform-origin: center; animation: core-pulse 7s ease-in-out infinite; }
.constellation .core-dot { filter: drop-shadow(0 0 6px rgba(63,106,58,0.6)); }
.constellation .threads path {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  animation: thread-draw 8s ease-in-out infinite;
}
.constellation .threads path:nth-child(2) { animation-delay: 0.7s; }
.constellation .threads path:nth-child(3) { animation-delay: 1.4s; }
.constellation .threads path:nth-child(4) { animation-delay: 2.1s; }
.constellation .threads path:nth-child(5) { animation-delay: 2.8s; }
.constellation .rotor { transform-origin: 0 0; }
.constellation .rotor--a { animation: spin 38s linear infinite; }
.constellation .rotor--b { animation: spin 58s linear infinite reverse; }
.constellation .rotor--c { animation: spin 84s linear infinite; }
.constellation .satellites circle { animation: sat-pulse 4s ease-in-out infinite; }
.constellation .satellites circle:nth-child(2) { animation-delay: 0.6s; }
.constellation .satellites circle:nth-child(3) { animation-delay: 1.2s; }
.constellation .satellites circle:nth-child(4) { animation-delay: 1.8s; }
.constellation .satellites circle:nth-child(5) { animation-delay: 2.4s; }

@keyframes core-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.07); opacity: 1; }
}
@keyframes thread-draw {
  0%   { stroke-dashoffset: 220; opacity: 0; }
  25%  { opacity: 0.7; }
  60%  { stroke-dashoffset: 0; opacity: 0.7; }
  100% { stroke-dashoffset: -220; opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes sat-pulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ─── BOTANICAL PER-SECTION MOTIFS ─── */
.botanical {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.botanical svg { width: 100%; height: 100%; overflow: visible; }
.botanical path,
.botanical circle,
.botanical ellipse {
  fill: none;
  stroke: color-mix(in srgb, var(--accent) 55%, transparent);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.botanical--vine {
  top: 8%; bottom: 8%; left: -2vw;
  width: clamp(120px, 14vw, 220px);
}
.botanical--vine .stem {
  stroke-dasharray: 700; stroke-dashoffset: 700;
  animation: vine-grow 5s var(--ease-unfurl) 0.3s forwards;
}
.botanical--vine .leaf {
  fill: color-mix(in srgb, var(--accent-3) 60%, transparent);
  stroke: color-mix(in srgb, var(--accent) 70%, transparent);
  stroke-width: 0.8;
  opacity: 0; transform-origin: var(--lo, 50% 50%);
  animation: leaf-unfurl 1.2s var(--ease-unfurl) forwards;
}
.botanical--vine .leaf:nth-of-type(1) { animation-delay: 1.6s; }
.botanical--vine .leaf:nth-of-type(2) { animation-delay: 2.2s; }
.botanical--vine .leaf:nth-of-type(3) { animation-delay: 2.8s; }
.botanical--vine .leaf:nth-of-type(4) { animation-delay: 3.4s; }
.botanical--vine .leaf:nth-of-type(5) { animation-delay: 4.0s; }
@keyframes vine-grow { to { stroke-dashoffset: 0; } }
@keyframes leaf-unfurl {
  from { opacity: 0; transform: scale(0.2) rotate(-15deg); }
  to   { opacity: 0.85; transform: scale(1) rotate(0deg); }
}

.botanical--seedlings {
  top: 30%; left: 0; right: 0; height: 80px;
  display: flex; justify-content: space-around;
  padding-inline: clamp(2rem, 7vw, 8rem);
  opacity: 0.4;
}
.botanical--seedlings svg { width: 40px; height: 80px; }
.botanical--seedlings .seedling-stem {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: vine-grow 2s var(--ease-unfurl) forwards;
}
.botanical--seedlings svg:nth-child(2) .seedling-stem { animation-delay: 0.3s; }
.botanical--seedlings svg:nth-child(3) .seedling-stem { animation-delay: 0.6s; }
.botanical--seedlings svg:nth-child(4) .seedling-stem { animation-delay: 0.9s; }
.botanical--seedlings .seedling-leaf {
  fill: color-mix(in srgb, var(--accent-3) 50%, transparent);
  stroke-width: 0.7;
  opacity: 0; transform-origin: bottom center;
  animation: leaf-unfurl 1s var(--ease-unfurl) 1.5s forwards;
}
@media (max-width: 768px) { .botanical--seedlings { display: none; } }

.botanical--seeds {
  top: 0; bottom: 0; right: 0;
  width: clamp(140px, 18vw, 260px);
  opacity: 0.7;
}
.botanical--seeds .seed {
  fill: color-mix(in srgb, var(--accent-2) 50%, transparent);
  stroke: none;
  animation: seed-drift 18s ease-in-out infinite;
}
.botanical--seeds .seed:nth-child(2) { animation-delay: -6s; animation-duration: 22s; }
.botanical--seeds .seed:nth-child(3) { animation-delay: -12s; animation-duration: 26s; }
.botanical--seeds .seed:nth-child(4) { animation-delay: -3s; animation-duration: 20s; }
.botanical--seeds .seed-stroke {
  stroke: color-mix(in srgb, var(--accent-2) 35%, transparent);
  stroke-width: 0.5;
  fill: none;
  animation: seed-drift 18s ease-in-out infinite;
}
.botanical--seeds .seed-stroke:nth-of-type(2) { animation-delay: -6s; animation-duration: 22s; }
.botanical--seeds .seed-stroke:nth-of-type(3) { animation-delay: -12s; animation-duration: 26s; }
.botanical--seeds .seed-stroke:nth-of-type(4) { animation-delay: -3s; animation-duration: 20s; }
@keyframes seed-drift {
  0%   { transform: translate(0, 100%); opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translate(-12px, 50%); opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translate(8px, 0%); opacity: 0; }
}

.botanical--mycelium {
  top: 50%; left: 5%; right: 5%; height: 1px;
  z-index: 1;
}
.botanical--mycelium svg { height: 60px; margin-top: -30px; }
.botanical--mycelium path {
  stroke-dasharray: 800; stroke-dashoffset: 800;
  animation: vine-grow 4s var(--ease-unfurl) 0.4s forwards;
  stroke-width: 0.8;
}

.leaf-ring {
  fill: none;
  stroke: color-mix(in srgb, var(--accent) 50%, transparent);
  stroke-width: 1;
  transform-origin: center;
  animation: leaf-ring-pulse 5s ease-in-out infinite;
}
.leaf-ring--2 { animation-delay: 0.6s; stroke: color-mix(in srgb, var(--accent-3) 70%, transparent); }
.leaf-ring--3 { animation-delay: 1.2s; stroke: color-mix(in srgb, var(--accent-2) 60%, transparent); }
.leaf-ring__core { fill: var(--accent); animation: core-pulse 4s ease-in-out infinite; transform-origin: center; }
@keyframes leaf-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.08); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .botanical .stem, .botanical .seedling-stem, .botanical--mycelium path { stroke-dashoffset: 0; animation: none; }
  .botanical .leaf, .botanical .seedling-leaf { opacity: 0.7; transform: none; animation: none; }
  .botanical--seeds .seed, .botanical--seeds .seed-stroke,
  .leaf-ring, .leaf-ring__core,
  .constellation .core-glow, .constellation .threads path,
  .constellation .rotor, .constellation .satellites circle { animation: none; }
  .constellation .threads path { stroke-dashoffset: 0; opacity: 0.5; }
}

/* ─── VIZ PANEL & VINE PATH ─── */
.viz-panel { position: relative; display: flex; justify-content: center; align-items: center; }
.viz-panel svg { width: clamp(200px, 30vw, 340px); height: auto; }
@keyframes vine-grow-full { to { stroke-dashoffset: 0; } }

/* ─── RITUALS ─── */
.ritual-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp10) var(--sp12);
  margin-top: var(--sp12);
  position: relative; z-index: 2;
}
@media (max-width: 768px) { .ritual-grid { grid-template-columns: 1fr; gap: var(--sp8); } }
.ritual-card {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: var(--sp6);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 45%, transparent);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-unfurl),
              border-color 0.4s ease, background 0.4s ease,
              box-shadow 0.5s var(--ease-unfurl);
}
.ritual-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  box-shadow: 0 14px 30px -18px rgba(63,106,58,0.35);
}
.ritual-card .t-body { max-width: none; }

/* ─── EXPLORATIONS CTA ─── */
.expl-cta {
  display: inline-block; margin-top: var(--sp6);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent);
  padding: 0.5rem 0;
  min-height: 44px;
  transition: color 0.3s, border-color 0.3s, transform 0.4s var(--ease-unfurl);
}
.expl-cta:hover { color: var(--accent-2); border-color: var(--accent-2); transform: translateX(3px); }

/* ─── TEAM ─── */
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp12); margin-top: var(--sp16);
  position: relative; z-index: 2;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; gap: var(--sp10); } }
.person-card { display: flex; flex-direction: column; gap: var(--sp6); }
.portrait {
  width: 100%; max-width: 220px; aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--surface-2) 0%, var(--surface) 60%, var(--accent-3) 140%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.portrait-i {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: 400; color: var(--text-faint);
  opacity: 0.6; user-select: none;
}
.person-name-row { display: flex; align-items: center; gap: 0.75rem; }
.li-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  color: var(--text-muted); opacity: 0.65;
  transition: opacity 0.3s, color 0.3s, transform 0.4s var(--ease-unfurl);
}
.li-link:hover { opacity: 1; color: var(--accent); transform: translateY(-2px); }
.li-link svg { width: 18px; height: 18px; }

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: inline-block;
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: transparent;
  border: 1px solid var(--accent);
  padding: 0.9rem 2.25rem; border-radius: 999px;
  transition: background 0.4s var(--ease-unfurl), color 0.4s ease,
              box-shadow 0.5s var(--ease-unfurl);
  min-height: 48px;
}
.cta-btn:hover {
  background: var(--accent); color: #f7f4fb;
  box-shadow: 0 0 0 6px rgba(143,181,138,0.25),
              0 10px 30px -12px rgba(63,106,58,0.5);
}

/* ─── FOOTER ─── */
.act-footer {
  margin-top: var(--sp16);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ─── REVEAL — unfurl ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  clip-path: inset(0 0 12% 0);
  transition: opacity 900ms var(--ease-unfurl),
              transform 900ms var(--ease-unfurl),
              clip-path 900ms var(--ease-unfurl);
  will-change: opacity, transform, clip-path;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* ─── HERO SCROLL CUE ─── */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted);
  z-index: 2;
}
.hero-scroll__line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scroll-cue 2.6s ease-in-out infinite;
}
.hero-scroll__label {
  font-family: var(--font-body);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600;
}
@keyframes scroll-cue {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  45%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll__line { animation: none; opacity: 0.4; }
}
