:root {
  --bg: #050810;
  --bg-soft: #090f1c;
  --panel: #0d1523;
  --panel-2: #111c2d;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(255,255,255,.19);
  --text: #f5f7fb;
  --muted: #97a4b8;
  --blue: #5798ff;
  --blue-deep: #1d55bd;
  --fire: #f0a142;
  --fire-soft: #ffbd68;
  --black: #030407;
  --ease: cubic-bezier(.2,.72,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--blue); color: #fff; }

/* handcrafted folk geometry — no image asset */
.folk-band {
  width: min(100%, 580px);
  height: 24px;
  opacity: .52;
  border-top: 1px solid rgba(87,152,255,.28);
  border-bottom: 1px solid rgba(87,152,255,.28);
  background:
    linear-gradient(45deg, transparent 42%, rgba(87,152,255,.48) 43% 47%, transparent 48%) 0 0/24px 24px,
    linear-gradient(-45deg, transparent 42%, rgba(87,152,255,.48) 43% 47%, transparent 48%) 0 0/24px 24px,
    radial-gradient(circle at 50% 50%, rgba(240,161,66,.9) 0 1.5px, transparent 2px) 0 0/24px 24px;
}
.folk-band--short { width: 290px; max-width: 100%; }
.folk-band--hero { margin: 24px 0 26px; opacity: .66; }
.folk-band--footer { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; width: min(680px, calc(100% - 48px)); }

.section { padding: 112px 0; position: relative; }
.section-shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.section-kicker {
  margin: 0 0 16px;
  color: var(--fire);
  font: 700 10px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.section-head { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2,
.location__content h2,
.flavour__content h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 860;
}
.section-head .folk-band { margin: 24px auto 0; }
.section-head--left .folk-band { margin-left: 0; }

/* side navigation */
.side-nav {
  position: fixed;
  left: 24px;
  top: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}
.menu-toggle {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(5,8,16,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.menu-toggle::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(87,152,255,.18);
  pointer-events: none;
}
.menu-toggle:hover,
.side-nav.is-open .menu-toggle,
.side-nav:hover .menu-toggle { border-color: rgba(87,152,255,.75); background: rgba(10,17,29,.96); }
.menu-toggle span {
  width: 23px;
  height: 2px;
  background: #fff;
  display: block;
  transform-origin: center;
  transition: transform .4s var(--ease), opacity .24s ease, width .35s var(--ease), background .35s ease;
}
.menu-toggle span:nth-child(2) { width: 16px; }
.side-nav:hover .menu-toggle span:nth-child(2), .side-nav.is-open .menu-toggle span:nth-child(2) { width: 23px; }
.side-nav.is-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.side-nav.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.side-nav.is-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.side-panel {
  width: 0;
  height: 440px;
  margin-left: -1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(7,12,22,.97);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(-20px) scaleX(.94);
  transform-origin: left center;
  transition: width .56s var(--ease), opacity .35s ease, transform .56s var(--ease);
  box-shadow: 24px 25px 80px rgba(0,0,0,.42);
}
.side-nav:hover .side-panel,
.side-nav:focus-within .side-panel,
.side-nav.is-open .side-panel {
  width: 292px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scaleX(1);
}
.side-panel__topline { height: 3px; background: linear-gradient(90deg, var(--blue), var(--fire)); }
.side-panel__eyebrow { margin: 28px 30px 7px; color: var(--fire); font: 700 9px/1 ui-monospace, monospace; letter-spacing: .3em; }
.side-panel__brand { margin: 0 30px 28px; font-weight: 900; letter-spacing: .13em; font-size: 22px; }
.side-links { display: grid; }
.side-links a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 30px;
  color: #a6b1c1;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .08em;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: color .24s ease, background .24s ease, padding-left .32s var(--ease), border-color .24s ease;
}
.side-links a span { color: #506079; font: 700 9px ui-monospace, monospace; letter-spacing: .16em; }
.side-links a:hover,
.side-links a.is-active { color: #fff; background: rgba(87,152,255,.09); padding-left: 36px; border-color: rgba(87,152,255,.12); }
.side-links a.is-active span { color: var(--fire); }
.side-panel__meta { margin: 28px 30px 0; color: #6f7b8e; font: 700 9px ui-monospace, monospace; letter-spacing: .18em; text-transform: uppercase; }
.nav-scrim { display: none; }

/* hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #03060c;
}
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; z-index: -4; transform: none; }
.hero__shade { position: absolute; inset: 0; z-index: -3; background: linear-gradient(180deg, rgba(3,6,12,.68) 0%, rgba(3,6,12,.28) 42%, rgba(3,6,12,.78) 100%); }
.hero__glow { position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 52% 56%, rgba(240,161,66,.15), transparent 34%), radial-gradient(circle at 50% 0%, rgba(87,152,255,.17), transparent 40%); }
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .08; background-image: radial-gradient(rgba(255,255,255,.7) .55px, transparent .7px); background-size: 5px 5px; mix-blend-mode: soft-light; }
.hero__content { width: min(980px, calc(100% - 56px)); margin: 0 auto; text-align: center; padding: 80px 0 100px; display: flex; flex-direction: column; align-items: center; }
.hero__date { color: #d5dce7; font: 720 10px/1 ui-monospace, monospace; letter-spacing: .32em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.hero__date i { width: 34px; height: 1px; background: var(--fire); display: inline-block; }
.hero__title { margin: 0; font-size: clamp(68px, 14vw, 178px); line-height: .88; letter-spacing: -.055em; font-weight: 950; text-transform: uppercase; text-shadow: 0 18px 60px rgba(0,0,0,.45); }
.hero__title span, .hero__title strong { display: block; }
.hero__title strong { margin-top: .015em; }
.hero__title span { color: #fff; }
.hero__title strong { color: var(--blue); font-weight: inherit; }
.hero__lead { margin: 36px 0 0; font-size: clamp(18px, 2.3vw, 28px); font-weight: 720; letter-spacing: -.02em; }
.hero__copy { max-width: 560px; margin: 12px auto 0; color: #b4becd; font-size: 15px; }
.hero__actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-width: 166px; padding: 14px 21px; text-transform: uppercase; font: 800 11px/1 ui-monospace, monospace; letter-spacing: .16em; border: 1px solid transparent; transition: transform .3s var(--ease), background .3s ease, border-color .3s ease, color .3s ease; }
.button:hover { transform: translateY(-3px); }
.button--fire { background: var(--fire); color: #101010; }
.button--fire:hover { background: var(--fire-soft); }
.button--ghost { border-color: rgba(255,255,255,.33); background: rgba(5,8,16,.18); color: #fff; backdrop-filter: blur(8px); }
.button--ghost:hover { border-color: var(--blue); color: #d9e8ff; background: rgba(87,152,255,.1); }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: #98a3b4; font: 700 8px ui-monospace, monospace; letter-spacing: .3em; }
.scroll-cue i { width: 1px; height: 30px; background: linear-gradient(var(--fire), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.45); transform-origin: top; opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

/* event info */
.event-strip { background: #0b111d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-strip__inner { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); }
.event-fact { padding: 28px 36px; display: flex; align-items: center; gap: 18px; border-right: 1px solid var(--line); }
.event-fact:last-child { border-right: 0; }
.event-fact__icon { width: 46px; height: 46px; border: 1px solid rgba(240,161,66,.4); color: var(--fire); display: grid; place-items: center; flex: 0 0 auto; font: 800 13px ui-monospace, monospace; }
.event-fact__icon--clock, .event-fact__icon--pin { position: relative; }
.event-fact__icon--clock::before { content: ""; width: 16px; height: 16px; border: 1.5px solid var(--fire); border-radius: 50%; }
.event-fact__icon--clock::after { content: ""; position: absolute; width: 6px; height: 1.5px; background: var(--fire); top: 22px; left: 23px; transform: rotate(-45deg); transform-origin: left; }
.event-fact__icon--pin::before { content: ""; width: 13px; height: 16px; border: 1.5px solid var(--fire); border-radius: 50% 50% 55% 55%; transform: rotate(0deg); }
.event-fact__icon--pin::after { content: ""; position: absolute; width: 4px; height: 4px; border: 1px solid var(--fire); border-radius: 50%; top: 18px; left: 20px; }
.event-fact small { display: block; color: var(--fire); font: 750 9px ui-monospace, monospace; letter-spacing: .3em; margin-bottom: 4px; }
.event-fact strong { display: block; font-size: 15px; letter-spacing: .02em; }
.event-fact p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }

/* story */
.story { background: var(--bg); }
.story::before { content: ""; position: absolute; right: -160px; top: 90px; width: 420px; height: 420px; border: 1px solid rgba(87,152,255,.08); transform: rotate(45deg); pointer-events: none; }
.story__grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 84px; align-items: center; }
.story__visual { position: relative; max-width: 510px; }
.framed-photo { position: relative; overflow: hidden; background: #0a101b; border: 1px solid var(--line); }
.framed-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(5,8,16,.26); pointer-events: none; }
.framed-photo--tall img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.corner { position: absolute; width: 42px; height: 42px; z-index: 2; }
.corner--tl { top: 18px; left: 18px; border-left: 2px solid var(--fire); border-top: 2px solid var(--fire); }
.corner--br { right: 18px; bottom: 18px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); }
.year-stamp { position: absolute; right: -28px; bottom: -24px; padding: 18px 24px; min-width: 142px; background: var(--blue-deep); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.year-stamp strong { display: block; font-size: 35px; line-height: 1; letter-spacing: -.04em; }
.year-stamp span { color: #dce9ff; font: 700 8px ui-monospace, monospace; letter-spacing: .24em; }
.story-title { margin: 0 0 26px; font-size: clamp(42px, 5.6vw, 74px); line-height: .94; letter-spacing: -.055em; font-weight: 900; }
.story-title span { display: block; }
.story-title__white { color: #fff; }
.story-title__blue { color: var(--blue); }
.story-title__outline {
  color: #030407;
  -webkit-text-stroke: 1.6px rgba(255,255,255,.96);
  paint-order: stroke fill;
  text-shadow: 0 0 1px #fff, 0 7px 30px rgba(87,152,255,.12);
}
.story__content .folk-band { margin: 0 0 26px; }
.story__text { color: #a6b1c1; max-width: 630px; font-size: 15px; line-height: 1.8; }
.story__text p { margin: 0 0 16px; }
.story__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 38px; }
.story__stats div { padding-left: 15px; border-left: 2px solid var(--fire); }
.story__stats strong { display: block; font-size: 28px; line-height: 1; }
.story__stats span { display: block; margin-top: 5px; color: #79869a; font: 700 9px/1.4 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }

/* programme */
.programme { background: #080e18; border-top: 1px solid rgba(255,255,255,.055); border-bottom: 1px solid rgba(255,255,255,.055); }
.timeline { max-width: 810px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 105px; top: 0; bottom: 0; width: 1px; background: linear-gradient(transparent, rgba(87,152,255,.3) 5%, rgba(87,152,255,.3) 95%, transparent); }
.timeline-row { display: grid; grid-template-columns: 80px 22px 1fr; gap: 15px; margin-bottom: 14px; align-items: start; }
.timeline-row time { padding-top: 24px; color: var(--fire); text-align: right; font: 800 12px ui-monospace, monospace; letter-spacing: .1em; }
.timeline-row > i { position: relative; width: 11px; height: 11px; margin-top: 26px; margin-left: 6px; background: var(--blue); border: 3px solid #080e18; outline: 1px solid rgba(87,152,255,.52); z-index: 2; }
.timeline-row--fire > i { background: var(--fire); outline-color: rgba(240,161,66,.62); box-shadow: 0 0 25px rgba(240,161,66,.35); }
.timeline-row > div { background: #0d1522; border: 1px solid var(--line); padding: 21px 23px; transition: border-color .3s ease, transform .35s var(--ease), background .3s ease; }
.timeline-row > div:hover { transform: translateX(6px); border-color: rgba(87,152,255,.35); background: #101b2d; }
.timeline-row > div > span { float: right; margin-left: 16px; padding: 4px 7px; border: 1px solid rgba(87,152,255,.28); color: var(--blue); font: 750 8px ui-monospace, monospace; letter-spacing: .18em; }
.timeline-row--fire > div > span { color: var(--fire); border-color: rgba(240,161,66,.36); }
.timeline-row h3 { margin: 0; font-size: 17px; letter-spacing: -.015em; }
.timeline-row p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* traditions */
.traditions { overflow: hidden; }
.traditions::after { content: ""; position: absolute; width: 340px; height: 340px; right: -170px; bottom: -150px; background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(87,152,255,.045) 16px 17px); transform: rotate(10deg); }
.traditions__grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(0,.88fr); gap: 26px; align-items: stretch; }
.traditions__photo { margin: 0; min-height: 560px; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.traditions__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03); transition: transform 1.2s var(--ease); }
.traditions__photo:hover img { transform: scale(1.035); }
.traditions__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,7,12,.86)); }
.traditions__photo figcaption { position: absolute; left: 28px; right: 28px; bottom: 25px; z-index: 2; font-size: 16px; font-weight: 700; }
.traditions__photo figcaption span { color: var(--fire); font: 800 10px ui-monospace, monospace; letter-spacing: .2em; margin-right: 12px; }
.traditions__cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tradition-card { padding: 28px 24px; background: var(--panel); min-height: 278px; position: relative; overflow: hidden; transition: background .3s ease; }
.tradition-card:hover { background: #111d30; }
.tradition-card::after { content: ""; position: absolute; width: 80px; height: 80px; right: -35px; bottom: -35px; border: 1px solid rgba(87,152,255,.16); transform: rotate(45deg); }
.tradition-card__number { color: var(--fire); font: 800 9px ui-monospace, monospace; letter-spacing: .2em; }
.tradition-card h3 { margin: 54px 0 12px; font-size: 23px; }
.tradition-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* food */
.flavour { background: #080e18; border-block: 1px solid rgba(255,255,255,.055); }
.flavour__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: center; }
.flavour__content h2 { margin-bottom: 28px; }
.flavour__content .folk-band { margin-bottom: 26px; }
.flavour__content > p:not(.section-kicker) { color: var(--muted); max-width: 490px; font-size: 14px; line-height: 1.75; }
.flavour__mark { margin-top: 34px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #6f7d91; font: 750 9px ui-monospace, monospace; letter-spacing: .24em; }
.flavour__photos { display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; height: 570px; }
.flavour__photos figure { margin: 0; overflow: hidden; position: relative; border: 1px solid var(--line); background: var(--panel); }
.flavour__photos figure:nth-child(2) { margin-top: 70px; }
.flavour__photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.flavour__photos figure:hover img { transform: scale(1.045); }
.flavour__photos figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 70px rgba(3,6,12,.18); pointer-events: none; }

/* location */
.location__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.location__photo { position: relative; min-height: 610px; overflow: hidden; border: 1px solid var(--line); }
.location__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,7,13,.78)); }
.location__photo-label { position: absolute; left: 26px; bottom: 24px; z-index: 2; color: #fff; font: 800 9px ui-monospace, monospace; letter-spacing: .25em; }
.location__content .folk-band { margin: 26px 0 30px; }
.location-list { display: grid; }
.location-list article { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.location-list article:last-child { border-bottom: 1px solid var(--line); }
.location-list article > span { color: var(--fire); font: 800 9px ui-monospace, monospace; letter-spacing: .16em; padding-top: 4px; }
.location-list h3 { margin: 0 0 5px; font-size: 17px; }
.location-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }

/* final */
.final-cta { min-height: 720px; position: relative; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 57%; z-index: -3; }
.final-cta__shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(4,7,13,.7), rgba(4,7,13,.33) 42%, rgba(4,7,13,.88)), radial-gradient(circle at 45% 60%, rgba(240,161,66,.12), transparent 35%); }
.final-cta__content { width: min(760px, calc(100% - 48px)); margin: 0 auto; text-align: center; padding: 100px 0 130px; }
.final-cta h2 { font-size: clamp(54px, 8vw, 104px); text-transform: uppercase; text-shadow: 0 20px 70px rgba(0,0,0,.5); }
.final-cta__content > p:not(.section-kicker) { max-width: 580px; margin: 22px auto 0; color: #c7cfda; font-size: 15px; }
.final-cta__contacts { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 38px auto 0; max-width: 670px; }
.final-cta__contacts a { padding: 18px 20px; background: rgba(5,8,16,.58); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px); transition: border-color .3s ease, transform .3s var(--ease), background .3s ease; }
.final-cta__contacts a:hover { transform: translateY(-3px); border-color: var(--fire); background: rgba(9,15,25,.78); }
.final-cta__contacts small { display: block; color: var(--fire); font: 750 8px ui-monospace, monospace; letter-spacing: .24em; margin-bottom: 5px; }
.final-cta__contacts strong { font-size: 13px; }
.footer { background: #03060b; border-top: 1px solid var(--line); }
.footer__inner { width: min(1180px, calc(100% - 64px)); min-height: 110px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer__inner > div { display: flex; flex-direction: column; }
.footer__inner strong { letter-spacing: .16em; font-size: 14px; }
.footer__inner span, .footer__inner p { color: #6e798b; font: 700 9px ui-monospace, monospace; letter-spacing: .16em; text-transform: uppercase; }

/* reveal motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .82s var(--ease), transform .82s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .14s; }
.hero .reveal:nth-child(4) { transition-delay: .2s; }
.hero .reveal:nth-child(5) { transition-delay: .26s; }
.hero .reveal:nth-child(6) { transition-delay: .32s; }

@media (max-width: 1020px) {
  .section { padding: 92px 0; }
  .section-shell { width: min(100% - 48px, 900px); }
  .story__grid, .flavour__grid, .location__grid { gap: 48px; }
  .traditions__grid { grid-template-columns: 1fr; }
  .traditions__photo { min-height: 520px; }
  .traditions__cards { grid-template-columns: repeat(4,1fr); }
  .tradition-card { min-height: 245px; padding: 22px 18px; }
  .tradition-card h3 { margin-top: 38px; font-size: 19px; }
  .flavour__photos { height: 500px; }
  .location__photo { min-height: 530px; }
}

@media (max-width: 780px) {
  .section { padding: 78px 0; }
  .section-shell { width: calc(100% - 36px); }
  .side-nav { left: 12px; }
  .menu-toggle { width: 54px; height: 54px; }
  .side-nav:hover .side-panel { width: 0; opacity: 0; pointer-events: none; transform: translateX(-20px) scaleX(.94); }
  .side-nav.is-open .side-panel, .side-nav:focus-within.is-open .side-panel { width: min(292px, calc(100vw - 80px)); opacity: 1; pointer-events: auto; transform: none; }
  .side-panel { height: auto; min-height: 430px; }
  .nav-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.56); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .3s ease; display: block; }
  body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  .hero__content { width: calc(100% - 42px); padding-top: 70px; }
  .hero__title { font-size: clamp(66px, 22vw, 122px); }
  .hero__date { font-size: 8px; letter-spacing: .2em; }
  .hero__copy { font-size: 14px; }
  .event-strip__inner { grid-template-columns: 1fr; }
  .event-fact { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 24px; }
  .event-fact:last-child { border-bottom: 0; }
  .story__grid, .flavour__grid, .location__grid { grid-template-columns: 1fr; }
  .story__visual { width: min(86%, 520px); margin: 0 auto 10px; }
  .year-stamp { right: -18px; }
  .story-title { font-size: clamp(42px, 13vw, 66px); }
  .story__stats { gap: 10px; }
  .story__stats strong { font-size: 24px; }
  .story__stats span { font-size: 8px; }
  .timeline::before { left: 84px; }
  .timeline-row { grid-template-columns: 60px 18px 1fr; gap: 11px; }
  .timeline-row > i { margin-left: 5px; }
  .timeline-row > div { padding: 18px; }
  .timeline-row > div > span { float: none; display: inline-block; margin: 0 0 9px; }
  .traditions__cards { grid-template-columns: repeat(2,1fr); }
  .flavour__grid { gap: 46px; }
  .flavour__photos { height: 470px; }
  .location__grid { gap: 44px; }
  .location__photo { min-height: 480px; order: 2; }
  .final-cta { min-height: 670px; }
  .final-cta__contacts { grid-template-columns: 1fr; max-width: 440px; }
  .footer__inner { width: calc(100% - 36px); min-height: 130px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; }
  .footer__inner p { margin: 0; }
}

@media (max-width: 520px) {
  .hero__image { object-position: 54% center; }
  .hero__content { width: calc(100% - 30px); }
  .hero__date i { width: 18px; }
  .folk-band--hero { margin: 18px 0 24px; }
  .hero__title { font-size: clamp(62px, 23vw, 98px); line-height: .8; }
  .hero__lead { font-size: 19px; margin-top: 28px; }
  .hero__actions { width: min(100%, 340px); flex-direction: column; }
  .button { width: 100%; }
  .scroll-cue { bottom: 17px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2, .location__content h2, .flavour__content h2 { font-size: 40px; }
  .story__visual { width: 92%; }
  .framed-photo--tall img { aspect-ratio: 4/4.7; }
  .year-stamp { right: -10px; bottom: -18px; padding: 14px 18px; }
  .story-title { font-size: 44px; }
  .story-title__outline { -webkit-text-stroke-width: 1.25px; }
  .story__stats { grid-template-columns: 1fr; }
  .story__stats div { display: grid; grid-template-columns: 70px 1fr; align-items: center; }
  .story__stats span { margin: 0; }
  .timeline::before { left: 58px; }
  .timeline-row { grid-template-columns: 43px 15px 1fr; gap: 8px; }
  .timeline-row time { font-size: 10px; }
  .timeline-row > i { width: 9px; height: 9px; margin-left: 3px; }
  .timeline-row h3 { font-size: 15px; }
  .timeline-row p { font-size: 12px; }
  .traditions__photo { min-height: 390px; }
  .traditions__cards { grid-template-columns: 1fr; }
  .tradition-card { min-height: 205px; }
  .tradition-card h3 { margin-top: 28px; }
  .flavour__photos { height: 390px; gap: 8px; }
  .flavour__photos figure:nth-child(2) { margin-top: 48px; }
  .location__photo { min-height: 390px; }
  .final-cta { min-height: 650px; }
  .final-cta h2 { font-size: 55px; }
  .final-cta__contacts strong { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* v2.16.1 — subtle ember fields + responsive polish */
.ember-field {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(34vh, 330px);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to top, #000 0 64%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0 64%, transparent 100%);
}
.ember-field--final { height: min(30vh, 285px); z-index: -1; }
.ember {
  --x: 50%;
  --drift: 12px;
  --rise: 180px;
  --duration: 4.8s;
  --delay: 0s;
  --size: 3px;
  position: absolute;
  left: var(--x);
  bottom: -10px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: #ffb34c;
  box-shadow: 0 0 7px rgba(255,145,38,.72), 0 0 14px rgba(255,97,16,.28);
  opacity: 0;
  animation: ember-rise var(--duration) linear var(--delay) infinite;
  will-change: transform, opacity;
}
.ember:nth-child(3n) { background: #ff7b22; }
.ember:nth-child(4n) { border-radius: 45% 55% 70% 30%; }
@keyframes ember-rise {
  0% { transform: translate3d(0, 14px, 0) scale(.55); opacity: 0; }
  12% { opacity: .72; }
  58% { opacity: .48; }
  100% { transform: translate3d(var(--drift), calc(var(--rise) * -1), 0) scale(.15); opacity: 0; }
}

/* Keep the hero typography separated at every viewport size. */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .015em;
  line-height: .86;
}
.hero__title span,
.hero__title strong { line-height: .86; }
.hero__content { position: relative; z-index: 3; }
.scroll-cue { z-index: 4; }

/* Do not magnify the low-resolution source with artificial parallax scaling. */
.hero__image {
  transform: none !important;
  backface-visibility: hidden;
  image-rendering: auto;
}

@media (max-width: 1100px) {
  .hero__content { width: min(900px, calc(100% - 64px)); }
  .hero__title { font-size: clamp(74px, 15.5vw, 152px); line-height: .88; }
  .hero__title span, .hero__title strong { line-height: .88; }
  .hero__lead { margin-top: 30px; }
}

@media (max-width: 780px) {
  .hero { min-height: 100svh; }
  .hero__content { width: min(680px, calc(100% - 40px)); padding: 72px 0 96px; }
  .hero__title { font-size: clamp(64px, 21vw, 118px); line-height: .9; gap: .025em; letter-spacing: -.045em; }
  .hero__title span, .hero__title strong { line-height: .9; }
  .hero__lead { margin-top: 25px; font-size: clamp(18px, 4.6vw, 24px); }
  .hero__copy { max-width: 520px; font-size: 14px; }
  .hero__actions { margin-top: 28px; }
  .ember-field { height: 235px; opacity: .82; }
  .side-panel { max-height: calc(100svh - 24px); overflow-y: auto; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .section-shell { width: calc(100% - 28px); }
  .hero__content { width: calc(100% - 28px); padding-top: 62px; padding-bottom: 92px; }
  .hero__date { max-width: calc(100% - 40px); gap: 8px; line-height: 1.45; }
  .hero__date i { width: 16px; }
  .folk-band--hero { width: min(100%, 420px); }
  .hero__title { font-size: clamp(58px, 22.5vw, 96px); line-height: .92; gap: .035em; }
  .hero__title span, .hero__title strong { line-height: .92; }
  .hero__lead { font-size: clamp(18px, 5vw, 21px); line-height: 1.15; }
  .hero__copy { max-width: 360px; line-height: 1.55; }
  .hero__actions { width: min(100%, 330px); }
  .scroll-cue { font-size: 7px; letter-spacing: .25em; }
  .event-fact { padding-left: 18px; padding-right: 18px; }
  .story__visual { width: min(94%, 430px); }
  .traditions__photo, .location__photo { min-height: 350px; }
  .flavour__photos { height: 350px; }
  .final-cta__content { width: calc(100% - 28px); padding-top: 86px; padding-bottom: 118px; }
  .final-cta h2 { font-size: clamp(44px, 14vw, 58px); line-height: .95; }
  .final-cta__content > p:not(.section-kicker) { font-size: 14px; }
  .folk-band--footer { width: calc(100% - 28px); }
}

@media (max-width: 390px) {
  .side-nav { left: 8px; }
  .menu-toggle { width: 50px; height: 50px; }
  .side-nav.is-open .side-panel,
  .side-nav:focus-within.is-open .side-panel { width: calc(100vw - 66px); }
  .side-panel__eyebrow { margin-left: 22px; margin-right: 22px; }
  .side-panel__brand { margin-left: 22px; margin-right: 22px; }
  .side-links a { padding-left: 22px; padding-right: 20px; }
  .side-panel__meta { margin-left: 22px; margin-right: 22px; }
  .hero__date { font-size: 7px; letter-spacing: .15em; }
  .hero__title { font-size: clamp(54px, 22vw, 82px); }
  .hero__lead { margin-top: 22px; }
  .hero__actions { gap: 9px; }
  .button { padding-top: 13px; padding-bottom: 13px; }
  .timeline::before { left: 54px; }
  .timeline-row { grid-template-columns: 39px 14px minmax(0,1fr); }
  .timeline-row > div { padding: 15px 13px; }
  .story-title { font-size: 39px; }
  .section-head h2, .location__content h2, .flavour__content h2 { font-size: 36px; }
  .traditions__photo, .location__photo { min-height: 320px; }
  .flavour__photos { height: 320px; }
}

@media (max-height: 700px) and (min-width: 700px) {
  .hero__content { padding-top: 42px; padding-bottom: 72px; }
  .hero__date { font-size: 8px; }
  .folk-band--hero { margin: 12px 0 16px; height: 20px; }
  .hero__title { font-size: clamp(62px, 12vw, 112px); line-height: .88; }
  .hero__lead { margin-top: 18px; font-size: 20px; }
  .hero__copy { margin-top: 7px; font-size: 13px; }
  .hero__actions { margin-top: 20px; }
  .scroll-cue { bottom: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .ember { display: none; }
}
