/* Kaptárért 2026. Static, image-led, WCAG-minded event page. */
:root {
  color-scheme: light;
  --ink: oklch(18% 0.035 48);
  --ink-soft: oklch(37% 0.04 52);
  --muted: oklch(49% 0.035 55);
  --cream: oklch(96% 0.024 78);
  --cream-2: oklch(91% 0.045 78);
  --paper: oklch(98% 0.018 82);
  --ember: oklch(55% 0.18 38);
  --ember-dark: oklch(36% 0.13 35);
  --ember-bright: oklch(72% 0.17 55);
  --leaf: oklch(58% 0.15 140);
  --aqua: oklch(67% 0.13 210);
  --plum: oklch(43% 0.12 332);
  --char: oklch(17% 0.05 40);
  --char-2: oklch(22% 0.06 42);
  --line: oklch(82% 0.045 67);
  --focus: oklch(55% 0.2 250);
  --shadow-soft: 0 18px 70px oklch(18% 0.035 48 / 0.14);
  --shadow-tight: 0 10px 28px oklch(18% 0.035 48 / 0.12);
  --font-display: ui-rounded, "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", var(--font-body);
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 72px;
  --r-sm: 0.75rem;
  --r-md: 1.25rem;
  --r-lg: 2rem;
  --space-1: clamp(0.35rem, 0.25rem + 0.25vw, 0.55rem);
  --space-2: clamp(0.65rem, 0.52rem + 0.35vw, 0.95rem);
  --space-3: clamp(1rem, 0.78rem + 0.65vw, 1.5rem);
  --space-4: clamp(1.45rem, 1.05rem + 1.1vw, 2.25rem);
  --space-5: clamp(2.25rem, 1.5rem + 2.2vw, 4rem);
  --space-6: clamp(3.5rem, 2.3rem + 3.8vw, 7rem);
}

* { box-sizing: border-box; }
html { scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, oklch(84% 0.09 58 / 0.28), transparent 34rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, var(--ink) 1px, transparent 1px),
    linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, transparent 86%);
}

img, svg { display: block; max-width: 100%; }
img { height: auto; object-fit: cover; }
a { color: var(--ember-dark); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--ember); }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
[id] { scroll-margin-top: calc(var(--header-h) + 1.25rem); }

.wrap { width: min(100% - clamp(2rem, 6vw, 5rem), var(--max)); margin-inline: auto; }
.skip {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-130%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--char);
  color: var(--cream);
  font-weight: 800;
}
.skip:focus { transform: translateY(0.75rem); }

