/* STAR Fond — cinematic dark DA (arcs, full-bleed hero, soft gold) */
:root {
  --bg: #05060a;
  --bg-elev: #0c0e14;
  --line: rgba(232, 214, 180, 0.16);
  --line-strong: rgba(232, 214, 180, 0.3);
  --ink: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.7);
  --faint: rgba(247, 244, 238, 0.45);
  --gold: #d4b483;
  --gold-soft: #c9a978;
  --gold-bright: #ead7b6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --radius-pill: 999px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Atkinson Hyperlegible", system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 2.5rem));
  --wrap-wide: min(1320px, calc(100% - 2rem));
  --z-nav: 50;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Decorative only — keep nav / UI micro-interactions animated */
  html.js .arc-draw { stroke-dashoffset: 0 !important; transition: none !important; }
  html.js .arc-star { opacity: 1 !important; transition: none !important; animation: none !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
  .scroll-mouse::after { animation: none !important; }
  html.js main { animation: none !important; }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

[data-lang="et"] [data-en],
[data-lang="en"] [data-et] { display: none !important; }
html:not([data-lang]) [data-en] { display: none !important; }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  padding: 0.7rem 1rem; background: var(--gold); color: #111; border-radius: 10px;
}
.skip:focus { top: 1rem; }
.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }

/* ——— NAV: logo left | links truly centered | actions right ——— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s;
}
.nav.is-scrolled,
.nav.is-open {
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav-inner {
  position: relative;
  width: var(--wrap-wide);
  margin-inline: auto;
  min-height: 6.25rem;
  padding-block: 1.15rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand { position: relative; z-index: 2; flex: 0 0 auto; }
.brand-mark {
  display: grid;
  line-height: 0.88;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8d4cc;
}
.brand-mark .b1 {
  font-size: 1.05rem;
  font-weight: 700;
}
.brand-mark .b2 {
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.9;
}
.brand img.logo-stack {
  height: 72px;
  width: auto;
  max-width: min(420px, 55vw);
  display: block;
  opacity: 1;
  filter: none;
  object-fit: contain;
}
.arc-star {
  filter: drop-shadow(0 0 6px rgba(255, 248, 232, 0.95)) drop-shadow(0 0 14px rgba(232, 214, 180, 0.55));
}
#nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; z-index: 1; }
/* Sliding underline — GPU translateX only (width snaps, no left/width jank) */
.nav-ink {
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  height: 2px;
  width: 40px;
  border-radius: 99px;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(232, 214, 180, 0.4);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition:
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease;
}
.nav-ink.is-on { opacity: 1; }
.nav-links > li > a,
.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 0;
  border: none;
  background: transparent;
  position: relative;
  /* no transform on the hitbox — avoids the whole bar “breathing” */
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links > li > a > span[data-et],
.nav-links > li > a > span[data-en],
.nav-drop > button > span[data-et],
.nav-drop > button > span[data-en] {
  display: inline-block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links > li > a:hover,
.nav-drop > button:hover {
  color: var(--gold-bright);
  background: transparent;
}
.nav-links > li > a:hover > span[data-et],
.nav-links > li > a:hover > span[data-en],
.nav-drop > button:hover > span[data-et],
.nav-drop > button:hover > span[data-en] {
  transform: scale(1.07);
}
.nav-links > li > a[aria-current="page"],
.nav-drop.is-active > button {
  color: var(--gold-bright);
  background: transparent;
  border: none;
  box-shadow: none;
}
.nav-drop { position: relative; }
.nav-drop > button::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  flex: 0 0 auto;
}
.nav-drop.is-open > button::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  min-width: 13.5rem;
  padding: 0.45rem;
  background: rgba(12, 14, 20, 0.97);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -12px, 0) scale(0.94);
  transform-origin: top center;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.nav-drop.is-open > .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}
.nav-drop-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-drop-menu a:hover { background: rgba(255,255,255,0.05); color: var(--ink); }
html.is-leaving main {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), filter 0.28s var(--ease);
}
main {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), filter 0.35s var(--ease);
}
html.js main { animation: pageIn 0.45s var(--ease) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.nav-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  position: relative;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(232, 214, 180, 0.5);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: transparent;
  box-shadow: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-cta::after { content: none; }
.nav-cta:hover {
  color: #1a140c;
  background: linear-gradient(135deg, #ebd8b7 0%, #d4b483 55%, #c4a06e 100%);
  border-color: transparent;
}
.nav-mobile-cta { display: none; }
.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(12, 14, 20, 0.65);
  border: 1px solid rgba(232, 214, 180, 0.22);
  border-radius: 999px;
  box-shadow: none;
}
.lang button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  min-height: 1.7rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 238, 0.55);
  background: transparent;
  box-shadow: none;
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}
.lang button:hover {
  color: rgba(247, 244, 238, 0.9);
}
.lang button[aria-pressed="true"] {
  display: inline-flex;
  background: rgba(232, 214, 180, 0.16);
  color: var(--gold-bright);
  box-shadow: none;
}
.lang button[aria-pressed="true"]:hover {
  color: var(--gold-bright);
}
.menu-btn {
  display: none;
  width: 2.55rem; height: 2.55rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block; width: 1.05rem; height: 1.5px;
  background: var(--ink); border-radius: 2px; position: relative;
}
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.05rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-star {
  position: relative;
  background: linear-gradient(135deg, #ebd8b7 0%, #d4b483 50%, #b8925f 100%);
  color: #1a140c;
  box-shadow: 0 10px 30px rgba(212, 180, 131, 0.25);
}
.btn-star:hover { box-shadow: 0 14px 40px rgba(212, 180, 131, 0.35); }
/* Sunlit edge spark — bigger + faster along the rim */
@property --btn-shine-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.btn-shine {
  overflow: visible;
  isolation: isolate;
  z-index: 0;
}
/* Soft sun glow around the spark */
.btn-shine::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: conic-gradient(
    from var(--btn-shine-angle),
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0) 300deg,
    rgba(255, 250, 235, 0.16) 320deg,
    rgba(255, 255, 255, 0.55) 338deg,
    rgba(255, 255, 255, 0.16) 352deg,
    rgba(255, 255, 255, 0) 360deg
  );
  filter: blur(12px);
  opacity: 1;
  animation: btnEdgeShine 4.2s linear infinite;
}
/* Rim spark — larger epicenter */
.btn-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.75px;
  pointer-events: none;
  z-index: 2;
  background: conic-gradient(
    from var(--btn-shine-angle),
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0) 305deg,
    rgba(255, 255, 255, 0.3) 320deg,
    rgba(255, 255, 255, 0.85) 334deg,
    #ffffff 342deg,
    #fffef8 348deg,
    rgba(255, 255, 255, 0.8) 352deg,
    rgba(255, 255, 255, 0.25) 357deg,
    rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 1))
    drop-shadow(0 0 10px rgba(255, 248, 230, 0.8));
  animation: btnEdgeShine 4.2s linear infinite;
}
.btn-shine > span[data-et],
.btn-shine > span[data-en] {
  position: relative;
  z-index: 6;
}
@keyframes btnEdgeShine {
  to { --btn-shine-angle: 360deg; }
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--gold-soft); background: rgba(212,180,131,0.07); }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-play .orb {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.btn-play .orb::before {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--gold-bright);
  margin-left: 2px;
}
.btn-play:hover { color: var(--ink); }
.btn-play:hover .orb {
  border-color: var(--gold-soft);
  box-shadow: 0 0 24px rgba(212, 180, 131, 0.2);
}

.eyebrow, .kicker {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 38rem; }
.quote { font-size: 1.35rem; color: var(--ink); }

