/* ============================================================
   UTSPRING — FRONT PAGE REDESIGN
   Paper, purple ink, pink aura. Hand-drawn, earnest, breathing.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Keep in-page anchor jumps from landing under the fixed .nav. */
html { scroll-padding-top: calc(72px + env(safe-area-inset-top, 0px)); }
body {
  background: var(--utspring-paper);
  color: var(--fg-1);
  overflow-x: hidden;
  /* Clear the fixed .nav (72px bar + iOS safe-area strip). */
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
}

/* Paper grain — subtle noise that makes surfaces feel hand-made */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity, 0.04);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

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

/* ---------- SHARED CONTAINER ---------- */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow { max-width: 880px; }

/* Wider side margin on desktop only — mobile keeps the 600px override below */
@media (min-width: 601px) {
  .wrap { padding: 0 48px; }
}

/* ---------- NAV ---------- */
/* Fixed (not sticky) so it reliably paints its backdrop-filter over the
   padding-top / iOS safe-area strip and stays pinned to the true screen top.
   Because it's out of flow, `body` gets matching padding-top (see below). */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--utspring-paper) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border-1);
  padding-top: env(safe-area-inset-top, 0px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--fg-1);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--utspring-purple); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--utspring-pink);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--utspring-purple);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-out-soft), background var(--dur-fast);
}
.nav-cta:hover { background: var(--purple-600); transform: translateY(-1px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--utspring-purple);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: ""; width: 40px; height: 1.5px; background: var(--utspring-purple);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.92;
  color: var(--utspring-purple);
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.hero h1 .pink {
  color: var(--utspring-pink);
  -webkit-text-stroke: 1px var(--utspring-purple);
}
.hero h1 .shift-right { display: inline-block; margin-left: 0.4em; }
.hero-lede {
  font-size: 22px;
  line-height: 1.55;
  max-width: 520px;
  color: var(--fg-1);
  margin: 0 0 40px;
}
.hero-lede strong { color: var(--utspring-purple); font-weight: 600; }

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

/* Primary CTA with the signature pink offset */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--utspring-purple);
  color: #fff;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--utspring-ink);
  box-shadow: var(--shadow-offset-pink);
  transition: transform var(--dur-fast) var(--ease-out-soft), box-shadow var(--dur-fast);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--pink-400); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--pink-400); }
.btn-primary .arrow { transition: transform var(--dur-fast); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--utspring-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 4px;
  border-bottom: 1.5px solid var(--utspring-ink);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.btn-ghost:hover { color: var(--utspring-purple); border-color: var(--utspring-purple); }

/* Hero mandala */
.hero-mandala {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* Bordered frame around the photo — same construction as .photo and
   .hero-photo: the wrapper carries the border/radius/shadow and clips,
   the image just fills it. Sits inside .hero-mandala so the halo glow
   isn't clipped along with the photo. */
.hero-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid var(--utspring-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-offset-pink);
  animation: mandala-breathe 8s ease-in-out infinite;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mandala.halo::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(closest-side,
    rgba(255, 121, 217, 0.35),
    rgba(255, 121, 217, 0) 70%);
  filter: blur(24px);
  animation: mandala-halo 8s ease-in-out infinite;
  z-index: -1;
}
@keyframes mandala-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.02) rotate(0.8deg); }
}
@keyframes mandala-halo {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Meta line under hero (subtle) */
.hero-meta {
  display: flex; align-items: center; gap: 24px;
  margin-top: 56px;
  font-size: 13px;
  color: var(--neutral-500);
  letter-spacing: 0.06em;
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--neutral-400);
}

