/* ============================================================
   ЦВІТ ПАПОРОТІ — Festival landing page · v2
   Brand palette taken directly from Кольори.pdf
   ============================================================ */

@font-face {
  font-family: "NAMU 1910";
  src: url("assets/NAMU-1910.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "NAMU 1850";
  src: url("assets/NAMU-1850.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}

:root {
  --emerald-deep: #082619;
  --emerald: #0d4530;
  --emerald-mid: #155a40;
  --emerald-light: #1d7758;
  --wine: #591416;
  --red: #d42228;
  --red-bright: #ea3a40;
  --teal: #03998a;
  --mint: #4bd6c8;
  --amber: #f79335;
  --amber-glow: #ffae53;
  --cream: #f3ead0;
  --cream-soft: #efe7d0;
  --paper: #f6efd9;
  --ink: #0a1a14;

  --f-display: "NAMU 1910", "Cormorant Garamond", serif;
  --f-serif:   "NAMU 1910", "Cormorant Garamond", serif;
  --f-body:    "Manrope", "Inter", system-ui, -apple-system, sans-serif;

  /* Type scale — one source of truth */
  --t-h1: clamp(72px, 13.5vw, 220px);     /* hero only */
  --t-h2: clamp(40px, 6vw, 88px);          /* section headlines */
  --t-h3: clamp(28px, 3.5vw, 44px);        /* sub-section / large card */
  --t-h4: clamp(22px, 2.4vw, 30px);        /* card titles */
  --t-h5: clamp(18px, 1.9vw, 22px);        /* small card titles */
  --t-lead: clamp(20px, 2.2vw, 26px);      /* lead paragraphs (italic serif) */
  --t-body: 16px;
  --t-small: 13.5px;
  --t-eyebrow: 11.5px;

  --grain: url("assets/texture.png");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--emerald-deep);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--amber); color: var(--ink); }

/* ============================================================
   Type
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--f-display); font-weight: 400; line-height: 1; letter-spacing: 0; }
.t-h2 { font-family: var(--f-display); font-size: var(--t-h2); line-height: 0.96; letter-spacing: -0.008em; }
.t-h3 { font-family: var(--f-display); font-size: var(--t-h3); line-height: 1.05; letter-spacing: -0.005em; }
.t-h4 { font-family: var(--f-display); font-size: var(--t-h4); line-height: 1.1;  letter-spacing: 0; }
.t-h5 { font-family: var(--f-display); font-size: var(--t-h5); line-height: 1.1;  letter-spacing: 0; }
.t-h2 em, .t-h3 em, .t-h4 em, .t-h5 em { color: var(--red-bright); font-family: var(--f-serif); font-style: italic; }
.f-display { font-family: var(--f-display); }
.f-serif   { font-family: var(--f-serif); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.eyebrow .line {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: min(1280px, 100% - 48px); margin-inline: auto; }
.wrap-tight { width: min(1080px, 100% - 48px); margin-inline: auto; }

section {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
}

.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 800px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, box-shadow .35s;
  white-space: nowrap;
  min-height: 48px;
  user-select: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 40px -10px rgba(212, 34, 40, 0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.btn .btn-eb {
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--amber);
  color: #2a1503;
  box-shadow: 0 4px 12px -2px rgba(247, 147, 53, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 18px 50px -12px rgba(234, 58, 64, 0.7); }
.btn-primary .arrow { background: rgba(255,255,255,0.18); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(243, 234, 208, 0.32);
}
.btn-ghost:hover { background: rgba(243, 234, 208, 0.08); box-shadow: inset 0 0 0 1px rgba(243, 234, 208, 0.6); }
.btn-ghost .arrow { background: rgba(243, 234, 208, 0.15); }

.btn-amber {
  background: linear-gradient(180deg, var(--amber-glow) 0%, var(--amber) 100%);
  color: #2a1503;
  box-shadow: 0 14px 38px -10px rgba(247, 147, 53, 0.55), inset 0 0 0 1px rgba(255,255,255,0.25);
}
.btn-amber:hover { filter: brightness(1.05); }
.btn-amber .arrow { background: rgba(0,0,0,0.18); }

.btn-mint {
  background: transparent;
  color: var(--mint);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.45);
}
.btn-mint:hover { background: rgba(75, 214, 200, 0.08); box-shadow: inset 0 0 0 1px var(--mint); }
.btn-mint .arrow { background: rgba(75, 214, 200, 0.15); }

/* ============================================================
   Sticky nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 14px 0;
  transition: background .4s, backdrop-filter .4s, border .4s, padding .3s;
}
.nav.scrolled {
  background: rgba(8, 38, 25, 0.78);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(75, 214, 200, 0.10);
  padding: 8px 0;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand img { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text {
  font-family: var(--f-display);
  font-size: 16.5px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-text .sub {
  display: block;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  color: var(--mint);
  opacity: 0.7;
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 32px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: rgba(243, 234, 208, 0.85);
  transition: color .2s;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--mint); transform-origin: left;
  transform: scaleX(0); transition: transform .3s;
}
.nav-links a:hover { color: var(--mint); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--mint); }
.nav-links a.active::after { transform: scaleX(1); }

.nav .btn { padding: 11px 20px; font-size: 11.5px; min-height: 42px; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(243, 234, 208, 0.25);
  flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .35s, opacity .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(8, 38, 25, 0.96);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  pointer-events: none;
}
.mobile-drawer.open { transform: translateY(0); pointer-events: auto; overflow-y: auto; }
.mobile-drawer a {
  font-family: var(--f-display);
  font-size: 38px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(75, 214, 200, 0.12);
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s, padding .25s;
}
.mobile-drawer a:hover { color: var(--mint); padding-left: 8px; }
.mobile-drawer a.active { color: var(--mint); padding-left: 8px; }
.mobile-drawer a .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--amber);
  opacity: 0.7;
}
.mobile-drawer .btn { margin-top: 32px; align-self: flex-start; }
.mobile-drawer .meta {
  margin-top: auto;
  padding-top: 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.5);
}
.mobile-drawer .meta a {
  font-size: 13px;
  font-family: var(--f-body);
  border: none;
  padding: 6px 0;
  color: var(--mint);
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav .btn-primary { display: none; }
  .nav-burger { display: inline-flex; }
}

@media (min-width: 961px) {
  .mobile-drawer { display: none !important; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(247, 147, 53, 0.10), transparent 70%),
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(13, 69, 48, 0.6), transparent 70%),
    linear-gradient(180deg, var(--emerald) 0%, var(--emerald-deep) 100%);
}

/* layered background */
.hero-photo {
  display: block;
  position: absolute; inset: 0;
  filter: saturate(1.08) contrast(1.06) brightness(0.74);
  transform: scale(1.06);
  animation: kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
  overflow: hidden;
}
.hero-photo image-slot {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.13) translate(-1.5%, -2%); }
}