/* ——— HERO: text left / full-bleed image right + arcs ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  background: var(--bg);
}
.hero-photo {
  position: absolute;
  inset: 0 -4% 0 32%;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 24%;
  transform: scale(1.05) translate(6%, -5%);
  transform-origin: 70% 25%;
}
.hero-fade-bottom {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 2;
  pointer-events: none;
  /* Soft cinematic dissolve — long ease, no hard black curtain */
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(5, 6, 10, 0.04) 35%,
    rgba(5, 6, 10, 0.18) 58%,
    rgba(5, 6, 10, 0.42) 78%,
    rgba(5, 6, 10, 0.72) 92%,
    #05060a 100%);
}
.hero-fade-left {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Light left plate only — circular cut lives in .arc-shade / stroke */
  background:
    linear-gradient(90deg,
      #05060a 0%,
      #05060a 18%,
      rgba(5, 6, 10, 0.85) 28%,
      rgba(5, 6, 10, 0.35) 38%,
      transparent 48%);
}
.hero-fade-top {
  position: absolute;
  inset: 0 0 auto;
  height: 9.5rem;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(5, 6, 10, 0.88) 0%,
    rgba(5, 6, 10, 0.45) 50%,
    transparent 100%);
}
.hero-divider .arc-shade {
  pointer-events: none;
  opacity: 0.92;
}
.hero-divider .arc-draw {
  stroke-width: 1.7;
}
.hero-divider .arc-glow {
  stroke-width: 6.5;
  opacity: 0.85;
}

/* Arc that cuts the gradient between text & photo */
.hero-divider {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-divider .arc-main {
  fill: none;
  /* stroke set inline to guarantee single visible path */
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 14rem;
  padding-left: clamp(0.25rem, 2vw, 1.25rem);
}
.hero-copy {
  position: relative;
  max-width: 30rem;
  width: min(100%, 30rem);
  margin-left: 0;
  z-index: 5;
}

/* Stats + scroll stacked — never overlap */
.hero-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1rem 0.85rem;
  pointer-events: none;
}
.hero-stats {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 6;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.05rem 0.6rem;
  border-radius: 26px;
  background: rgba(8, 10, 16, 0.72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.5rem);
  letter-spacing: -0.035em;
  margin: 0 0 1.15rem;
  line-height: 1.02;
}
.hero h1 .shine {
  background: linear-gradient(120deg, #fff 15%, var(--gold-bright) 52%, #fff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 31rem;
  margin-bottom: 1.85rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  overflow: visible;
}
.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 0.9rem;
}
.hero-actions-row:first-child {
  gap: 0.85rem 1.45rem;
}
/* Gold outline twin of btn-star — same family, same doré */
.btn-gold-outline {
  border: 1px solid rgba(232, 214, 180, 0.65);
  background: rgba(232, 214, 180, 0.08);
  color: #e8d6b4;
}
.btn-gold-outline:hover {
  border-color: #e8d6b4;
  background: rgba(232, 214, 180, 0.16);
  color: #f5ead4;
  box-shadow: 0 8px 22px rgba(212, 180, 131, 0.18);
}

/* ========== DONATE PAGE ========== */
/* ========== DONATE PAGE ========== */
.page-donate { background: #05060a; }
.page-donate .nav {
  background: transparent;
}
.page-donate .nav.is-scrolled,
.page-donate .nav.is-open { background: rgba(0,0,0,0.78); }

.donate-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 0;
  overflow: hidden;
  background: #05060a;
}
.donate-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.donate-hero-bg picture,
.donate-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center 45%;
}
.donate-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 10, 0.82) 0%,
      rgba(5, 6, 10, 0.55) 36%,
      rgba(5, 6, 10, 0.28) 62%,
      rgba(5, 6, 10, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.35) 0%,
      transparent 18%,
      transparent 62%,
      rgba(5, 6, 10, 0.88) 92%,
      #05060a 100%
    );
}

.donate-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  padding-bottom: 2.5rem;
  flex: 1 1 auto;
  max-width: 72rem;
  margin-inline: auto;
  width: 100%;
}
.donate-copy {
  max-width: 34rem;
  justify-self: start;
  width: 100%;
}
.donate-copy .eyebrow {
  color: var(--gold-bright);
  letter-spacing: 0.18em;
}
.donate-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-weight: 600;
  color: #fff;
}
.donate-copy h1 em {
  font-style: normal;
  color: #e8d6b4;
}
.donate-script {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  color: #e8d6b4;
  line-height: 1.15;
}

.donate-panel {
  width: 100%;
  max-width: 27rem;
  justify-self: start;
  margin-left: 0;
  margin-right: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 214, 180, 0.22);
  background: rgba(8, 9, 14, 0.78);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(232, 214, 180, 0.06),
    inset 0 1px 0 rgba(232, 214, 180, 0.08);
}
.donate-choose {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.4;
  color: rgba(247, 244, 238, 0.88);
}
.donate-cta-stack {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.donate-cta-stack .donate-submit,
.donate-cta-stack .donate-merch {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.donate-amt {
  min-height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 214, 180, 0.28);
  background: transparent;
  color: #f7f4ee;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.donate-amt:hover {
  border-color: rgba(232, 214, 180, 0.65);
  background: rgba(232, 214, 180, 0.06);
  transform: translateY(-1px);
}
.donate-amt.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #ebd8b7 0%, #d4b483 55%, #b8925f 100%);
  color: #1a140c;
  box-shadow: 0 10px 28px rgba(212, 180, 131, 0.32);
}
.donate-custom {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
  color: rgba(232, 214, 180, 0.75);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.donate-custom-field {
  position: relative;
  display: block;
}
.donate-custom input {
  width: 100%;
  box-sizing: border-box;
  min-height: 3.1rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 214, 180, 0.22);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 0.7rem 2.6rem 0.7rem 1.1rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.donate-custom input:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
  border-color: rgba(232, 214, 180, 0.85);
  background: rgba(232, 214, 180, 0.06);
}
.donate-eur {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(232, 214, 180, 0.8);
  font-size: 1rem;
  font-weight: 600;
  pointer-events: none;
}

.donate-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.donate-fields label { display: block; }
.donate-fields-full { grid-column: 1 / -1; }
.donate-fields input {
  width: 100%;
  box-sizing: border-box;
  min-height: 2.85rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 214, 180, 0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.donate-fields input::placeholder {
  color: rgba(247,244,238,0.45);
}
.donate-fields input:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 1px;
  border-color: rgba(232, 214, 180, 0.7);
}

.donate-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: rgba(247,244,238,0.72);
  font-size: 0.86rem;
  line-height: 1.4;
  cursor: pointer;
}
.donate-check input {
  margin-top: 0.2rem;
  accent-color: #d4b483;
  flex: 0 0 auto;
}

.donate-submit {
  width: 100%;
  min-height: 3.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.donate-submit:disabled,
.donate-submit[aria-disabled="true"] {
  opacity: 0.88;
  cursor: not-allowed;
}

.donate-bank-box {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 214, 180, 0.14);
}
.donate-bank-title {
  margin: 0 0 0.7rem;
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 600;
}
.donate-bank-dl {
  margin: 0 0 0.85rem;
  display: grid;
  gap: 0.45rem;
}
.donate-bank-dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}
.donate-bank-dl dt {
  margin: 0;
  color: rgba(232, 214, 180, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.donate-bank-dl dd {
  margin: 0;
  color: #f7f4ee;
  font-size: 0.9rem;
}
.donate-bank-dl .iban {
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.donate-note {
  margin: 0;
  color: rgba(247,244,238,0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}
.donate-note a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.donate-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-inline: calc(-1 * max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)));
  padding: 1.35rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2));
  border-top: 1px solid rgba(232, 214, 180, 0.14);
  background: rgba(5, 6, 10, 0.92);
}
.donate-trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}
.donate-trust-ico {
  color: #e8d6b4;
  font-size: 0.95rem;
  line-height: 1.4;
}
.donate-trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.donate-trust-item span:last-child {
  color: rgba(247,244,238,0.62);
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .donate-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }
  .donate-copy {
    justify-self: stretch;
    max-width: 34rem;
    text-align: left;
  }
  .donate-panel {
    justify-self: center;
    max-width: 27rem;
    width: 100%;
  }
  .donate-trust { grid-template-columns: 1fr 1fr; }
  .donate-copy h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
}
@media (max-width: 640px) {
  .donate-hero { padding-top: 6.25rem; }
  .donate-amount-grid { grid-template-columns: repeat(3, 1fr); }
  .donate-fields { grid-template-columns: 1fr; }
  .donate-trust { grid-template-columns: 1fr; gap: 1rem; }
}