/* ---------- MANIFESTO STRIP ---------- */
.manifesto {
  padding: 64px 0;
  border-top: 1.5px solid var(--border-1);
  border-bottom: 1.5px solid var(--border-1);
  background: var(--utspring-paper);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--utspring-purple);
  position: sticky; top: 100px;
  text-align: center;
}
.manifesto-mandala {
  position: relative;
  width: 220px;
  margin: 0 auto 16px;
}
.manifesto-mandala img {
  width: 100%;
  height: auto;
  animation: mandala-breathe 8s ease-in-out infinite;
}
.manifesto-mandala.halo::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side,
    rgba(255, 121, 217, 0.35),
    rgba(255, 121, 217, 0) 70%);
  filter: blur(12px);
  animation: mandala-halo 8s ease-in-out infinite;
  z-index: -1;
}
.manifesto-body p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 20px;
  color: var(--fg-1);
}
.manifesto-body p:first-child {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.1;
  color: var(--utspring-purple);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.manifesto-body em {
  font-style: normal;
  color: var(--utspring-purple);
  font-weight: 600;
}
.manifesto-choose {
  padding: 48px;
  border: 2px solid var(--utspring-ink);
  border-radius: var(--radius-md);
  background: var(--utspring-paper);
  box-shadow: var(--shadow-offset-pink);
  margin: 0 0 28px;
  position: relative;
}
.manifesto-choose-label {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--fg-1);
}
.manifesto-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manifesto-choose-list li {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  color: var(--fg-1);
}
.manifesto-choose-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 2px;
  background: var(--utspring-purple);
}

/* ---------- WHAT IT IS (lake + fire, split image) ---------- */
.split {
  padding: 120px 0;
  position: relative;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.98;
  color: var(--utspring-purple);
  margin: 0 0 32px;
}
.split p {
  font-size: 18px; line-height: 1.6;
  max-width: 54ch;
  margin: 0 0 20px;
  color: var(--fg-1);
}
.split-photos {
  position: relative;
  aspect-ratio: 5/6;
}
.photo {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--utspring-ink);
}
/* Photo placeholders — each an abstract "scene" in purple/pink/ink */
.photo-lake {
  top: 0; left: 0;
  width: 68%; aspect-ratio: 4/3;
  box-shadow: var(--shadow-offset-pink);
}
.photo-fire {
  bottom: 6%; right: 0;
  width: 58%; aspect-ratio: 3/4;
  box-shadow: var(--shadow-offset-ink);
}
.photo-sauna {
  bottom: 38%; left: 18%;
  width: 42%; aspect-ratio: 1/1;
  z-index: 2;
}

/* SVG scene placeholders — horizons of mist, fire, bodies */
.scene { width: 100%; height: 100%; display: block; }

/* ---------- PRINCIPLES ---------- */
.principles {
  padding: 120px 0;
  background: var(--utspring-purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.principles::before {
  /* radial wash */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(255,121,217,0.2), transparent 55%);
  pointer-events: none;
}
.principles-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
  gap: 48px;
  flex-wrap: wrap;
}
.principles-head .eyebrow {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--utspring-pink);
  text-transform: none;
  font-weight: 700;
}
.principles h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 16px 0 0;
  letter-spacing: normal;
}
.principles h2 .on {
  color: rgba(255,255,255,0.7);
  -webkit-text-stroke: 0;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.14);
}
.principles-attribution {
  margin: 32px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--utspring-pink);
}
.principle {
  background: var(--utspring-purple);
  padding: 40px 32px 48px;
  position: relative;
  transition: background var(--dur-base);
  cursor: pointer;
}
.principle:hover { background: var(--purple-600); }
.principle-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--utspring-pink);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.principle h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.principle p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ---------- FOR YOU / NOT FOR YOU ---------- */
.for {
  padding: 120px 0;
}
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.for-card {
  padding: 48px;
  border: 2px solid var(--utspring-ink);
  border-radius: var(--radius-md);
  background: var(--utspring-paper);
  position: relative;
}
.for-card.yes { box-shadow: var(--shadow-offset-pink); }
.for-card.no { background: var(--neutral-50); }
.for-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.for-card.yes .tag {
  background: var(--utspring-pink); color: var(--utspring-purple);
}
.for-card.no .tag {
  background: var(--neutral-200); color: var(--neutral-700);
}
.for-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  color: var(--utspring-purple);
  margin: 0 0 32px;
  font-weight: 400;
}
.for-card.no h3 { color: var(--neutral-600); }
.for-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.for-card li {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  color: var(--fg-1);
}
.for-card.yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 2px;
  background: var(--utspring-purple);
}
.for-card.no li::before {
  content: "×";
  position: absolute;
  left: 0; top: -2px;
  color: var(--neutral-400);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

/* ---------- GATHERING ---------- */
.gathering {
  padding: 120px 0;
  background: var(--utspring-ink);
  color: var(--utspring-paper);
  position: relative;
  overflow: hidden;
}
.gathering::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(59,1,255,0.4), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,121,217,0.18), transparent 70%);
  pointer-events: none;
}
.gathering-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gathering .eyebrow { color: var(--utspring-pink); }
.gathering h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  color: #fff;
  margin: 16px 0 32px;
  letter-spacing: -0.01em;
}
.gathering h2 .accent { color: var(--utspring-pink); }
.gathering-lede {
  font-size: 22px; line-height: 1.5;
  max-width: 50ch;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.gathering-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1.5px solid rgba(255,255,255,0.2);
  margin-bottom: 40px;
}
.fact {
  padding: 24px 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
  padding-right: 24px;
}
.fact-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.fact-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  line-height: 1;
}
.gathering-card {
  background: var(--utspring-paper);
  color: var(--utspring-ink);
  border-radius: var(--radius-lg);
  border: 2px solid #fff;
  padding: 40px;
  box-shadow: 8px 8px 0 var(--utspring-pink);
  position: relative;
}
.gathering-card .badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--utspring-pink);
  color: var(--utspring-purple);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--utspring-ink);
  transform: rotate(4deg);
}
.gathering-card h3 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--utspring-purple);
  margin: 0 0 24px;
  font-weight: 400;
}
.gathering-card dl {
  margin: 0 0 24px; padding: 24px 0;
  border-top: 1.5px solid var(--border-1);
  border-bottom: 1.5px solid var(--border-1);
  display: grid; gap: 14px;
}
.gathering-card dl div { display: flex; justify-content: space-between; gap: 16px; }
.gathering-card dt {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--neutral-500); font-weight: 600;
}
.gathering-card dd {
  margin: 0;
  font-size: 14px; font-weight: 600;
  color: var(--utspring-ink);
  text-align: right;
}