.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 38, 25, 0.55) 0%, rgba(8, 38, 25, 0.25) 25%, rgba(8, 38, 25, 0.65) 65%, rgba(8, 38, 25, 0.95) 100%),
    radial-gradient(ellipse 70% 60% at 50% 70%, rgba(247, 147, 53, 0.18), transparent 70%);
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("assets/folk-frame.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.06;
  pointer-events: none;
}

.hero-grain {
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 1000px;
  mix-blend-mode: overlay;
  opacity: 0.30;
}

.hero-content {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 100px;
  z-index: 3;
}

/* ---- Hero meta · key-value plaque under title ---- */
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 44px);
  margin-bottom: 0;
  padding: 16px clamp(20px, 3vw, 28px);
  border-radius: 6px;
  background: rgba(8, 38, 25, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 0 0 1px rgba(75, 214, 200, 0.18),
    0 14px 30px -14px rgba(0, 0, 0, 0.5);
  align-self: flex-start;
  max-width: 100%;
  flex-wrap: wrap;
  position: relative;
  isolation: isolate;
}
.hero-meta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(247, 147, 53, 0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.meta-key {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 400;
}
.meta-val {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* embroidery-style triple diamond divider */
.meta-rune {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  opacity: 0.8;
}
.meta-rune span {
  display: block;
  width: 5px; height: 5px;
  background: var(--amber);
  transform: rotate(45deg);
}
.meta-rune span:nth-child(1) { background: var(--mint); width: 4px; height: 4px; opacity: 0.6; }
.meta-rune span:nth-child(2) { background: var(--amber); width: 6px; height: 6px; }
.meta-rune span:nth-child(3) { background: var(--red-bright); width: 4px; height: 4px; opacity: 0.7; }

/* Mobile: stack vertically with thin rules between */
@media (max-width: 720px) {
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px clamp(18px, 4vw, 22px);
    border-radius: 4px;
    width: 100%;
    max-width: 380px;
  }
  .meta-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(75, 214, 200, 0.10);
  }
  .meta-item:last-of-type { border-bottom: 0; }
  .meta-rune {
    display: none;
  }
  .meta-key { font-size: 9px; letter-spacing: 0.26em; }
  .meta-val { font-size: 15px; }
}

.hero-edition {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.3);
  background: rgba(8, 38, 25, 0.4);
  backdrop-filter: blur(8px);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  align-self: flex-start;
}
.hero-edition .yr { color: var(--amber); font-weight: 600; }
.hero-edition::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(247, 147, 53, 0.18);
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(247, 147, 53, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(247, 147, 53, 0); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(64px, 12vw, 190px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 8px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5), 0 2px 12px rgba(0,0,0,0.4);
}
.hero-title .row {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero-title .row > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-title .row.r1 > span { animation-delay: .25s; }
.hero-title .row.r2 > span { animation-delay: .42s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-title .accent {
  color: var(--red-bright);
  font-family: var(--f-display);
  text-shadow: 0 6px 60px rgba(212, 34, 40, 0.45), 0 2px 12px rgba(0,0,0,0.6);
}

.hero-sub {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--cream-soft);
  opacity: 0;
  max-width: 580px;
  margin-top: clamp(20px, 3vw, 32px);
  line-height: 1.45;
  animation: fade-in .8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 1.1s;
}
@keyframes fade-in { to { opacity: 0.92; } }

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(28px, 4vw, 44px);
  opacity: 0;
  animation: fade-in 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 1.3s;
}
.hero-cta { --opacity-end: 1; }
@keyframes fade-in { to { opacity: 1; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 4vw, 64px);
  margin-top: clamp(40px, 6vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(243, 234, 208, 0.15);
  max-width: 760px;
  opacity: 0;
  animation: fade-in 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 1.5s;
}
.hero-stat .val {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--mint);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: clamp(9.5px, 1vw, 11px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.6);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(243, 234, 208, 0.6);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 4;
  opacity: 0;
  animation: fade-in 1s ease forwards;
  animation-delay: 2s;
}
.scroll-hint .line {
  width: 1px; height: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(75, 214, 200, 0.15);
}
.scroll-hint .line::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -40px; height: 20px;
  background: linear-gradient(to bottom, transparent, var(--mint));
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* hero corner ornaments — crisp SVG embroidery clusters */
.hero-corner {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  width: clamp(140px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.35));
  opacity: 0;
  animation: corner-fade 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: .9s;
}
.hero-corner.tl { top: 80px; left: 50%; transform: translateX(-100%) translateX(-16px); }
.hero-corner.tr { top: 80px; left: 50%; transform: translateX(16px) scaleX(-1); }
@keyframes corner-fade {
  to { opacity: 0.92; }
}
.hero-pattern { opacity: 0.10; }

@media (max-width: 640px) {
  .hero-corner { width: clamp(80px, 22vw, 120px); }
  .hero-corner.tl { top: 72px; }
  .hero-corner.tr { top: 72px; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-block: 1px solid rgba(75,214,200,0.15);
  background: var(--emerald-deep);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: scrollX 48s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--cream);
  will-change: transform;
}
.marquee-track .star { color: var(--amber); font-size: 14px; }
.marquee-track .italic { font-family: var(--f-serif); font-style: italic; color: var(--mint); }
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Section header
   ============================================================ */
.s-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(48px, 7vw, 84px);
  flex-wrap: wrap;
}
.s-head h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.3vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.008em;
  max-width: 720px;
}
.s-head h2 em {
  color: var(--red-bright);
  font-family: var(--f-serif);
  font-style: italic;
}
.s-head .right {
  max-width: 380px;
  font-size: 15.5px;
  color: rgba(243, 234, 208, 0.7);
  line-height: 1.6;
  font-family: var(--f-body);
}
.s-head .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 0.08em;
}

/* ============================================================
   About
   ============================================================ */