.hero-stats .stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.55rem 1.15rem;
  border-right: 1px solid var(--line);
}
.hero-stats .stat:last-child { border-right: 0; }
.stat-ico {
  width: 2.55rem;
  height: 2.55rem;
  color: var(--gold-bright);
  flex: none;
  display: grid;
  place-items: center;
  opacity: 0.95;
}
.stat-ico svg { width: 100%; height: 100%; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.22rem;
  letter-spacing: -0.01em;
}
.hero-stats .stat span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
}

.scroll-hint {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding-top: 0;
  color: rgba(247, 244, 238, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-mouse {
  width: 1.2rem;
  height: 1.85rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  position: relative;
  margin-bottom: 0.2rem;
}
.scroll-mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 0.35rem;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
.scroll-label { line-height: 1; }
.scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(234, 215, 182, 0.85);
  box-shadow: 0 0 8px rgba(232, 214, 180, 0.35);
  margin-top: 0.15rem;
}
.scroll-line {
  width: 1px;
  height: 1.55rem;
  background: linear-gradient(180deg,
    rgba(234, 215, 182, 0.55) 0%,
    rgba(234, 215, 182, 0.2) 45%,
    transparent 100%);
  opacity: 0.9;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 11px); }
}

/* ——— Sections ——— */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section#missioon {
  /* Compact — less dead air under hero */
  padding-top: clamp(2.2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.4rem, 4.5vw, 3.8rem);
}
.section.tight { padding-top: 0; }
/* Home: less empty air above “In motion / Sport breaks barriers” */
.section#valdkonnad {
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.section#video {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}
.mission-card {
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(212, 180, 131, 0.07), transparent 42%), rgba(255,255,255,0.02);
  margin-bottom: 0.75rem;
}
.mission-card:last-child { margin-bottom: 0; }
.mission-card h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}
.mission-card p { color: var(--muted); margin: 0; font-size: 0.95rem; line-height: 1.5; }

.domain-grid {
  width: var(--wrap-wide);
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.domain {
  position: relative;
  display: block;
  flex: 1 1 0;
  min-width: 0;
  min-height: 400px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
  transition:
    flex 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.domain-grid:hover .domain:not(:hover) {
  flex: 0.72 1 0;
}
.domain-grid:hover .domain:hover {
  flex: 1.55 1 0;
  border-color: var(--line-strong);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  z-index: 2;
}
.domain img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.domain[data-pos="center"] img { object-position: center center; }
.domain[data-pos="top"] img { object-position: center 18%; }
.domain[data-pos="face"] img { object-position: 72% 18%; }
.domain[data-pos="climb"] img { object-position: 55% 12%; }
.domain[data-pos="studio"] img { object-position: center 8%; }
.domain[data-pos="court"] img { object-position: 48% 18%; }
.domain[data-pos="desk"] img { object-position: 42% 28%; }
.domain-grid:hover .domain:hover img { transform: scale(1.05); }
.domain-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.45rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 10, 0.94) 52%);
  z-index: 1;
}
.domain-body h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.domain-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.85rem; }
.domain-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.person {
  display: grid;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.person:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.person-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}
.person-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.6s var(--ease);
}
.person-photo[data-pos="center"] img { object-position: center center; }
.person-photo[data-pos="top"] img { object-position: center top; }
.person:hover .person-photo img { transform: scale(1.04); }
.person-body { padding: 1rem 1.1rem 1.2rem; }
.person-body h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.person-body p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.amb-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}
.amb-split > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center 20%;
}
.amb-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.amb-copy .role { color: var(--gold-soft); margin-bottom: 1rem; }
.amb-copy p { color: var(--muted); }

.media-frame {
  margin-top: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: #000;
}
.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 90% 20%, rgba(212, 180, 131, 0.16), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
}


.prose { max-width: 46rem; color: var(--muted); margin-bottom: 2.5rem; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose h2, .prose h3 { color: var(--ink); margin-top: 1.6rem; }

.bio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.bio.landscape { grid-template-columns: 360px 1fr; }
.bio img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 16px;
}
.bio.landscape img { aspect-ratio: 4 / 3; object-position: center 20%; }
.bio .role { color: var(--gold-soft); margin-bottom: 0.8rem; }
.bio p { color: var(--muted); }

.links-list { display: grid; gap: 0.65rem; margin: 1.2rem 0 2rem; }
.links-list a {
  display: block;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--ink);
}
.links-list a:hover { border-color: var(--gold-soft); background: rgba(212,180,131,0.06); }
.links-list small { display: block; color: var(--muted); margin-top: 0.25rem; }

.form-note {
  color: var(--faint);
  font-size: 0.85rem;
  margin: 0;
  max-width: 18rem;
}
.prompt-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}
.prompt-list li {
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
}
.prompt-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 20% 0%, rgba(212,180,131,0.08), transparent 40%), var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer .brand img.logo-stack,
.footer .brand-mark { margin-bottom: 1rem; }
.footer .brand-mark { color: #cfcabe; }
.footer .brand-mark .b1 { font-size: 1.2rem; }
.footer .brand-mark .b2 { font-size: 1.05rem; }
.footer p, .footer li { color: var(--muted); font-size: 0.95rem; }
.footer h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}
.footer a:hover { color: var(--gold-bright); }
.footer-grid > div:last-child ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.35rem;
  row-gap: 0.5rem;
}
.iban { font-family: ui-monospace, monospace; letter-spacing: 0.04em; }
.legal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.85rem;
  text-align: left;
  min-height: 2.75rem;
}
.made-by {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--faint);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.made-by:hover {
  color: var(--gold-bright);
}
@media (max-width: 720px) {
  .legal {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 0.65rem;
  }
  .made-by {
    position: static;
    left: auto;
    transform: none;
    align-self: center;
    margin-top: 0.35rem;
  }
}

/* Arc draw + star pulse */
html.js .arc-draw {
  /* dash length is set in JS from the real path so the stroke never stops short */
}
html.js .arc-star {
  opacity: 0;
  /* Appear almost immediately, then a soft shine — nothing flashy */
  animation:
    starIn 0.4s var(--ease) 0.08s forwards,
    starShine 1.1s var(--ease) 0.35s 1 both;
}
.arc-star {
  filter: drop-shadow(0 0 5px rgba(255, 248, 232, 0.85)) drop-shadow(0 0 12px rgba(232, 214, 180, 0.4));
  transform-box: fill-box;
  transform-origin: center;
}
.hero-divider .arc-draw {
  opacity: 0.92;
}

@keyframes arcDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes starIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes starShine {
  0% {
    filter:
      drop-shadow(0 0 5px rgba(255, 248, 232, 0.85))
      drop-shadow(0 0 12px rgba(232, 214, 180, 0.4));
  }
  45% {
    filter:
      drop-shadow(0 0 8px rgba(255, 252, 240, 1))
      drop-shadow(0 0 18px rgba(232, 214, 180, 0.7))
      drop-shadow(0 0 28px rgba(212, 180, 131, 0.35));
  }
  100% {
    filter:
      drop-shadow(0 0 5px rgba(255, 248, 232, 0.85))
      drop-shadow(0 0 12px rgba(232, 214, 180, 0.4));
  }
}