/* ---------- PARTICIPATE ---------- */
.participate {
  padding: 120px 0 80px;
}
.participate-head { text-align: center; margin-bottom: 80px; }
.participate h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1;
  color: var(--utspring-purple);
  margin: 16px 0;
  letter-spacing: -0.01em;
}
.participate-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 540px; margin: 0 auto;
  line-height: 1.5;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.event {
  border: 2px solid var(--utspring-ink);
  border-radius: var(--radius-lg);
  background: var(--utspring-paper);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-soft);
}
.event:hover { transform: translateY(-4px); }
.event-image {
  aspect-ratio: 16/9;
  position: relative;
  border-bottom: 2px solid var(--utspring-ink);
  overflow: hidden;
}
.event-body { padding: 32px; }
.event-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--utspring-purple);
  margin-bottom: 16px;
}
.event h3 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--utspring-purple);
  margin: 0 0 16px;
  font-weight: 400;
}
.event p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
  margin: 0 0 24px;
}
.event-meta {
  display: flex; gap: 16px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border-1);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.event-meta span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-500);
  font-weight: 600;
}
.event-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--utspring-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--utspring-ink);
  padding-bottom: 4px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.event-link:hover { color: var(--utspring-purple); border-color: var(--utspring-purple); }

/* ---------- FOOTER ---------- */
.foot {
  border-top: 1.5px solid var(--border-1);
  padding: 56px 0 40px;
  background: var(--utspring-paper);
}
.foot-top {
  display: flex; justify-content: space-between; align-items: start; gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.foot-logo img { height: 40px; }
.foot-tagline {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--utspring-purple);
  margin-top: 12px;
}
.foot-links { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--neutral-500); font-weight: 700; margin: 0 0 8px;
}
.foot-col a {
  font-size: 14px; color: var(--utspring-ink); text-decoration: none;
}
.foot-col a:hover { color: var(--utspring-purple); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1.5px solid var(--border-1);
  font-size: 12px;
  color: var(--neutral-500);
  flex-wrap: wrap; gap: 16px;
}