.about {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-text .lead {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.38;
  color: var(--cream);
  margin-bottom: 28px;
}
.about-text p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(243, 234, 208, 0.85);
}
.about-text .quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  border-left: 2px solid var(--amber);
  padding-left: 22px;
  margin-top: 32px;
  color: var(--mint);
  line-height: 1.5;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.about-visual image-slot {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  filter: saturate(0.95) contrast(1.05);
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
.about-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 69, 48, 0.55) 100%);
}
.about-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 140px; height: 140px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--f-display);
  box-shadow: 0 20px 50px -15px rgba(212,34,40,0.6);
  z-index: 2;
  animation: spin-slow 30s linear infinite;
}
.about-badge .big { font-size: 38px; line-height: 1; animation: counter-spin 30s linear infinite reverse; }
.about-badge .sm { font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 6px; animation: counter-spin 30s linear infinite reverse; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes counter-spin { to { transform: rotate(-360deg); } }

.about-flora { position: absolute; pointer-events: none; user-select: none; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .about-badge { width: 110px; height: 110px; bottom: -20px; left: -10px; }
  .about-badge .big { font-size: 28px; }
}

/* ============================================================
   2025 in numbers — stats strip
   ============================================================ */
.numbers {
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0;
}
.numbers-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  color: var(--mint);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(75, 214, 200, 0.18);
  border-bottom: 1px solid rgba(75, 214, 200, 0.18);
}
.num-cell {
  position: relative;
  padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 36px);
  border-right: 1px solid rgba(75, 214, 200, 0.10);
  border-bottom: 1px solid rgba(75, 214, 200, 0.10);
}
.num-cell:nth-child(3n) { border-right: 0; }
.num-cell:nth-last-child(-n+3) { border-bottom: 0; }
.num-cell .val {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.num-cell .val .suf {
  font-size: 0.5em;
  color: var(--amber);
}
.num-cell .lbl {
  font-family: var(--f-body);
  font-size: 12.5px;
  color: rgba(243, 234, 208, 0.72);
  letter-spacing: 0.02em;
  margin-top: 14px;
  line-height: 1.45;
  max-width: 240px;
}

@media (max-width: 860px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell { border-right: 1px solid rgba(75, 214, 200, 0.10) !important; }
  .num-cell:nth-child(2n) { border-right: 0 !important; }
  .num-cell:nth-last-child(-n+3) { border-bottom: 1px solid rgba(75, 214, 200, 0.10); }
  .num-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num-cell { border-right: 0 !important; border-bottom: 1px solid rgba(75, 214, 200, 0.10) !important; }
  .num-cell:last-child { border-bottom: 0 !important; }
}

.numbers-after {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  margin-top: clamp(56px, 7vw, 96px);
  align-items: start;
}
.numbers-after h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.insight-list { display: grid; gap: 14px; }
.insight-list li {
  list-style: none;
  display: grid; grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(75, 214, 200, 0.14);
  font-size: 16.5px;
  color: rgba(243, 234, 208, 0.86);
}
.insight-list li .marker {
  font-family: var(--f-display);
  color: var(--amber);
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 760px) { .numbers-after { grid-template-columns: 1fr; } }

/* ============================================================
   Charity (ZSU) strip — high-impact full bleed
   ============================================================ */
.charity {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(247, 147, 53, 0.20), transparent 70%),
    linear-gradient(135deg, var(--wine) 0%, #3a0e10 50%, var(--emerald) 100%);
  color: var(--cream);
}
.charity-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
@media (max-width: 860px) { .charity-grid { grid-template-columns: 1fr; } }
.charity-mark {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
}
.charity-mark .badge {
  width: 64px; height: 64px;
  background: var(--cream);
  color: var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 32px;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.5);
}
.charity-mark .tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  font-weight: 600;
}
.charity-mark .tag-sub {
  font-family: var(--f-serif);
  font-style: italic;
  color: rgba(243, 234, 208, 0.75);
  font-size: 14px;
}
.charity-grid h2 {
  font-family: var(--f-display);
  font-size: clamp(29px, 4vw, 56px);
  line-height: 1.08;
  margin-bottom: 0;
}
.charity-grid h2 em {
  color: var(--amber);
  font-family: var(--f-serif);
  font-style: italic;
}
.charity-grid .desc {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(243, 234, 208, 0.85);
  margin-bottom: 24px;
  max-width: 540px;
}
.charity-grid .meta-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 234, 208, 0.18);
}
.charity-grid .meta-row .item .v {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--amber);
}
.charity-grid .meta-row .item .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.5);
  margin-top: 4px;
}

/* ============================================================
   Experiences
   ============================================================ */
.exp {
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--emerald);
  box-shadow: inset 0 0 0 1px rgba(75,214,200,0.08);
  isolation: isolate;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(75,214,200,0.30), 0 30px 60px -20px rgba(0,0,0,0.6); }
.exp-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.exp-card image-slot {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.exp-card:hover image-slot { transform: scale(1.06); }
.exp-card:hover .img { transform: scale(1.08); }
.exp-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 38, 25, 0.15) 0%, rgba(8, 38, 25, 0.55) 55%, rgba(8, 38, 25, 0.95) 100%);
}
.exp-card .content {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column;
  height: 100%; min-height: 360px;
  justify-content: flex-end;
  z-index: 2;
}
.exp-card .num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--mint);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.exp-card .glyph {
  position: absolute;
  top: 24px; left: 28px;
  width: 36px; height: 36px;
  opacity: 0.85;
}
.exp-card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 10px;
  color: var(--cream);
}
.exp-card p {
  font-size: 14px;
  color: rgba(243, 234, 208, 0.78);
  line-height: 1.55;
  max-width: 36ch;
}

.exp-card.lg { grid-column: span 7; min-height: 480px; }
.exp-card.md { grid-column: span 5; min-height: 480px; }
.exp-card.sm { grid-column: span 4; min-height: 360px; }
.exp-card.tall { grid-column: span 4; min-height: 360px; }

@media (max-width: 960px) {
  .exp-card.lg, .exp-card.md { grid-column: span 12; min-height: 380px; }
  .exp-card.sm, .exp-card.tall { grid-column: span 6; min-height: 320px; }
}
@media (max-width: 640px) {
  .exp-card.lg, .exp-card.md, .exp-card.sm, .exp-card.tall { grid-column: span 12; min-height: 300px; }
  .exp-card .content { min-height: 300px; }
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 50px;
  gap: 14px;
}
.g-cell {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--emerald-deep);
}
.g-cell .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .5s;
  filter: saturate(0.95) contrast(1.05);
}
.g-cell image-slot {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .5s;
  filter: saturate(0.95) contrast(1.05);
}
.g-cell:hover image-slot { transform: scale(1.06); filter: saturate(1.1) contrast(1.08); }
.g-cell:hover .img { transform: scale(1.08); filter: saturate(1.1) contrast(1.08); }
.g-cell::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(75,214,200,0.05);
  background: linear-gradient(180deg, transparent 60%, rgba(8, 38, 25, 0.45) 100%);
  pointer-events: none;
}