.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
html.js .reveal.is-in {
  animation: riseIn 0.75s var(--ease) both;
}
html.js .reveal-2.is-in { animation-delay: 0.1s; }
html.js .reveal-3.is-in { animation-delay: 0.18s; }
html.js .reveal-4.is-in { animation-delay: 0.28s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-photo { inset: 0; opacity: 0.5; }
  .hero-photo img { object-position: center 15%; }
  .hero-fade-left {
    background: linear-gradient(180deg,
      rgba(5,6,10,0.55) 0%,
      rgba(5,6,10,0.72) 40%,
      rgba(5,6,10,0.92) 70%,
      #05060a 100%);
  }
  .hero-copy { max-width: 40rem; }
  .hero-foot { gap: 0.7rem; padding-bottom: 0.7rem; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 1rem 0.4rem;
  }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
  .hero-stats .stat:nth-child(1),
  .hero-stats .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .domain-grid { flex-wrap: wrap; }
  .domain { flex: 1 1 calc(50% - 0.5rem); min-height: 320px; }
  .domain-grid:hover .domain:not(:hover),
  .domain-grid:hover .domain:hover { flex: 1 1 calc(50% - 0.5rem); }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .amb-split { grid-template-columns: 1fr; }
  .amb-split > img { min-height: 280px; max-height: 360px; }
  .split, .footer-grid, .ideas-layout { grid-template-columns: 1fr; }
  .bio, .bio.landscape { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }

  /* Mobile/tablet only: hide arc+star so they never sit on copy */
  .hero-divider {
    display: none !important;
  }
  /* Mobile/tablet only: kill shine (avoids white square around CTA) */
  .btn-shine::before,
  .btn-shine::after {
    content: none !important;
    display: none !important;
    animation: none !important;
    filter: none !important;
    background: none !important;
    box-shadow: none !important;
    opacity: 0 !important;
  }
  .btn-shine {
    overflow: hidden;
    isolation: auto;
  }
}

@media (max-width: 820px) {
  .nav-inner { display: flex; }
  #nav-links {
    display: none;
    position: absolute;
    left: 1rem; right: 1rem;
    top: calc(100% + 0.35rem);
    transform: none;
  }
  .nav.is-open #nav-links {
    display: block;
  }
  .nav.is-open .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(12, 14, 20, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-mobile-cta { display: block; margin-top: 0.4rem; }
  .nav-end .nav-cta { display: none; }
  .menu-btn { display: grid; }
  .nav-drop-menu {
    position: static;
    left: auto;
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0 0.6rem;
    margin: 0;
    transition:
      max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease,
      padding 0.35s ease;
    will-change: max-height, opacity;
  }
  .nav-drop.is-open > .nav-drop-menu {
    max-height: 14rem;
    opacity: 1;
    pointer-events: auto;
    padding: 0.35rem 0 0.35rem 0.6rem;
    transform: none;
  }
  .nav-drop.is-open .nav-drop-menu a {
    opacity: 1;
    transform: none;
  }
  .nav-ink { display: none; }
}

@media (max-width: 640px) {
  .domain-grid, .people-grid { display: flex; flex-direction: column; }
  .domain { flex: 1 1 auto; min-height: 320px; }
  .domain-grid:hover .domain:not(:hover),
  .domain-grid:hover .domain:hover { flex: 1 1 auto; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stats .stat:last-child { border-bottom: 0; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.15rem); }
  .hero-content { padding-bottom: 22rem; }
  .hero-foot { gap: 0.55rem; padding-bottom: 0.55rem; }
}


/* ========== INNER PAGES ONLY (do not touch .hero*) ========== */
/* Clean vertical rhythm: head → figure → body. No empty black voids. */

.ip-head {
  padding: 8.5rem 0 1.75rem;
  border-bottom: 1px solid transparent;
}
.ip-head h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 16ch;
  margin: 0 0 0.75rem;
}
.ip-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.ip-figure { padding: 0 0 0.5rem; }
.ip-media {
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0b10;
}
.ip-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Portrait photos stay tall — never crushed into a wide banner */
.ip-media[data-ratio="portrait"] {
  aspect-ratio: 3 / 4;
  width: min(680px, 100%);
  max-height: min(78vh, 820px);
}
.ip-media[data-ratio="wide"] {
  aspect-ratio: 16 / 9;
  width: min(1100px, 100%);
  max-height: min(52vh, 520px);
}
.ip-media[data-focus="climb"] img { object-position: 52% 18%; }
.ip-media[data-focus="studio"] img { object-position: center 30%; }
.ip-media[data-focus="court"] img { object-position: center 22%; }
.ip-media[data-focus="desk"] img { object-position: 42% 26%; }
.ip-media[data-focus="face"] img { object-position: 48% 18%; }
.ip-media[data-focus="portrait"] img { object-position: center 8%; }
.ip-media[data-focus="top"] img { object-position: center 10%; }
.ip-media[data-focus="center"] img { object-position: center 28%; }

.ip-body { max-width: 46rem; }
.ip-sibs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}
.ip-sibs a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ip-sibs a:hover,
.ip-sibs a[aria-current="page"] {
  color: var(--gold-bright);
  border-color: var(--line-strong);
  background: rgba(212, 180, 131, 0.07);
}

.ip-prose {
  display: grid;
  gap: 1.05rem;
  color: var(--muted);
}
.ip-prose p { margin: 0; }

.ip-block { margin-top: 2.75rem; }
.ip-block > h2 { margin-bottom: 0.85rem; }
.ip-sub {
  margin: 1.5rem 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.ip-note {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.ip-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.ip-links a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, background 0.2s;
}
.ip-links a:hover {
  border-color: var(--line-strong);
  background: rgba(212, 180, 131, 0.06);
}
.ip-links strong { font-size: 0.92rem; }
.ip-links span { color: var(--faint); font-size: 0.8rem; }

.ip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}
.ip-cards article {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(212,180,131,0.07), transparent 42%), rgba(255,255,255,0.02);
}
.ip-cards h3 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.65rem;
}
.ip-cards p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.ip-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.4rem;
  margin: 0 0 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.ip-stat strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold-bright);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ip-stat p { margin: 0; color: var(--muted); }

.ip-bios {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.ip-bio {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.ip-bio img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 14px;
  background: #111;
}
.ip-bio img[data-focus="face"] { object-position: 48% 18%; aspect-ratio: 4 / 3; }
.ip-bio img[data-focus="center"] { object-position: center 25%; }
.ip-bio img[data-focus="top"] { object-position: center 8%; }
.ip-bio h2 { font-size: 1.35rem; margin: 0 0 0.65rem; }
.ip-bio p { color: var(--muted); }

.ip-partner {
  margin-top: 1.5rem;
  display: grid;
  place-items: start;
}
.ip-partner a {
  display: grid;
  place-items: center;
  min-height: 120px;
  min-width: 220px;
  padding: 1.5rem 2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.ip-partner img { max-height: 48px; width: auto; }

@media (max-width: 980px) {
  .ip-head { padding-top: 7.25rem; }
  .ip-media[data-ratio="portrait"] {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 70vh;
  }
  .ip-links, .ip-cards { grid-template-columns: 1fr; }
  .ip-bio { grid-template-columns: 1fr; }
  .ip-bio img { max-height: 360px; }
  .ip-stat { flex-direction: column; align-items: flex-start; }
}


/* ========== SUPPORTERS MOCK ========== */
.page-supporters { background: #000; }
.page-supporters .nav.is-scrolled,
.page-supporters .nav.is-open { background: rgba(0,0,0,0.86); }

.nav-cta-gold {
  background: linear-gradient(135deg, #e8d6b4, #c9a978 55%, #b8925f) !important;
  color: #1a140c !important;
  border-color: transparent !important;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(212,180,131,0.22);
}
.nav-cta-gold:hover { filter: brightness(1.06); }

/* —— Hero: full-bleed left photo cut by circle arc —— */
.sup-hero {
  --sup-r: 55vw; /* left zone width = arc apex */
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  column-gap: clamp(1.25rem, 3vw, 2.75rem);
  padding: 7rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 3rem;
  overflow: hidden;
  background: #000;
}

.sup-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Photo glued in the LEFT zone only, then cut sharp by the circle arc */
.sup-hero-clip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sup-r); /* exactly to the arc apex */
  overflow: hidden;
  -webkit-clip-path: circle(var(--sup-r) at 0% 50%);
  clip-path: circle(var(--sup-r) at 0% 50%);
}
.sup-hero-clip img {
  /* Cover THIS left zone (not the whole page) → correct zoom + wheelchair */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% 72%;
}

.sup-hero-ring {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(var(--sup-r) * 2);
  height: calc(var(--sup-r) * 2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 254, 246, 0.9);
  -webkit-clip-path: inset(0 0 0 49.5%);
  clip-path: inset(0 0 0 49.5%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}

.sup-star {
  position: absolute;
  top: 50%;
  left: var(--sup-r);
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  overflow: visible;
  filter:
    drop-shadow(0 0 5px rgba(255,254,246,1))
    drop-shadow(0 0 12px rgba(232,214,180,0.85));
  z-index: 6;
}

/* Copy stays STRICTLY in the right column — never overlaps the photo */
.sup-hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 2;
  width: 100%;
  max-width: 34rem;
  justify-self: end;
  padding: 0.5rem 0 0.5rem 0.75rem;
}
.sup-hero-copy h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.85rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0 0 1.05rem;
  color: #fff;
  font-weight: 600;
  max-width: 16ch;
}
.sup-hero-copy h1 em {
  font-style: normal;
  color: #e0cda8;
  font-weight: 600;
}
.sup-hero-lead {
  color: rgba(247,244,238,0.78);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.7rem;
  max-width: 30rem;
}
.sup-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.btn-impact {
  gap: 0.7rem;
  padding-inline: 1.15rem 1.35rem;
  border-color: rgba(232,214,180,0.35);
  color: #fff;
  background: transparent;
}
.btn-impact .play-mini {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
  margin-right: 0.1rem;
}
.btn-impact:hover {
  border-color: var(--gold-soft);
  background: rgba(212,180,131,0.08);
}
.sup-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem 1.1rem;
}
.sup-proof p {
  margin: 0;
  color: rgba(247,244,238,0.68);
  font-size: 0.92rem;
  max-width: 18rem;
  line-height: 1.45;
}
.sup-proof strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 0.25rem;
}
.sup-avatars {
  display: flex;
  align-items: center;
}
.sup-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
  margin-left: -12px;
  box-shadow: 0 0 0 1px rgba(232,214,180,0.2);
}
.sup-avatars img:first-child { margin-left: 0; }