h1, h2, h3 { margin: 0; color: var(--ink); text-wrap: balance; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.9rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 3.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
p + p { margin-top: 1rem; }
strong { font-weight: 850; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  background: oklch(96% 0.025 76 / 0.9);
  border-bottom: 1px solid oklch(71% 0.065 62 / 0.42);
  backdrop-filter: blur(18px) saturate(1.2);
}
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ember-dark); text-decoration: none; min-width: max-content; }
.brand-mark { color: var(--ember); filter: drop-shadow(0 8px 16px oklch(45% 0.16 38 / 0.25)); }
.brand-text { display: grid; line-height: 1; }
.brand-line-1 { font-weight: 900; letter-spacing: -0.03em; font-size: 1.05rem; }
.brand-line-2 { font-size: 0.78rem; color: var(--muted); font-weight: 800; letter-spacing: 0.12em; }
.site-nav { display: none; align-items: center; gap: 0.2rem; }
.site-nav a, .header-cta {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.site-nav a:hover, .header-cta:hover { background: oklch(91% 0.055 62); color: var(--ember-dark); }
.header-actions { display: flex; align-items: center; gap: 0.65rem; }
.header-cta { display: none; background: var(--char); color: var(--cream); }
.header-cta:hover { background: var(--ember-dark); color: var(--cream); transform: translateY(-1px); }
.lang-switch { display: flex; align-items: center; gap: 0.15rem; }
.lang-switch span { color: var(--muted); }
.lang-switch button {
  min-width: 2.45rem;
  min-height: 2.45rem;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: color 160ms ease, background-color 160ms ease;
}
.lang-switch button:hover, .lang-switch button[aria-pressed="true"] { color: var(--cream); background: var(--ember-dark); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(2rem, 5vw, 5rem) 0 var(--space-5);
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 15%, oklch(64% 0.22 38 / 0.42), transparent 26rem),
    radial-gradient(circle at 16% 78%, oklch(70% 0.16 55 / 0.28), transparent 28rem),
    linear-gradient(135deg, var(--char), oklch(20% 0.07 35) 44%, oklch(14% 0.04 36));
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -10rem auto;
  width: min(55vw, 46rem);
  aspect-ratio: 1;
  background: conic-gradient(from 40deg, var(--ember), transparent, var(--ember-bright), transparent, var(--ember));
  border-radius: 50%;
  filter: blur(62px);
  opacity: 0.32;
  z-index: -1;
}
.hero-heat {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: repeating-linear-gradient(100deg, transparent 0 18px, oklch(92% 0.06 75 / 0.14) 18px 19px, transparent 19px 46px);
  transform: skewY(-7deg) translateY(-8%);
}
.hero-grid { display: grid; gap: var(--space-5); align-items: center; }
.hero-copy { max-width: 58rem; }
.eyebrow, .kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: var(--space-3);
  color: var(--ember-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker { color: var(--ember-dark); }
.hero-title { color: var(--cream); max-width: 12ch; }
.hero-title span { display: block; }
.hero-title-soft { color: var(--ember-bright); }
.hero-lede {
  max-width: 48rem;
  margin-top: var(--space-4);
  color: oklch(91% 0.038 78 / 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.72;
  text-wrap: pretty;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--space-4); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ember-bright); color: var(--char); box-shadow: 0 12px 34px oklch(65% 0.16 55 / 0.28); }
.btn-primary:hover { background: oklch(78% 0.16 62); color: var(--char); }
.btn-ghost { color: var(--cream); border-color: oklch(88% 0.03 80 / 0.55); }
.btn-ghost:hover { background: oklch(90% 0.03 80 / 0.12); color: var(--cream); }
.hero-note { max-width: 42rem; margin-top: var(--space-3); color: oklch(85% 0.04 76 / 0.72); font-size: 0.94rem; }

.hero-visual {
  position: relative;
  min-height: 31rem;
  align-self: stretch;
}
.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(91% 0.04 80 / 0.42);
  background: var(--cream);
  box-shadow: 0 28px 90px oklch(10% 0.03 36 / 0.36);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main {
  inset: 0 9% 8% 3%;
  border-radius: 2.2rem;
  transform: rotate(-1.7deg);
}
.hero-photo-dog {
  right: 0;
  top: 6%;
  width: min(36%, 15rem);
  aspect-ratio: 3 / 4;
  border-radius: 1.35rem;
  transform: rotate(4deg);
}
.hero-photo-pottery {
  left: 0;
  bottom: 0;
  width: min(34%, 13rem);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(-7deg);
}
.impact-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: var(--space-5);
  overflow: hidden;
  border: 1px solid oklch(90% 0.04 80 / 0.35);
  border-radius: var(--r-lg);
  background: oklch(96% 0.02 80 / 0.16);
  backdrop-filter: blur(14px);
}
.impact-item { padding: clamp(1rem, 2.2vw, 1.65rem); background: oklch(20% 0.045 38 / 0.66); }
.impact-item strong { display: block; color: var(--ember-bright); font-size: clamp(1.65rem, 4vw, 3rem); line-height: 1; font-variant-numeric: tabular-nums; }
.impact-item span { display: block; margin-top: 0.45rem; color: oklch(89% 0.035 80 / 0.82); font-size: 0.9rem; }