/* organic, natural-feeling layout: portrait/landscape mix with editorial rhythm */
.g-cell.a { grid-column: span 5; grid-row: span 8; }   /* big portrait left */
.g-cell.b { grid-column: span 4; grid-row: span 5; }   /* landscape top */
.g-cell.c { grid-column: span 3; grid-row: span 6; }   /* tall portrait right */
.g-cell.d { grid-column: span 4; grid-row: span 4; }   /* medium */
.g-cell.e { grid-column: span 3; grid-row: span 5; }   /* small portrait */
.g-cell.f { grid-column: span 5; grid-row: span 6; }   /* big landscape */
.g-cell.g { grid-column: span 4; grid-row: span 5; }
.g-cell.h { grid-column: span 4; grid-row: span 4; }
.g-cell.i { grid-column: span 4; grid-row: span 6; }   /* portrait close */

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; gap: 10px; }
  .g-cell.a { grid-column: span 6; grid-row: span 6; }
  .g-cell.b { grid-column: span 3; grid-row: span 4; }
  .g-cell.c { grid-column: span 3; grid-row: span 4; }
  .g-cell.d { grid-column: span 6; grid-row: span 5; }
  .g-cell.e { grid-column: span 3; grid-row: span 4; }
  .g-cell.f { grid-column: span 3; grid-row: span 4; }
  .g-cell.g { grid-column: span 3; grid-row: span 3; }
  .g-cell.h { grid-column: span 3; grid-row: span 3; }
  .g-cell.i { grid-column: span 6; grid-row: span 4; }
}

/* ============================================================
   Schedule
   ============================================================ */
.schedule {
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.day-tabs {
  display: inline-flex;
  margin-bottom: 36px;
  background: rgba(8, 38, 25, 0.6);
  padding: 5px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(75,214,200,0.15);
}
.day-tab {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.65);
  transition: background .3s, color .3s;
  min-height: 42px;
  font-weight: 500;
}
.day-tab.active { background: var(--red); color: #fff; }
.day-tab:hover:not(.active) { color: var(--mint); }

@media (max-width: 480px) {
  .day-tab { padding: 10px 14px; font-size: 10.5px; letter-spacing: 0.15em; }
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.schedule-disclaimer {
  margin-top: clamp(28px, 3vw, 40px);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(243, 234, 208, 0.55);
  text-align: center;
}
.tl-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 6px;
  background: rgba(13, 69, 48, 0.5);
  box-shadow: inset 0 0 0 1px rgba(75,214,200,0.08);
  transition: background .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.tl-row:hover { background: rgba(13, 69, 48, 0.9); transform: translateX(4px); }
.tl-row .time {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--mint);
  line-height: 1;
}
.tl-row .title {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.9vw, 22px);
  color: var(--cream);
  line-height: 1.1;
}
.tl-row .desc {
  font-size: 12.5px;
  color: rgba(243, 234, 208, 0.6);
  margin-top: 4px;
  font-family: var(--f-body);
  line-height: 1.45;
}
.tl-row .tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(247, 147, 53, 0.15);
  color: var(--amber);
  white-space: nowrap;
}
.tl-row.featured {
  background: linear-gradient(135deg, rgba(212, 34, 40, 0.20), rgba(247, 147, 53, 0.10));
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.35);
}
.tl-row.featured .time { color: var(--amber); }

@media (max-width: 960px) {
  .timeline { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tl-row { grid-template-columns: 64px 1fr; padding: 14px 16px; }
  .tl-row .tag { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
}

.day-header {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(75,214,200,0.15);
  flex-wrap: wrap;
}
.day-header .date {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.4vw, 48px);
  color: var(--cream);
  line-height: 1;
}
.day-header .day {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--mint);
}

/* ============================================================
   Tickets — festival ticket stubs
   ============================================================ */
.tickets {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

.stub-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) { .stub-grid { grid-template-columns: 1fr; gap: 20px; max-width: 520px; margin: 0 auto; } }

/* ---- single ticket stub ---- */
.stub {
  position: relative;
  border-radius: 8px;
  padding: 0;
  display: flex; flex-direction: column;
  background:
    linear-gradient(180deg, rgba(8, 38, 25, 0.92), rgba(8, 38, 25, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(75, 214, 200, 0.18),
    0 22px 50px -22px rgba(0, 0, 0, 0.55);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s, background .45s;
  overflow: hidden;
  isolation: isolate;
}

.stub::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, var(--stub-glow, rgba(212, 34, 40, 0.28)), transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  transition: opacity .4s;
}
.stub::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 600px;
  mix-blend-mode: overlay;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.stub:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 0 0 1px var(--stub-stroke, rgba(75, 214, 200, 0.4)),
    0 40px 80px -20px rgba(0, 0, 0, 0.6);
}
.stub:hover::before { opacity: 1; }

.stub.stub-red    { --stub-glow: rgba(212, 34, 40, 0.30);  --stub-stroke: rgba(234, 58, 64, 0.5); --stub-accent: var(--red); --stub-accent-text: #fff; }
.stub.stub-teal   { --stub-glow: rgba(3, 153, 138, 0.30);  --stub-stroke: rgba(75, 214, 200, 0.5); --stub-accent: var(--teal); --stub-accent-text: #fff; }
.stub.stub-amber  { --stub-glow: rgba(247, 147, 53, 0.32); --stub-stroke: rgba(247, 147, 53, 0.55); --stub-accent: var(--amber); --stub-accent-text: #2a1503; }

.stub.is-featured {
  background:
    linear-gradient(180deg, rgba(89, 20, 22, 0.55), rgba(8, 38, 25, 0.85));
  transform: translateY(-14px);
  box-shadow:
    inset 0 0 0 1px var(--stub-stroke),
    0 30px 80px -20px rgba(247, 147, 53, 0.25);
}
.stub.is-featured:hover { transform: translateY(-22px); }
@media (max-width: 1024px) {
  .stub.is-featured { transform: translateY(0); }
  .stub.is-featured:hover { transform: translateY(-8px); }
}

/* ---- early bird ribbon ---- */
.stub-eb {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: rgba(8, 38, 25, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(75, 214, 200, 0.4),
    0 6px 16px -6px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--f-body);
}
.eb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(75, 214, 200, 0.55);
  animation: eb-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes eb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(75, 214, 200, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(75, 214, 200, 0); }
}
.eb-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  white-space: nowrap;
}
.eb-until {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.55);
  padding-left: 8px;
  border-left: 1px solid rgba(75, 214, 200, 0.22);
  white-space: nowrap;
}
.stub-amber .eb-dot { background: var(--amber); animation-name: eb-pulse-amber; }
.stub-amber .eb-text { color: var(--amber); }
@keyframes eb-pulse-amber {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 147, 53, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(247, 147, 53, 0); }
}
.stub .stub-corner-tl { display: none; }
@media (max-width: 380px) {
  .eb-until { display: none; }
}

/* ---- featured banner ---- */
.stub-banner {
  position: relative;
  z-index: 3;
  background: var(--amber);
  color: #2a1503;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 8px 20px -10px rgba(247, 147, 53, 0.5);
  margin: 0;
}

/* ---- head (date + day) ---- */
.stub-head {
  position: relative;
  z-index: 2;
  padding: 56px 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}