/* —— Ways to support (mock block) —— */
.ways-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.2rem, 4vw, 3.5rem);
  background: #05060a;
}
.ways-earth {
  position: absolute;
  left: -12%;
  bottom: -28%;
  width: min(62vw, 720px);
  height: min(62vw, 720px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 210, 140, 0.22) 0%, transparent 18%),
    radial-gradient(circle at 58% 48%, rgba(255, 180, 90, 0.12) 0%, transparent 22%),
    radial-gradient(circle at 35% 55%, rgba(212, 180, 131, 0.18) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, #1a140c 0%, #0a0b10 42%, transparent 68%);
  box-shadow: 0 0 80px rgba(212, 180, 131, 0.12);
  opacity: 0.85;
  filter: blur(0.5px);
}
.ways-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ways-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ways-eyebrow::after {
  content: "";
  flex: 0 0 2.4rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}
.ways-intro h2 {
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
  margin: 0 0 0.9rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  font-weight: 600;
}
.ways-intro h2 em {
  font-style: normal;
  color: #e0cda8;
}
.ways-intro .lede {
  font-size: 1rem;
  max-width: 26rem;
  margin: 0 0 1.35rem;
  color: rgba(247,244,238,0.78);
}
.ways-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(232,214,180,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  box-shadow: 0 0 22px rgba(212,180,131,0.12);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.ways-cta:hover {
  border-color: var(--gold-bright);
  background: rgba(232,214,180,0.06);
  box-shadow: 0 0 28px rgba(212,180,131,0.22);
}
.ways-script {
  margin: 1.6rem 0 0;
  font-family: "Caveat", cursive;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: rgba(212,180,131,0.55);
  line-height: 1.2;
  max-width: 14rem;
  transform: rotate(-4deg);
  transform-origin: left center;
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.way-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem 1.25rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(232,214,180,0.42);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,180,131,0.12), transparent 55%),
    rgba(8, 8, 12, 0.72);
  box-shadow:
    0 0 0 1px rgba(232,214,180,0.08),
    0 0 28px rgba(212,180,131,0.1),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.way-card:hover {
  border-color: rgba(232,214,180,0.75);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(232,214,180,0.2),
    0 0 36px rgba(212,180,131,0.22),
    0 18px 40px rgba(0,0,0,0.35);
}
.way-ico {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 1.05rem;
  border-radius: 50%;
  border: 1px solid rgba(232,214,180,0.5);
  color: var(--gold-bright);
  background: rgba(212,180,131,0.06);
}
.way-ico svg { width: 1.35rem; height: 1.35rem; }
.way-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.way-card p {
  color: rgba(247,244,238,0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  flex: 1;
}
.way-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.way-link:hover { color: #fff; }
.way-arrow {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  border: 1px solid rgba(232,214,180,0.55);
  font-size: 0.85rem;
  line-height: 1;
}

/* —— Stats bar —— */
.sup-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.5rem 0.75rem;
  border-radius: 28px;
  border: 1px solid rgba(232,214,180,0.45);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,180,131,0.1), transparent 50%),
    rgba(8, 8, 12, 0.88);
  box-shadow:
    0 0 0 1px rgba(232,214,180,0.1),
    0 0 40px rgba(212,180,131,0.14),
    0 24px 60px rgba(0,0,0,0.4);
}
.sup-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: center;
  padding: 0.85rem 1.15rem 1rem;
  border-right: 1px solid rgba(232,214,180,0.18);
}
.sup-stat:last-child { border-right: 0; }
.sup-stat-ico {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.2rem;
  color: var(--gold-soft);
}
.sup-stat-ico svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sup-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}
.sup-stat-label {
  display: block;
  color: #e0cda8 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  font-weight: 700 !important;
}
.sup-stat-desc {
  margin: 0.15rem 0 0;
  max-width: 14rem;
  color: rgba(247,244,238,0.55);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.ways-footline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.85rem 0 0;
  color: rgba(247,244,238,0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}
.ways-footline::before,
.ways-footline::after {
  content: "";
  flex: 1;
  max-width: 10rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,214,180,0.35), transparent);
}

/* —— Partner + donate —— */
.partner-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 90% 20%, rgba(212,180,131,0.14), transparent 45%),
    rgba(255,255,255,0.02);
}
.partner-logo {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.6rem 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  text-align: center;
}
.partner-logo img { max-height: 52px; width: auto; }
.partner-logo span {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.donate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212,180,131,0.12), transparent 45%),
    rgba(255,255,255,0.02);
}
.donate-box {
  margin: 0;
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
}
.donate-box > div { display: grid; gap: 0.2rem; }
.donate-box dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.donate-box dd { margin: 0; color: var(--ink); }

@media (max-width: 1100px) {
  .ways-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .sup-hero {
    --sup-r: 70vw;
    min-height: 0;
    display: block;
    padding: 6.4rem 1.25rem 2.5rem;
  }
  .sup-hero-media {
    position: relative;
    inset: auto;
    height: min(64vw, 420px);
    margin: 0 -1.25rem 1.5rem;
    width: calc(100% + 2.5rem);
    overflow: hidden;
  }
  .sup-hero-clip {
    left: 0;
    width: 100%;
    -webkit-clip-path: ellipse(90% 100% at 50% 0%);
    clip-path: ellipse(90% 100% at 50% 0%);
  }
  .sup-hero-clip img {
    object-position: 48% 55%;
  }
  .sup-hero-ring,
  .sup-star { display: none; }
  .sup-hero-copy {
    grid-column: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding-left: 0;
  }
  .sup-hero-copy h1 { max-width: none; }
  .ways-layout,
  .partner-band,
  .donate-split { grid-template-columns: 1fr; }
  .ways-earth { opacity: 0.45; width: 90vw; height: 90vw; left: -30%; bottom: -20%; }
  .ways-script { transform: none; }
  .sup-stats {
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
  }
  .sup-stat:nth-child(2) { border-right: 0; }
  .sup-stat:nth-child(1),
  .sup-stat:nth-child(2) { border-bottom: 1px solid rgba(232,214,180,0.12); }
}
@media (max-width: 640px) {
  .ways-grid { grid-template-columns: 1fr; }
  .sup-stats { grid-template-columns: 1fr; border-radius: 22px; }
  .sup-stat { border-right: 0; border-bottom: 1px solid rgba(232,214,180,0.12); }
  .sup-stat:last-child { border-bottom: 0; }
  .ways-footline::before,
  .ways-footline::after { max-width: 3rem; }
}