/* ---------- TWEAKS PANEL ---------- */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 280px;
  background: var(--utspring-paper);
  border: 2px solid var(--utspring-ink);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--utspring-pink);
  padding: 20px;
  z-index: 1000;
  display: none;
  font-family: var(--font-body);
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--utspring-purple);
  margin: 0 0 16px;
  font-weight: 400;
}
.tweaks .group { margin-bottom: 16px; }
.tweaks label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral-600);
  margin-bottom: 8px;
}
.tweaks .seg {
  display: flex; gap: 4px;
  background: var(--neutral-100);
  padding: 4px;
  border-radius: 999px;
}
.tweaks .seg button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--neutral-600);
  font-family: inherit;
}
.tweaks .seg button.active {
  background: var(--utspring-purple);
  color: #fff;
}
.tweaks input[type="range"] { width: 100%; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero { padding: 48px 0 64px; }
  .hero-grid, .split-grid, .manifesto-grid, .gathering-inner, .for-grid, .events-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .manifesto-label {
    position: static;
    text-align: left;
    display: flex;
    align-items: center;
  }
  .manifesto-label-text { order: 1; flex-shrink: 0; }
  .manifesto-mandala {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
  }
  .manifesto-mandala img { width: 140px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { padding: 24px 24px 28px; }
  .principle-num { font-size: 22px; margin-bottom: 6px; }
  .principle h3 { font-size: 17px; margin-bottom: 8px; }
  .principle p { font-size: 16px; line-height: 1.55; }
  .hero h1 { font-size: 72px; }
  .nav-links { display: none; }
  .manifesto { padding: 32px 0; }
  .split, .principles, .for, .gathering { padding: 40px 0; }
  .participate { padding: 40px 0 32px; }
  .participate-head { margin-bottom: 32px; }
  .principles-head { margin-bottom: 40px; }
  .foot { padding: 40px 0 32px; }
  .foot-top { margin-bottom: 32px; }
  .hero-mandala { display: none; }
  .event-body { text-align: center; }
  .event-meta { justify-content: center; }
  .event-link { justify-content: center; }
}

/* Phones — tighten the gutter and the padding inside bordered content
   cards so copy isn't squeezed into a narrow column. Reduces both the
   margin outside the box (.wrap) and the padding inside it. */
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .for-card,
  .manifesto-choose { padding: 28px 20px; }
  .gathering-card { padding: 28px 22px; }
  .event-body { padding: 28px 22px; }
}

/* ============================================================
   VIDEO FACADE — click-to-load YouTube (reusable component)
   Behaviour: video-facade.js. A page provides its own section
   wrapper (background, padding, heading); this styles the facade
   itself. Markup:
     <div class="video-stack">
       <button class="video-facade [is-portrait]" data-video-id="ID"
               data-video-title="…" aria-label="…">
         <img class="video-thumb" src="…self-hosted poster…" …>
         <span class="video-play" aria-hidden="true"></span>
         <span class="video-consent">Click to play · loads YouTube …</span>
       </button>
     </div>
   ============================================================ */

/* Multiple videos stacked, centred */
.video-stack { display: flex; flex-direction: column; align-items: center; gap: 56px; }

/* Shared frame — the facade and the loaded embed look identical */
.video-facade,
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--utspring-ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-offset-pink);
  background: var(--utspring-ink);
}
/* Portrait variant for a vertical Short */
.video-facade.is-portrait,
.video-embed.is-portrait { aspect-ratio: 9 / 16; max-width: 360px; }

.video-facade { padding: 0; cursor: pointer; }
.video-facade:focus-visible { outline: 3px solid var(--utspring-purple); outline-offset: 4px; }

.video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Darken toward the bottom so the play button and label stay legible */
.video-facade::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.55), rgba(10,10,20,0.10) 45%, transparent 70%);
  z-index: 1;
}

.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--utspring-pink);
  border: 2px solid var(--utspring-ink);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform var(--dur-fast, 160ms) var(--ease-out-soft, ease);
}
.video-play::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--utspring-purple);
  margin-left: 6px; /* optically centre the triangle in the circle */
}
.video-facade:hover .video-play,
.video-facade:focus-visible .video-play { transform: translate(-50%, -50%) scale(1.08); }

.video-consent {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  color: #fff;
  background: rgba(10,10,20,0.55);
  backdrop-filter: blur(2px);
}
.video-consent::before { content: "▶"; font-size: 10px; }

.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Let the consent label wrap instead of clipping on narrow phones */
@media (max-width: 600px) {
  .video-consent { display: block; text-align: center; line-height: 1.4; font-size: 11px; padding: 9px 14px; }
}