.stub-day { display: flex; flex-direction: column; gap: 6px; }
.stub-day .dayno {
  font-family: var(--f-body);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  white-space: nowrap;
}
.stub.stub-amber .stub-day .dayno { color: var(--amber); }
.stub-day .weekday {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.55);
  letter-spacing: 0.1em;
}
.stub-date {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.005em;
}

/* ---- perforation ---- */
.stub-perf {
  position: relative;
  height: 18px;
  margin: 0 -10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  padding: 0 8px;
}
.stub-perf::before, .stub-perf::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--emerald);
  top: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.15);
}
.stub-perf::before { left: -10px; }
.stub-perf::after  { right: -10px; }
.stub-perf span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(75, 214, 200, 0.35);
  flex-shrink: 0;
}

/* ---- body ---- */
.stub-body {
  position: relative;
  z-index: 2;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stub-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.stub-title h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.6vw, 42px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.stub-title .stub-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.stub.stub-teal .stub-title .stub-sub { color: var(--mint); }

.stub-desc {
  font-size: 13.5px;
  color: rgba(243, 234, 208, 0.7);
  line-height: 1.55;
  margin-bottom: 24px;
  font-family: var(--f-body);
}

.stub-perks {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 0;
  flex-grow: 1;
}
.stub-perks li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 13.5px;
  color: rgba(243, 234, 208, 0.86);
  border-bottom: 1px dashed rgba(75, 214, 200, 0.13);
  line-height: 1.45;
}
.stub-perks li:last-child { border-bottom: 0; }
.diamond {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--mint);
  transform: rotate(45deg);
  margin-top: 6px;
  flex-shrink: 0;
}
.stub.stub-amber .diamond { background: var(--amber); }
.stub.stub-red .diamond { background: var(--red-bright); }

/* ---- footer (price + CTA) ---- */
.stub-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(75, 214, 200, 0.18);
}
.stub-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  position: relative;
}
.stub-price .currency {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--mint);
  line-height: 1;
}
.stub.stub-amber .stub-price .currency { color: var(--amber); }
.stub.stub-amber .stub-price .amount { color: var(--amber); }
.stub-price .amount {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.stub-price .regular {
  position: absolute;
  top: -8px; right: -2px;
  transform: translateY(-100%);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(243, 234, 208, 0.45);
  text-decoration: line-through;
  text-decoration-color: rgba(234, 58, 64, 0.7);
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}
.stub-price .saved {
  position: absolute;
  bottom: -16px; left: 0;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}

.stub-buy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--stub-accent);
  color: var(--stub-accent-text);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, filter .25s;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
  min-height: 46px;
  white-space: nowrap;
}
.stub-buy .buy-eb {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--emerald-deep);
  color: var(--mint);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.5), 0 4px 10px -2px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.stub-amber .buy-eb { color: var(--amber); box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.55), 0 4px 10px -2px rgba(0,0,0,0.4); }
.stub-buy svg { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.stub-buy:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 36px -8px var(--stub-glow);
}
.stub-buy:hover svg { transform: translateX(4px); }

/* ---- corner ornaments (decorative folk dot) ---- */
.stub-corner {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--stub-accent);
  transform: rotate(45deg);
  z-index: 2;
  opacity: 0.6;
}
.stub-corner-tl { top: 14px; left: 14px; }
.stub-corner-tr { top: 14px; right: 14px; }
.stub-corner-bl { bottom: 14px; left: 14px; }
.stub-corner-br { bottom: 14px; right: 14px; }
.stub.is-featured .stub-corner-tr { opacity: 0.6; } /* banner is now a strip, no clash */

/* "Що включає квиток" callout — shared above all 3 day cards */
.ticket-includes {
  margin-bottom: clamp(36px, 5vw, 60px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 69, 48, 0.6), rgba(8, 38, 25, 0.85));
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.18);
  position: relative;
  overflow: hidden;
}
.ticket-includes::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(247, 147, 53, 0.10), transparent 70%);
  pointer-events: none;
}
.ticket-includes .includes-head {
  margin-bottom: 20px;
}
.includes-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--cream);
  line-height: 1;
}
.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 28px;
  position: relative;
  z-index: 1;
}
.includes-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--cream);
  line-height: 1.4;
  padding: 12px 16px 12px 12px;
  border-radius: 8px;
  background: rgba(243, 234, 208, 0.04);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.12);
}
.includes-list .inc-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(75, 214, 200, 0.12);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.3);
}
.includes-list li.is-zsu {
  background: rgba(247, 147, 53, 0.10);
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.45);
  font-weight: 600;
  grid-column: 1 / -1;
}
.includes-list li.is-zsu .inc-mark {
  color: var(--amber);
  background: rgba(247, 147, 53, 0.16);
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.4);
}

/* Slim body — when ticket card only shows price + buy */
.stub-body-slim {
  padding: 36px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.stub-body-slim .stub-price {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .stub-body-slim {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .stub-body-slim {
    flex-direction: column;
    align-items: stretch;
  }
  .stub-body-slim .stub-buy {
    width: 100%;
    justify-content: center;
  }
}
.tickets-note {
  display: flex;
  gap: 32px;
  margin-top: clamp(36px, 5vw, 56px);
  padding: 24px 32px;
  border-radius: 6px;
  background: rgba(8, 38, 25, 0.5);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.12);
  flex-wrap: wrap;
  justify-content: center;
}
.tickets-note .note-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(243, 234, 208, 0.72);
}
.tickets-note .diamond { margin-top: 0; }
@media (max-width: 640px) {
  .tickets-note { flex-direction: column; gap: 16px; align-items: flex-start; padding: 20px 22px; }
}

/* ============================================================
   Partnership packages
   ============================================================ */
.partners {
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 960px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 6px;
  background: rgba(13, 69, 48, 0.4);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.12);
  transition: background .3s, box-shadow .3s, transform .3s;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.pkg:hover { background: rgba(13, 69, 48, 0.7); box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.4); transform: translateY(-4px); }
.pkg .icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}
.pkg .lbl {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.pkg .nm {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 14px;
}
.pkg .desc {
  font-size: 13px;
  color: rgba(243, 234, 208, 0.7);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 18px;
}
.pkg .link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  display: inline-flex; gap: 8px; align-items: center;
}
.pkg .link::after {
  content: "→";
  transition: transform .3s;
}
.pkg:hover .link::after { transform: translateX(4px); }

.partners-cta {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(89, 20, 22, 0.45), rgba(13, 69, 48, 0.7));
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.25);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
}
@media (max-width: 760px) { .partners-cta { grid-template-columns: 1fr; } }
.partners-cta h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.partners-cta p { font-size: 14.5px; color: rgba(243, 234, 208, 0.75); line-height: 1.55; }
.partners-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 760px) { .partners-cta .actions { justify-self: start; } }

/* ============================================================
   Location
   ============================================================ */