/* ========== YOUR IDEAS PAGE ========== */
.page-ideas { background: #000; }
/* Nav always readable — photo on the right is light wood */
.page-ideas .nav {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.page-ideas .nav.is-scrolled,
.page-ideas .nav.is-open { background: rgba(0, 0, 0, 0.88); }

.nav-cta-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  box-shadow: none !important;
}
.nav-cta-ghost:hover {
  border-color: var(--gold-soft) !important;
  color: var(--gold-bright) !important;
}

.ideas-hero {
  --ideas-r: 54vw; /* photo further right — text stays clear of the arc */
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 980px);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  padding: 7rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 3.2rem;
  overflow: hidden;
  background: #000;
}

/* Right photo — cut by circle arc (Supporters language, mirrored) */
.ideas-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Soft top shade so nav tabs stay readable over light floor */
.ideas-hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(28vh, 220px);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 100%
  );
}
.ideas-hero-clip {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: var(--ideas-r);
  overflow: hidden;
  -webkit-clip-path: circle(var(--ideas-r) at 100% 50%);
  clip-path: circle(var(--ideas-r) at 100% 50%);
}
.ideas-hero-clip img,
.ideas-hero-clip picture,
.ideas-hero-clip picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  /* Huddle in the clear right disc */
  object-position: 55% 48%;
}
.ideas-hero-clip picture { display: block; }

.ideas-hero-ring {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(var(--ideas-r) * 2);
  height: calc(var(--ideas-r) * 2);
  transform: translate(50%, -50%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 254, 246, 0.9);
  -webkit-clip-path: inset(0 49.5% 0 0);
  clip-path: inset(0 49.5% 0 0);
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}

.ideas-star {
  position: absolute;
  top: 50%;
  left: calc(100% - var(--ideas-r));
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  overflow: visible;
  filter:
    drop-shadow(0 0 5px rgba(255,254,246,1))
    drop-shadow(0 0 12px rgba(232,214,180,0.85));
  z-index: 6;
}

.ideas-hero-veil { display: none; }

.ideas-hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  width: 100%;
  /* Stay left of the circle apex (100% - ideas-r) */
  max-width: min(30rem, calc(100vw - var(--ideas-r) - 2.5rem));
  padding: 0.5rem 1.25rem 0.5rem 0;
}
.ideas-hero-copy h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.1rem;
  color: #fff;
  font-weight: 600;
  max-width: 15ch;
}
.ideas-hero-copy h1 em {
  font-style: normal;
  color: #e0cda8;
  font-weight: 600;
}
.ideas-lead {
  color: rgba(247,244,238,0.82);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.6rem;
  max-width: 30rem;
}

.ideas-prompts {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.ideas-prompts li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: rgba(247,244,238,0.92);
  font-size: 0.98rem;
  line-height: 1.45;
}
.ideas-ico {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(232,214,180,0.45);
  color: var(--gold-bright);
  flex-shrink: 0;
}
.ideas-ico svg { width: 1.15rem; height: 1.15rem; }

.ideas-close {
  color: rgba(247,244,238,0.75);
  font-size: 0.98rem;
  margin: 0 0 1.5rem;
  max-width: 30rem;
}

.ideas-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 0.85rem;
}
.ideas-mail {
  gap: 0.7rem;
  padding-inline: 1.35rem 1.5rem;
}
.ideas-mail svg { color: #1a140c; }
.ideas-copy {
  gap: 0.55rem;
  min-height: 3.05rem;
  border-color: rgba(232,214,180,0.35);
  color: #fff;
  background: rgba(255,255,255,0.03);
}
.ideas-copy:hover {
  border-color: var(--gold-soft);
  background: rgba(212,180,131,0.08);
}
.ideas-copy.is-copied {
  border-color: var(--gold-soft);
  color: var(--gold-bright);
}

.ideas-caption {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--wrap-wide)) / 2));
  bottom: 1.6rem;
  z-index: 3;
  margin: 0;
  max-width: 14rem;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  line-height: 1.55;
  font-weight: 600;
  color: #e0cda8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.ideas-caption::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1.5px;
  margin: 0 0 0.65rem auto;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

@media (max-width: 980px) {
  .ideas-hero {
    --ideas-r: 90vw;
    display: block;
    min-height: 0;
    padding: 6.4rem 1.25rem 2.5rem;
  }
  .ideas-hero-media {
    position: relative;
    inset: auto;
    height: min(64vw, 420px);
    margin: 0 -1.25rem 1.5rem;
    width: calc(100% + 2.5rem);
    overflow: hidden;
  }
  .ideas-hero-clip {
    left: 0;
    right: 0;
    width: 100%;
    -webkit-clip-path: ellipse(90% 100% at 50% 0%);
    clip-path: ellipse(90% 100% at 50% 0%);
  }
  .ideas-hero-clip img {
    object-position: 52% 46%;
  }
  .ideas-hero-ring,
  .ideas-star { display: none; }
  .ideas-hero-copy {
    max-width: none;
    padding: 0;
  }
  .ideas-caption {
    position: static;
    text-align: left;
    margin-top: 1.5rem;
    max-width: none;
  }
  .ideas-caption::before { margin-left: 0; margin-right: auto; }
}

/* ========== AMBASSADORS MOCK ========== */
.page-amb { background: #05060a; }

.amb-hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 980px);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  padding: 7rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 3rem;
  overflow: hidden;
  background: #05060a;
}

.amb-arc {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.amb-arc svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.amb-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}
.amb-hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 0.55rem;
  color: #fff;
  font-weight: 600;
}
.amb-kicker {
  margin: 0 0 1rem;
  color: rgba(247,244,238,0.72);
  font-size: 1.15rem;
  font-weight: 500;
}
.amb-lead {
  margin: 0 0 1.6rem;
  color: rgba(247,244,238,0.82);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 34rem;
}

.amb-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}
.amb-stat {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0.9rem 0.95rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(232,214,180,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.amb-stat-ico {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}
.amb-stat-ico svg { width: 100%; height: 100%; display: block; }
.amb-stat strong {
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
}
.amb-stat > span:last-of-type,
.amb-stat > span[data-et],
.amb-stat > span[data-en] {
  color: rgba(247,244,238,0.78);
  font-size: 0.86rem;
  line-height: 1.3;
}
.amb-stat small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(232,214,180,0.7);
  font-size: 0.72rem;
  line-height: 1.35;
}

.amb-caption {
  margin: 0;
  color: rgba(247,244,238,0.78);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.amb-caption::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1.5px;
  margin: 0 0 0.65rem;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.amb-feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(160px, 0.92fr) minmax(180px, 1.08fr);
  min-height: min(62svh, 560px);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(18, 18, 22, 0.92);
  border: 1px solid rgba(232,214,180,0.16);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.amb-feature-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #111;
}
.amb-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 18%;
  display: block;
}
.amb-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  gap: 0.55rem;
}
.amb-feature-body h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 600;
}
.amb-feature-body > p {
  margin: 0;
  color: rgba(247,244,238,0.8);
  font-size: 0.95rem;
  line-height: 1.55;
}
.amb-feature-body blockquote {
  margin: 0.55rem 0 0.35rem;
  padding: 0;
  border: 0;
  position: relative;
}
.amb-qmark {
  display: block;
  font-size: 2.4rem;
  line-height: 0.8;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  margin-bottom: 0.15rem;
}
.amb-feature-body blockquote p {
  margin: 0;
  color: rgba(247,244,238,0.88);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.5;
}
.amb-story-link {
  margin-top: 0.55rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}