.section { padding: var(--space-6) 0; }
.section-head { max-width: 54rem; margin: 0 auto var(--space-5); text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-lede { margin-top: 1rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.75; text-wrap: pretty; }
.section-copy > p:not(.kicker) { color: var(--ink-soft); font-size: clamp(1.03rem, 1.4vw, 1.18rem); line-height: 1.78; text-wrap: pretty; }

.section-kaptar { background: linear-gradient(180deg, var(--paper), oklch(94% 0.035 83)); }
.kaptar-layout { display: grid; gap: var(--space-4); align-items: start; }
.kaptar-logo-card {
  border-radius: var(--r-lg);
  padding: var(--space-4);
  background:
    radial-gradient(circle at 80% 0%, oklch(71% 0.17 55 / 0.22), transparent 14rem),
    var(--char);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.kaptar-logo-card img { width: 10rem; height: auto; margin-bottom: var(--space-3); padding: 1rem; border-radius: 1.5rem; background: var(--cream); }
.kaptar-logo-card p { color: oklch(91% 0.035 80 / 0.88); font-size: 1.08rem; line-height: 1.65; }
.pullquote {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: oklch(99% 0.016 82);
  box-shadow: var(--shadow-tight);
}
.pullquote p { font-family: var(--font-display); color: var(--ember-dark); font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.28; letter-spacing: -0.02em; font-weight: 850; }
.text-link { display: inline-flex; margin-top: 0.8rem; font-weight: 900; }
.story-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.story-card {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  box-shadow: var(--shadow-tight);
}
.story-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(14% 0.04 36 / 0.76), transparent 55%);
}
.story-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream);
  font-weight: 950;
  font-size: 1.05rem;
  text-shadow: 0 2px 12px oklch(10% 0.03 36 / 0.5);
}

.section-event {
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 10%, oklch(69% 0.17 55 / 0.24), transparent 24rem),
    linear-gradient(140deg, var(--char), var(--char-2));
}
.section-event h2, .section-event .kicker { color: var(--cream); }
.section-event .kicker { color: var(--ember-bright); }
.event-grid { display: grid; gap: var(--space-4); align-items: start; }
.event-copy-panel {
  padding: var(--space-4);
  border: 1px solid oklch(88% 0.04 80 / 0.2);
  border-radius: var(--r-lg);
  background: oklch(96% 0.02 80 / 0.08);
}
.event-copy-panel p { color: oklch(91% 0.035 80 / 0.86); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.75; }

.programme-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 60rem) {
  .programme-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); }
}

.programme-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: oklch(99% 0.016 82);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-width: 0;
}

.programme-card__head {
  padding: var(--space-4) var(--space-4) var(--space-3);
  background: linear-gradient(180deg, oklch(94% 0.06 70) 0%, oklch(98% 0.025 80) 100%);
  border-bottom: 1px solid var(--line);
}
.programme-card__day {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-dark);
}
.programme-card__date {
  margin: 0.25rem 0 0;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink-soft);
}
.programme-card__title {
  margin: 0.6rem 0 0;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.programme-schedule {
  list-style: none;
  margin: 0;
  padding: var(--space-3) var(--space-4);
  display: grid;
  gap: 0.1rem;
}
.programme-schedule li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.55rem 0;
  border-top: 1px dashed var(--line);
  font-variant-numeric: tabular-nums;
}
.programme-schedule li:first-child { border-top: 0; }
.programme-schedule time {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ember-dark);
}
.programme-schedule li span { color: var(--ink); font-weight: 600; }

.programme-schedule__gate time { color: var(--ink); }
.programme-schedule__gate span {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--muted);
}