.location {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.loc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-info h3 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
  margin-bottom: 22px;
}
.loc-info h3 em { font-family: var(--f-serif); font-style: italic; color: var(--red-bright); }

.loc-info p {
  color: rgba(243, 234, 208, 0.78);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.loc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  max-width: 480px;
}
.loc-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(75,214,200,0.12);
  vertical-align: middle;
}
.loc-table tr:last-child td { border-bottom: 0; }
.loc-table .lt-ico { width: 30px; }
.loc-table .lt-ico .ico { color: var(--mint); width: 18px; height: 18px; display: block; }
.loc-table .lt-k { width: 96px; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(243,234,208,0.55); }
.loc-table .lt-v { font-family: var(--f-display); font-size: 17px; color: var(--cream); }
@media (max-width: 480px) {
  .loc-table .lt-k { width: 80px; }
  .loc-table .lt-v { font-size: 15px; }
}

/* Map with embroidery tile border (Tweak-driven) */
.loc-map-wrap {
  --border-size: clamp(20px, 2.5vw, 32px);
  position: relative;
  padding: var(--border-size);
}
.loc-map-wrap .loc-map {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(75,214,200,0.2);
  background: var(--emerald);
  position: relative;
}
.loc-border-strip {
  position: absolute;
  background-image: var(--map-border-img);
  background-repeat: repeat;
  background-size: var(--border-size) var(--border-size);
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  z-index: 2;
}
.loc-border-strip.top,
.loc-border-strip.bottom {
  left: 0; right: 0;
  height: var(--border-size);
}
.loc-border-strip.top    { top: 0; }
.loc-border-strip.bottom { bottom: 0; }

.loc-border-strip.left,
.loc-border-strip.right {
  top: var(--border-size);
  bottom: var(--border-size);
  width: var(--border-size);
}
.loc-border-strip.left  { left: 0; }
.loc-border-strip.right { right: 0; }

@media (max-width: 480px) {
  .loc-map-wrap { --border-size: 18px; }
}

/* Map-border tweak picker */
.map-border-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px 14px 12px;
}
.mbp-swatch {
  position: relative;
  aspect-ratio: 1;
  background: rgba(8, 38, 25, 0.5);
  border-radius: 6px;
  padding: 8px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: background .2s, box-shadow .2s, transform .2s;
}
.mbp-swatch img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.mbp-swatch:hover {
  background: rgba(8, 38, 25, 0.85);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.35);
  transform: translateY(-1px);
}
.mbp-swatch.active {
  background: rgba(13, 69, 48, 0.95);
  box-shadow: inset 0 0 0 2px var(--amber);
}
.loc-map iframe {
  width: 100%; height: 100%;
  border: 0;
}
.loc-map .pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.loc-map .pin .dot {
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 6px rgba(212, 34, 40, 0.25);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 6px rgba(212, 34, 40, 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(212, 34, 40, 0); }
}
.loc-map .pin .lbl {
  margin-top: 8px;
  background: rgba(8, 38, 25, 0.92);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.loc-map .pattern-strip {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 54px;
  background-image: url("assets/pattern-side.png");
  background-size: cover;
  background-position: left center;
  opacity: 0.9;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  padding: clamp(80px, 10vw, 130px) 0 40px;
  overflow: hidden;
}
.footer-cta {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 96px);
  position: relative;
}
.footer-cta h2 {
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.95;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.footer-cta h2 em { font-family: var(--f-serif); font-style: italic; color: var(--red-bright); }
.footer-cta p {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--mint);
  margin-bottom: 32px;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.5;
}
.footer-logo-mark {
  width: clamp(72px, 9vw, 110px);
  height: clamp(72px, 9vw, 110px);
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 30px rgba(212, 34, 40, 0.4));
  transform-origin: center 56%;
}

/* Bloom-in on reveal, then a gentle breathing sway */
.footer-cta .footer-logo-mark {
  opacity: 0;
  transform: scale(0.42) rotate(-28deg);
}
.footer-cta.in .footer-logo-mark {
  animation:
    logo-bloom 1.15s cubic-bezier(0.22, 1.2, 0.36, 1) forwards,
    logo-breathe 6s ease-in-out 1.2s infinite;
}
@keyframes logo-bloom {
  0%   { opacity: 0; transform: scale(0.42) rotate(-28deg); }
  60%  { opacity: 1; transform: scale(1.06) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes logo-breathe {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 8px 30px rgba(212, 34, 40, 0.4));
  }
  50% {
    transform: scale(1.045) rotate(-2.5deg);
    filter: drop-shadow(0 10px 42px rgba(247, 147, 53, 0.55));
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-cta .footer-logo-mark,
  .footer-cta.in .footer-logo-mark {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.footer-bot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 56px;
  border-top: 1px solid rgba(75,214,200,0.12);
  margin-top: 56px;
}
@media (max-width: 760px) { .footer-bot { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 440px) { .footer-bot { grid-template-columns: 1fr; } }

.footer-bot h4 {
  font-family: var(--f-body);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 16px;
}
.footer-bot ul { list-style: none; display: grid; gap: 9px; }
.footer-bot a {
  font-size: 13.5px;
  color: rgba(243, 234, 208, 0.78);
  transition: color .2s;
}
.footer-bot a:hover { color: var(--mint); }

.footer-signoff {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(75,214,200,0.08);
  font-size: 11.5px;
  color: rgba(243, 234, 208, 0.5);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 600px) { .footer-signoff { flex-direction: column; text-align: center; } }

/* ============================================================
   Footer link CTA (text-only, premium)
   ============================================================ */
.footer-actions {
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 18px;
  margin-top: 8px;
}
.footer-link {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--f-display);
  font-size: clamp(28px, 4.5vw, 48px);
  color: var(--cream);
  padding: 4px 0;
  letter-spacing: 0;
  position: relative;
  transition: color .3s, gap .3s;
}
.footer-link .line {
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, var(--amber), var(--red-bright));
  transition: width .4s cubic-bezier(.2,.7,.2,1);
  align-self: center;
}
.footer-link:hover { color: var(--amber); gap: 22px; }
.footer-link:hover .line { width: clamp(60px, 9vw, 120px); }
.footer-link svg { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.footer-link:hover svg { transform: translateX(6px); }

.footer-link.subtle {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 208, 0.55);
  gap: 12px;
}
.footer-link.subtle:hover { color: var(--mint); gap: 12px; }
.footer-link.subtle:hover svg { transform: none; }

/* ============================================================
   <image-slot> overrides — make slots act as full-fill backgrounds
   ============================================================ */
.slot-fill {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: inherit !important;
  z-index: 0 !important;
  --image-slot-empty-bg: rgba(8, 38, 25, 0.4);
  --image-slot-empty-color: rgba(75, 214, 200, 0.6);
  --image-slot-empty-border: rgba(75, 214, 200, 0.2);
}
image-slot {
  --image-slot-empty-bg: rgba(8, 38, 25, 0.35);
  --image-slot-empty-color: rgba(243, 234, 208, 0.7);
  --image-slot-empty-border: rgba(75, 214, 200, 0.25);
}

/* ============================================================
   About points & locations
   ============================================================ */
.about-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 28px 0;
}
.about-points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
  color: rgba(243, 234, 208, 0.86);
  line-height: 1.55;
}
.about-points .dia {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--mint);
  transform: rotate(45deg);
  margin-top: 7px;
}