.amb-story-link:hover { color: var(--gold-bright); }

.amb-more {
  padding: 4.5rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, #05060a 0%, #0a0b10 100%);
}
.amb-more-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.amb-more-head h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: #fff;
}
.amb-more-head p {
  margin: 0;
  color: rgba(247,244,238,0.72);
  line-height: 1.55;
}

.amb-grid {
  display: grid;
  gap: 1.35rem;
}
.amb-card {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,214,180,0.14);
}
.amb-card-photo {
  min-height: 260px;
  background: #111;
}
.amb-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.amb-card#maikel .amb-card-photo img { object-position: center 8%; }
.amb-card#knut .amb-card-photo img { object-position: center 25%; }
.amb-card-body {
  padding: clamp(1.25rem, 2vw, 1.85rem);
  display: grid;
  align-content: start;
  gap: 0.65rem;
}
.amb-card-body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.amb-card-body p {
  margin: 0;
  color: rgba(247,244,238,0.8);
  line-height: 1.6;
  font-size: 0.98rem;
}

@media (max-width: 1100px) {
  .amb-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 6.5rem;
  }
  .amb-arc { opacity: 0.35; }
  .amb-feature {
    grid-template-columns: 1fr 1.1fr;
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .amb-stats { grid-template-columns: 1fr; }
  .amb-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .amb-feature-photo {
    aspect-ratio: 4 / 5;
    max-height: 420px;
  }
  .amb-card {
    grid-template-columns: 1fr;
  }
  .amb-card-photo {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
  .amb-arc { display: none; }
}

/* ========== OUR PEOPLE MOCK ========== */
.page-people { background: #05060a; }

.wrap-wide {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.op-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 7.2rem 0 2.8rem;
  background:
    radial-gradient(ellipse 55% 70% at 12% 35%, rgba(70, 90, 140, 0.16), transparent 60%),
    #05060a;
}
.op-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 40% 55% at 88% 8%, rgba(232, 214, 180, 0.12), transparent 55%);
}
.op-arc {
  position: absolute;
  top: -2%;
  right: -4%;
  width: min(58vw, 720px);
  height: min(42vw, 480px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}
.op-arc svg { width: 100%; height: 100%; display: block; }

.op-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) auto minmax(280px, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.op-hero-copy h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  font-weight: 600;
}
.op-lead {
  margin: 0;
  max-width: 28rem;
  color: rgba(247,244,238,0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}
.op-divider {
  width: 1px;
  align-self: stretch;
  min-height: 10rem;
  background: linear-gradient(180deg, transparent, rgba(232,214,180,0.55), transparent);
}

.op-highlights {
  display: grid;
  gap: 0.85rem;
}
.op-hi {
  padding: 1.05rem 1.15rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(232,214,180,0.16);
}
.op-hi-ico {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-soft);
  margin-bottom: 0.45rem;
}
.op-hi-ico svg { width: 100%; height: 100%; display: block; }
.op-hi strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.op-hi p {
  margin: 0;
  color: rgba(247,244,238,0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.op-team {
  padding: 2.5rem 0 5rem;
}
.op-team-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}
.op-team-head .eyebrow {
  margin-bottom: 0;
}
.op-team-head .eyebrow::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 1.5px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}
.op-team-tag {
  margin: 0;
  max-width: 22rem;
  text-align: right;
  color: rgba(247,244,238,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.op-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.op-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,214,180,0.14);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.op-card:hover {
  border-color: rgba(232,214,180,0.32);
  background: rgba(255,255,255,0.045);
}
.op-card-photo {
  background: #111;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
}
.op-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.op-card#meelis .op-card-photo img { object-position: center 28%; }
.op-card#sirli .op-card-photo img { object-position: center 18%; }
.op-card#juri-ploom .op-card-photo img { object-position: center 15%; }
.op-card#norman .op-card-photo img { object-position: center 12%; }
.op-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.op-card-body h2 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.op-role {
  margin: 0 0 0.7rem;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 500;
}
.op-role::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  margin-top: 0.65rem;
  background: rgba(232,214,180,0.45);
}
.op-card-body > p:last-child {
  margin: 0;
  color: rgba(247,244,238,0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .op-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .op-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(232,214,180,0.45), transparent);
  }
  .op-arc { opacity: 0.55; width: 70vw; }
  .op-grid {
    grid-template-columns: 1fr;
  }
  .op-team-tag { text-align: left; max-width: none; }
}

@media (max-width: 640px) {
  .op-card-photo {
    aspect-ratio: 4 / 5;
  }
}

/* ========== CATEGORIES VISUAL (baked soft veil like Ideas) ========== */
.page-cat { background: #05060a; }

.cat-hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 920px);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  padding: 7rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 3rem;
  overflow: hidden;
  background: #05060a;
}

.cat-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cat-hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

/* Fade is baked into hero JPG — no CSS arc */
.cat-hero-veil {
  display: none;
}

.cat-hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  max-width: 34rem;
}
.cat-hero-copy h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  font-weight: 600;
}
.cat-kicker {
  margin: 0 0 0.85rem;
  color: rgba(247,244,238,0.78);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
}
.cat-pitch {
  margin: 0 0 1.5rem;
  color: rgba(247,244,238,0.82);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 32rem;
}

.cat-sibs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cat-sibs a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(232,214,180,0.28);
  color: rgba(247,244,238,0.85);
  text-decoration: none;
  font-size: 0.86rem;
  background: rgba(255,255,255,0.03);
}
.cat-sibs a:hover {
  border-color: var(--gold-soft);
  color: var(--gold-bright);
}
.cat-sibs a[aria-current="page"] {
  border-color: var(--gold-soft);
  color: #1a140c;
  background: linear-gradient(90deg, #e8d6b4, #f3ead8);
  font-weight: 600;
}

.cat-caption {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--wrap-wide)) / 2));
  bottom: 1.5rem;
  z-index: 3;
  margin: 0;
  max-width: 14rem;
  text-align: right;
  color: rgba(247,244,238,0.88);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}
.cat-caption::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1.5px;
  margin: 0 0 0.55rem auto;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

@media (max-width: 980px) {
  .cat-hero {
    display: block;
    min-height: 0;
    padding: 6.4rem 1.25rem 2.2rem;
  }
  .cat-hero-media {
    position: relative;
    inset: auto;
    height: min(58vw, 380px);
    margin: 0 -1.25rem 1.4rem;
    width: calc(100% + 2.5rem);
  }
  .cat-hero-veil { display: none; }
  .cat-hero-media > img {
    object-position: 70% center;
  }
  .cat-hero-copy { max-width: none; }
  .cat-caption {
    position: static;
    text-align: left;
    margin-top: 1.25rem;
    max-width: none;
  }
  .cat-caption::before { margin-left: 0; margin-right: auto; }
}

/* ========== CATEGORIES HUB (valdkonnad) ========== */
.page-cats-hub { background: #05060a; }
.page-cats-hub .nav {
  background: transparent;
}
.page-cats-hub .nav.is-scrolled,
.page-cats-hub .nav.is-open { background: rgba(0,0,0,0.78); }

.cats-top {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 1.35rem;
  background: transparent;
}
.cats-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.5rem;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #05060a);
}

/* Full-bleed sunset under header + hero + cards */
.cats-top-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cats-top-bg picture,
.cats-top-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}
.cats-top-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 10, 0.78) 0%,
      rgba(5, 6, 10, 0.42) 38%,
      rgba(5, 6, 10, 0.12) 68%,
      rgba(5, 6, 10, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.28) 0%,
      transparent 18%,
      transparent 72%,
      rgba(5, 6, 10, 0.35) 100%
    );
}