.programme-card__foot {
  padding: var(--space-3) var(--space-4) var(--space-4);
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.programme-card__kitchen-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.programme-card__kitchen {
  margin: 0.3rem 0 0;
  color: var(--ink);
  line-height: 1.45;
}
.programme-card__kitchen strong { font-weight: 900; }

.section-venue { background: oklch(92% 0.04 84); }
.venue-layout { display: grid; gap: var(--space-4); }
.venue-panel {
  padding: var(--space-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: oklch(98% 0.018 82);
  box-shadow: var(--shadow-tight);
}
.venue-panel p { margin-top: var(--space-3); color: var(--ink-soft); font-size: 1.08rem; line-height: 1.75; }
address { margin-top: var(--space-4); font-style: normal; color: var(--ink-soft); overflow-wrap: anywhere; }

.partner-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--line); box-shadow: var(--shadow-soft); }
.partner-list li { display: grid; gap: 0.35rem; padding: clamp(1rem, 2vw, 1.5rem); background: var(--paper); }
.partner-list strong { color: var(--ink); font-size: 1.08rem; overflow-wrap: anywhere; }
.partner-list span { color: var(--ink-soft); }
.partner-list .beneficiary-line { background: var(--char); color: var(--cream); }
.partner-list .beneficiary-line strong { color: var(--ember-bright); }
.partner-list .beneficiary-line span { color: oklch(91% 0.035 80 / 0.86); }

.section-tickets {
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 18%, oklch(72% 0.18 55 / 0.26), transparent 24rem),
    linear-gradient(155deg, oklch(15% 0.05 38), oklch(24% 0.09 36));
}
.section-tickets h2, .section-tickets .kicker { color: var(--cream); }
.section-tickets .kicker { color: var(--ember-bright); }
.tickets-grid { display: grid; gap: var(--space-4); align-items: center; }
.tickets-copy p:not(.kicker) { margin-top: var(--space-3); color: oklch(90% 0.035 80 / 0.84); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.72; }
.ticket-desk {
  padding: var(--space-4);
  border-radius: var(--r-lg);
  border: 1px solid oklch(91% 0.04 80 / 0.22);
  background: oklch(94% 0.03 80 / 0.1);
  box-shadow: 0 24px 72px oklch(8% 0.03 36 / 0.32);
}
.ticket-desk > img { width: 6.8rem; height: auto; margin-bottom: var(--space-3); }
.notify-form { display: grid; gap: 0.7rem; }
.notify-form label { color: var(--cream); font-weight: 850; }
.form-row { display: grid; gap: 0.8rem; }
.notify-form input[type="email"] {
  width: 100%;
  min-width: 0;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 2px solid oklch(92% 0.03 80 / 0.28);
  border-radius: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.notify-form input[type="email"]:focus-visible { border-color: var(--focus); box-shadow: 0 0 0 4px oklch(55% 0.2 250 / 0.18); }
.notify-form input[type="email"][aria-invalid="true"] { border-color: oklch(55% 0.2 28); }
.form-error, .form-success { font-size: 0.92rem; line-height: 1.45; }
.form-error { display: none; color: oklch(86% 0.08 28); }
.form-success { display: none; margin-top: 1rem; padding: 1rem; border-radius: 1rem; color: var(--cream); background: oklch(96% 0.02 80 / 0.12); border: 1px solid oklch(91% 0.04 80 / 0.24); }
.form-success[data-visible="true"] { display: block; }
.tickets-note { margin-top: var(--space-3); color: oklch(90% 0.035 80 / 0.78); }
.tickets-note a { color: var(--ember-bright); }
.tickets-entity { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid oklch(91% 0.04 80 / 0.2); color: oklch(88% 0.035 80 / 0.66); font-size: 0.85rem; }

.section-faq { background: var(--paper); }
.faq-layout { display: grid; gap: var(--space-4); }
.faq { border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; background: oklch(99% 0.016 82); box-shadow: var(--shadow-tight); }
.faq details + details { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 900;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ember-dark);
  font-weight: 950;
  transition: transform 180ms ease, background-color 180ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--ember-bright); color: var(--char); }
.faq-body { padding: 0 clamp(1rem, 2vw, 1.5rem) 1.2rem; color: var(--ink-soft); line-height: 1.75; }
.faq-body a { overflow-wrap: anywhere; }