.about-locations {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 38, 25, 0.7), rgba(13, 69, 48, 0.5));
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.18);
  position: relative;
  overflow: hidden;
}
.about-locations::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(247, 147, 53, 0.10), transparent 70%);
  pointer-events: none;
}
.about-locations .loc-head { margin-bottom: 20px; position: relative; z-index: 1; }
.loc-grid-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 28px;
  position: relative;
  z-index: 1;
}
.loc-grid-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 14.5px;
  color: rgba(243, 234, 208, 0.88);
  line-height: 1.45;
}
.loc-grid-list .diamond {
  margin-top: 6px;
  background: var(--amber);
}

/* ============================================================
   Rules
   ============================================================ */
.rules {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.rules-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 860px) { .rules-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rules-list { grid-template-columns: 1fr; } }

.rules-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 22px 22px 0;
  background: rgba(8, 38, 25, 0.5);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.10);
  transition: background .3s, transform .3s, box-shadow .3s;
  align-items: center;
}
.rules-list li:hover {
  background: rgba(8, 38, 25, 0.85);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.3);
}
.rules-list .r-num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--amber);
  text-align: center;
  border-right: 1px solid rgba(75, 214, 200, 0.15);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.rules-list .r-text {
  font-size: 14.5px;
  color: rgba(243, 234, 208, 0.85);
  line-height: 1.5;
}

.rules-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--mint);
  padding: 24px;
}
.rules-thanks .diamond {
  background: var(--amber);
  margin-top: 0;
  width: 9px;
  height: 9px;
}

/* ============================================================
   Contacts
   ============================================================ */
.contacts {
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 1024px) { .contacts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .contacts-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px 26px;
  border-radius: 6px;
  background: rgba(13, 69, 48, 0.45);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.12);
  transition: background .3s, box-shadow .3s, transform .3s;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "→";
  position: absolute;
  top: 26px; right: 26px;
  font-size: 18px;
  color: var(--mint);
  opacity: 0.5;
  transition: transform .3s, opacity .3s;
}
.contact-card:hover {
  background: rgba(13, 69, 48, 0.85);
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.4);
  transform: translateY(-4px);
}
.contact-card:hover::after {
  transform: translateX(4px);
  opacity: 1;
  color: var(--amber);
}
.contact-card .c-key {
  font-family: var(--f-body);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
}
.contact-card .c-val {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.contact-card .c-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(243, 234, 208, 0.55);
  margin-top: 4px;
}

.contacts-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(89, 20, 22, 0.45), rgba(13, 69, 48, 0.7));
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.25);
}
@media (max-width: 760px) { .contacts-cta { grid-template-columns: 1fr; } }
.contacts-cta .btn { justify-self: end; }
@media (max-width: 760px) { .contacts-cta .btn { justify-self: start; } }

.rules-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(75, 214, 200, 0.10);
}
.rules-intro p {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(243, 234, 208, 0.70);
  line-height: 1.6;
  max-width: 680px;
}

.contacts-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border: 1px solid rgba(75, 214, 200, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(75, 214, 200, 0.08), transparent 70%),
    rgba(243, 234, 208, 0.03);
}
.contacts-intro .eyebrow { justify-content: center; }
.contacts-intro h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  margin: 18px 0 16px;
  letter-spacing: -0.01em;
}
.contacts-intro h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--red-bright);
}
.contacts-intro p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--mint);
  line-height: 1.5;
  max-width: 560px;
  margin-inline: auto;
}
@media (max-width: 720px) {
  .rules-intro { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   About — CTA group + manifesto polish
   ============================================================ */
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.about-actions .btn {
  padding: 13px 22px;
  font-size: 11.5px;
  min-height: 44px;
}

/* ============================================================
   Heritage — Жива спадщина
   ============================================================ */
.heritage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(247, 147, 53, 0.12), transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(3, 153, 138, 0.10), transparent 70%),
    var(--emerald-deep);
  padding: clamp(72px, 9vw, 130px) 0;
}
.heritage-inner {
  text-align: center;
}
.heritage-inner .eyebrow {
  justify-content: center;
  margin-bottom: 32px;
}
.heritage-lead {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.heritage-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  text-align: left;
  max-width: 880px;
  margin-inline: auto;
}
@media (max-width: 760px) {
  .heritage-cols { grid-template-columns: 1fr; text-align: center; }
}
.heritage-cols p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(243, 234, 208, 0.85);
  font-family: var(--f-body);
}
.heritage-quote {
  font-family: var(--f-serif) !important;
  font-style: italic;
  color: var(--mint) !important;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  line-height: 1.45 !important;
}
.heritage-quote em {
  color: var(--amber);
  font-family: var(--f-serif);
}

/* ============================================================
   Charity — refined for new copy
   ============================================================ */
.charity-sub {
  font-family: var(--f-serif);
  font-style: italic;
  color: rgba(243, 234, 208, 0.75);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.5;
  margin-top: 18px;
  max-width: 460px;
}
.charity-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.charity-table td {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(243, 234, 208, 0.15);
  vertical-align: baseline;
}
.charity-table tr:last-child td { border-bottom: 0; }
.charity-table .ct-num {
  width: 56px;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--amber);
  letter-spacing: 0.05em;
}
.charity-table .ct-name {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(243, 234, 208, 0.92);
}
.desc-sub {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--mint);
  font-size: 15px;
  margin-top: 22px;
}

/* ============================================================
   Local — Локальне (featured / standout)
   ============================================================ */
.local {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 160px) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(247, 147, 53, 0.15), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(3, 153, 138, 0.12), transparent 65%),
    linear-gradient(180deg, var(--emerald) 0%, var(--emerald-deep) 100%);
}
.local::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 800px;
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}
.local > * { position: relative; z-index: 1; }

.local-headline {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 96px);
  max-width: 760px;
  margin-inline: auto;
}
.local-headline .eyebrow { justify-content: center; margin-bottom: 24px; }
.local-headline h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 28px;
}
.local-headline h2 em {
  color: var(--amber);
  font-family: var(--f-serif);
  font-style: italic;
}
.local-headline p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--t-lead);
  color: rgba(243, 234, 208, 0.85);
  line-height: 1.5;
  max-width: 540px;
  margin-inline: auto;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin-inline: auto;
}
@media (max-width: 960px) { .local-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .local-grid { grid-template-columns: repeat(2, 1fr); } }