.cats-hero {
  --cats-r: 50vw;
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: min(52svh, 520px);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  padding: 6.2rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 3.6rem;
  overflow: hidden;
  background: transparent;
}

.cats-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cats-hero-ring {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(var(--cats-r) * 2);
  height: calc(var(--cats-r) * 2);
  transform: translate(50%, -50%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 254, 246, 0.72);
  -webkit-clip-path: inset(0 49.5% 0 0);
  clip-path: inset(0 49.5% 0 0);
  opacity: 0.75;
  pointer-events: none;
  z-index: 5;
}
.cats-star {
  position: absolute;
  top: 50%;
  left: calc(100% - var(--cats-r));
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  overflow: visible;
  filter:
    drop-shadow(0 0 5px rgba(255,254,246,1))
    drop-shadow(0 0 12px rgba(232,214,180,0.85));
  z-index: 6;
}
.cats-hero-veil { display: none; }

.cats-hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  max-width: min(34rem, 92%);
}
.cats-hero-copy h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 600;
  color: #fff;
}
.cats-hero-copy h1 em {
  font-style: normal;
  color: #e8d6b4;
  font-weight: 600;
}
.cats-lead {
  margin: 0 0 1.25rem;
  color: rgba(247,244,238,0.82);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 32rem;
}
.cats-tag {
  margin: 0;
  color: rgba(247,244,238,0.88);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.cats-tag::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5px;
  margin-bottom: 0.65rem;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.cats-script { display: none; }

.cats-grid-wrap {
  position: relative;
  z-index: 3;
  margin-top: -2.4rem;
  margin-top: -2.85rem;
  padding: 0 max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 0.85rem;
}

.cats-grid {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.cats-card {
  position: relative;
  display: block;
  flex: 1 1 0;
  min-width: 0;
  min-height: clamp(16.5rem, 26vw, 19.5rem);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232,214,180,0.16);
  background: #0a0b10;
  text-decoration: none;
  color: #fff;
  scroll-margin-top: 5rem;
  transform: translateZ(0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease;
}
.cats-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.03);
  opacity: 0.9;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.cats-card[href="#liikumine"] > img { object-position: 52% 20%; }
.cats-card[href="#kultuur"] > img { object-position: center 22%; }
.cats-card[href="#too"] > img { object-position: 55% 40%; }
.cats-card[href="#haridus"] > img { object-position: 48% 24%; }

.cats-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Much lighter — photos readable */
  background:
    linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.05) 0%,
      rgba(5, 6, 10, 0.12) 28%,
      rgba(5, 6, 10, 0.38) 62%,
      rgba(5, 6, 10, 0.68) 100%
    );
}

.cats-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 1.25rem 1.2rem 1.25rem;
  gap: 0.55rem;
  box-sizing: border-box;
}
.cats-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(232,214,180,0.9);
}
.cats-ico {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin: 0.15rem 0 0.35rem;
  border-radius: 50%;
  border: 1px solid rgba(232,214,180,0.45);
  color: var(--gold-bright);
  background: rgba(5,6,10,0.25);
}
.cats-ico svg { width: 1.1rem; height: 1.1rem; }
.cats-card h2 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}
.cats-card p {
  margin: 0;
  color: rgba(247,244,238,0.72);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 18rem;
}
.cats-more {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Hover: GPU transform only — never animate flex (that caused scroll/hover jank) */
.cats-grid:hover .cats-card:not(:hover) {
  opacity: 0.82;
}
.cats-grid:hover .cats-card:hover {
  transform: translate3d(0, -6px, 0) scale(1.035);
  border-color: rgba(232,214,180,0.85);
  box-shadow:
    0 0 0 1px rgba(232,214,180,0.45),
    0 0 28px rgba(212,180,131,0.22),
    0 18px 40px rgba(0,0,0,0.4);
  z-index: 2;
  opacity: 1;
}
.cats-grid:hover .cats-card:hover > img {
  transform: scale(1.07);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .cats-card,
  .cats-card > img {
    transition: none !important;
  }
  .cats-grid:hover .cats-card:hover {
    transform: none;
  }
}
.cats-card:focus-visible {
  border-color: rgba(232,214,180,0.7);
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

/* Detail blocks — big photo + text, no subpages */
.cats-detail {
  scroll-margin-top: 5.5rem;
  padding: 3.5rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2));
  border-top: 1px solid rgba(232,214,180,0.08);
}
.cats-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.cats-detail.is-flip .cats-detail-inner {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}
.cats-detail.is-flip .cats-detail-media { order: 2; }
.cats-detail.is-flip .cats-detail-copy { order: 1; }

.cats-detail-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: min(68vh, 640px);
  max-height: 720px;
  background: #0a0b10;
  border: 1px solid rgba(232,214,180,0.12);
}
.cats-detail-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
#liikumine .cats-detail-media > img { object-position: 50% 14%; }
#kultuur .cats-detail-media > img { object-position: center 20%; }
#too .cats-detail-media > img { object-position: 52% 42%; }
#too .cats-detail-media {
  aspect-ratio: 16 / 10;
  min-height: min(48vh, 480px);
  max-height: 560px;
}
#haridus .cats-detail-media > img { object-position: 48% 16%; }

.cats-detail-copy { max-width: 34rem; }
.cats-detail-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  letter-spacing: -0.03em;
  color: #fff;
}
.cats-detail-kicker {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}
.cats-detail-copy p {
  margin: 0 0 0.9rem;
  color: rgba(247,244,238,0.82);
  font-size: 1.02rem;
  line-height: 1.65;
}

.cats-close {
  padding: 1rem max(1.25rem, calc((100vw - var(--wrap-wide)) / 2)) 3.5rem;
}

.cats-footline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cats-quote {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.78);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .cats-grid { flex-wrap: wrap; }
  .cats-card { flex: 1 1 calc(50% - 0.5rem); min-height: 19rem; }
  .cats-grid:hover .cats-card:hover { transform: translate3d(0, -3px, 0) scale(1.02); }
}
@media (max-width: 980px) {
  .cats-top { overflow: hidden; padding-bottom: 1.1rem; }
  .cats-top-bg img { object-position: center 42%; }
  .cats-top-fade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 6, 10, 0.45) 0%,
        rgba(5, 6, 10, 0.28) 28%,
        rgba(5, 6, 10, 0.2) 100%
      );
  }
  .cats-hero {
    --cats-r: 88vw;
    min-height: min(48svh, 440px);
    padding: 5.5rem 1.25rem 2rem;
    grid-template-columns: 1fr;
  }
  .cats-hero-ring,
  .cats-star { display: none; }
  .cats-hero-copy {
    max-width: min(100%, 36rem);
  }
  .cats-script {
    position: static;
    text-align: left;
    margin: 0 0 1rem;
    max-width: none;
  }
  .cats-script::after { margin-left: 0; margin-right: auto; }
  .cats-grid-wrap {
    margin-top: 0;
    padding: 0 1.25rem 0.75rem;
  }
  .cats-detail { padding: 2.5rem 1.25rem; }
  .cats-detail-inner,
  .cats-detail.is-flip .cats-detail-inner {
    grid-template-columns: 1fr;
  }
  .cats-detail.is-flip .cats-detail-media,
  .cats-detail.is-flip .cats-detail-copy { order: unset; }
  .cats-detail-media {
    min-height: min(70vw, 420px);
  }
  .cats-close { padding: 1rem 1.25rem 2.5rem; }
}
@media (max-width: 640px) {
  .cats-grid { flex-direction: column; }
  .cats-card { flex: 1 1 auto; }
  .cats-grid:hover .cats-card:hover { transform: none; }
}

body.page-cats-hub { overflow-anchor: none; }

/* official resource links */
.cats-resources {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 214, 180, 0.22);
  font-size: 0.95rem;
  line-height: 1.55;
}
.cats-resources-title {
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
}
.cats-resources p {
  margin: 0.55rem 0;
}
.cats-resources a {
  color: #ead7b6;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-word;
}
.cats-resources a:hover {
  color: #fff8e8;
}