.site-footer { padding: var(--space-5) 0 calc(var(--space-4) + env(safe-area-inset-bottom)); color: oklch(88% 0.035 80 / 0.8); background: var(--char); }
.footer-grid { display: grid; gap: var(--space-4); }
.site-footer h3 { margin-bottom: 0.9rem; color: var(--ember-bright); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.site-footer p { color: oklch(88% 0.035 80 / 0.74); }
.site-footer a { color: var(--cream); }
.footer-baseline { display: flex; flex-direction: column; gap: 0.5rem; margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid oklch(91% 0.04 80 / 0.14); font-size: 0.86rem; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0.85rem max(1rem, env(safe-area-inset-left)) calc(0.85rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
  background: oklch(15% 0.05 38 / 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 -16px 40px oklch(8% 0.03 36 / 0.32);
  transform: translateY(110%);
  transition: transform 240ms ease;
}
.sticky-cta[data-visible="true"] { transform: translateY(0); }
.sticky-cta .btn { width: min(100%, 25rem); }

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr auto; }
  .partner-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-baseline { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 760px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .impact-strip { grid-template-columns: repeat(4, 1fr); }
  .story-gallery { grid-template-columns: repeat(4, 1fr); }
  .story-wide { grid-column: span 2; }
  .story-card { min-height: 20rem; }
  .tickets-grid, .faq-layout { grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr); }
  .sticky-cta { display: none; }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.8fr); }
  .hero-title { max-width: 12ch; }
  .hero-visual { min-height: 41rem; }
  .kaptar-layout { grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr); }
  .event-grid { grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr); }
  .partner-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 1.25rem, var(--max)); }
  .hero-title { font-size: clamp(2.25rem, 10.5vw, 2.85rem); }
  .hero-visual { min-height: 24rem; }
  .hero-photo-main { inset: 0 0 12% 0; }
  .hero-photo-dog { width: 38%; top: 2%; }
  .hero-photo-pottery { width: 35%; }
  .btn { width: 100%; }
  .impact-strip { border-radius: 1.25rem; }
  .story-card { min-height: 17rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .header-cta:hover { transform: none; }
}

@media print {
  .site-header, .sticky-cta, .hero-visual, .story-gallery, .lang-switch { display: none; }
  body, .hero, .section-event, .section-tickets, .site-footer { color: black; background: white; }
  h1, h2, h3, .hero-title, .hero-title-soft { color: black; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.82em; }
}

/* Language-specific type tuning and small-screen hardening. */
.hero-copy { min-width: 0; }
.hero-title { overflow-wrap: normal; }
html[data-lang="en"] .hero-title {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 12.5ch;
}
@media (min-width: 980px) {
  h1 { font-size: clamp(2.9rem, 5.8vw, 5.55rem); }
  h2 { font-size: clamp(1.9rem, 3.8vw, 3.35rem); }
}
.hero-lede, .section-lede, .section-copy p, .impact-item, .btn, .tickets-copy p { overflow-wrap: anywhere; }
.impact-item, .programme-card, .partner-list li, .ticket-desk, .venue-panel { min-width: 0; }
.header-inner, .header-actions { min-width: 0; }
.header-actions { margin-left: auto; flex-shrink: 0; }
@media (max-width: 520px) {
  .lang-switch button { min-width: 2.15rem; min-height: 2.15rem; }
  .lang-switch span { font-size: 0.8rem; }
  .hero-title,
  html[data-lang="en"] .hero-title {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
    line-height: 1.08;
    max-width: 100%;
  }
  .hero-title span { max-width: 100%; overflow-wrap: normal; }
  .hero-title-soft { overflow-wrap: anywhere; }
  h2 { font-size: clamp(1.65rem, 8vw, 2.25rem); line-height: 1.08; }
  .impact-item strong { font-size: clamp(1.45rem, 10vw, 2.25rem); overflow-wrap: anywhere; }
  .impact-item span { font-size: 0.82rem; }
  .hero-lede { font-size: 1rem; line-height: 1.65; }
}
.ticket-link {
  width: 100%;
  margin-top: 0.25rem;
  text-align: center;
}