.local-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 18px;
  border-radius: 6px;
  background: rgba(8, 38, 25, 0.45);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.15);
  font-family: var(--f-display);
  font-size: clamp(20px, 2.1vw, 26px);
  color: var(--cream);
  letter-spacing: 0.005em;
  text-align: center;
  transition: background .3s, box-shadow .3s, transform .3s;
  aspect-ratio: 1;
}
.local-card:hover {
  background: rgba(8, 38, 25, 0.85);
  box-shadow: inset 0 0 0 1px var(--amber);
  transform: translateY(-4px);
}
.lc-mark {
  display: block;
  width: 14px; height: 14px;
  background: var(--amber);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(247, 147, 53, 0.15);
}
.local-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--t-lead);
  color: var(--mint);
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}

/* ============================================================
   Долучитися — single section, two columns
   ============================================================ */
.join {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (max-width: 860px) { .join-grid { grid-template-columns: 1fr; } }

.join-card {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 38, 25, 0.85), rgba(8, 38, 25, 0.65));
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow .35s, transform .35s, background .35s;
}
.join-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 0% 0%, var(--jc-glow, rgba(247, 147, 53, 0.18)), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.join-card > * { position: relative; z-index: 1; }

.join-card-participants { --jc-glow: rgba(247, 147, 53, 0.22); }
.join-card-sponsors     { --jc-glow: rgba(212, 34, 40, 0.22); }

.join-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.4);
}

.jc-head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(75, 214, 200, 0.18);
}
.jc-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.5);
  background: rgba(247, 147, 53, 0.08);
}
.join-card-sponsors .jc-tag {
  color: var(--red-bright);
  box-shadow: inset 0 0 0 1px rgba(234, 58, 64, 0.5);
  background: rgba(212, 34, 40, 0.08);
}
.jc-head h3 {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.005em;
}

.jc-lead {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(243, 234, 208, 0.82);
  margin-bottom: 24px;
}

.jc-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}
.jc-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  font-size: 14.5px;
  color: rgba(243, 234, 208, 0.86);
  border-bottom: 1px dashed rgba(75, 214, 200, 0.12);
  line-height: 1.45;
}
.jc-list li:last-child { border-bottom: 0; }
.jc-list .diamond {
  margin-top: 6px;
  background: var(--amber);
}
.join-card-sponsors .jc-list .diamond { background: var(--red-bright); }

.jc-packages {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 28px;
}
.jc-packages .pkg {
  min-height: 0;
  padding: 18px 16px;
  background: rgba(13, 69, 48, 0.5);
}
.jc-packages .pkg .icon { font-size: 22px; margin-bottom: 8px; }
.jc-packages .pkg .nm   { font-size: 18px; margin-bottom: 4px; }
.jc-packages .pkg .lbl  { font-size: 9px; }
.jc-packages .pkg .desc, .jc-packages .pkg .link { display: none; }

.join-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.join-meta {
  margin-top: clamp(32px, 4vw, 48px);
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(8, 38, 25, 0.55);
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(243, 234, 208, 0.75);
  text-align: center;
  flex-wrap: wrap;
}
.join-meta .diamond { background: var(--amber); margin-top: 0; }
.join-meta a {
  color: var(--mint);
  text-decoration: none;
  transition: color .2s;
}
.join-meta a:hover { color: var(--amber); }

/* ============================================================
   About — Chat-bot dedicated highlight
   ============================================================ */
.chatbot {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(24px, 4vw, 36px);
  padding: clamp(32px, 4.5vw, 56px);
  border-radius: 8px;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(247, 147, 53, 0.20), transparent 65%),
    linear-gradient(135deg, rgba(89, 20, 22, 0.45), rgba(13, 69, 48, 0.72));
  box-shadow: inset 0 0 0 1px rgba(247, 147, 53, 0.35);
  position: relative;
  overflow: hidden;
}
.chatbot::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 600px;
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}
.chatbot > * { position: relative; z-index: 1; }

.cb-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--amber-glow), var(--amber));
  color: #2a1503;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 28px -10px rgba(247, 147, 53, 0.55);
}
.cb-icon svg { width: 28px; height: 28px; }
.cb-pulse {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--emerald);
  box-shadow: 0 0 0 0 rgba(75, 214, 200, 0.7);
  animation: cb-pulse 2s ease-in-out infinite;
}
@keyframes cb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(75, 214, 200, 0.6); }
  50%      { box-shadow: 0 0 0 10px rgba(75, 214, 200, 0); }
}

.cb-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mint);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(75, 214, 200, 0.4);
  background: rgba(8, 38, 25, 0.45);
  margin-bottom: 16px;
}
.cb-body h3 { color: var(--cream); margin-bottom: 14px; }
.cb-body h3 em { color: var(--amber); font-family: var(--f-serif); font-style: italic; }
.cb-body p {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(243, 234, 208, 0.82);
  margin-bottom: 20px;
  max-width: 580px;
}
.cb-list {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 12px 26px;
  margin-bottom: 28px;
}
.cb-list li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px;
  color: rgba(243, 234, 208, 0.85);
}
.cb-list .diamond {
  margin-top: 0;
  background: var(--mint);
  width: 6px; height: 6px;
  flex-shrink: 0;
  transform: rotate(45deg);
  display: inline-block;
}

@media (max-width: 640px) {
  .chatbot {
    grid-template-columns: 1fr;
  }
  .cb-icon { width: 56px; height: 56px; }
}

/* ============================================================
   Sparks / fireflies
   ============================================================ */
.sparks {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

.reveal-left { transform: translateX(-36px); }
.reveal-left.in { transform: translateX(0); }

/* ============================================================
   Scroll progress
   ============================================================ */
.scroll-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  background: transparent;
  z-index: 70;
  pointer-events: none;
}
.scroll-bar .fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--mint), var(--amber));
  transform-origin: left;
  transition: width .1s linear;
}

/* ============================================================
   Decorative ornament strip
   ============================================================ */
.ornament-strip {
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='22' viewBox='0 0 44 22'><g fill='%234bd6c8' fill-opacity='0.55'><path d='M11 0l11 11-11 11L0 11z'/><path d='M33 0l11 11-11 11L22 11z' fill='%23f79335' fill-opacity='0.7'/></g></svg>");
  background-size: 44px 22px;
  background-repeat: repeat-x;
  opacity: 0.5;
}

/* ============================================================
   Mobile tweaks
   ============================================================ */
@media (max-width: 600px) {
  .wrap, .wrap-tight { width: calc(100% - 28px); }
  section { padding: 72px 0; }
  .s-head { margin-bottom: 44px; }
  body { font-size: 16px; }
}
