/* ===== FriskyFlexShow v2 — styles ===== */

/* ---- Local fonts ---- */
@font-face {
  font-family: "Impact";
  src: url("fonts/Impact.woff2") format("woff2"),
       url("fonts/Impact.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Special Elite";
  src: url("fonts/SpecialElite-Regular.woff2") format("woff2"),
       url("fonts/SpecialElite-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Lacquer";
  src: url("fonts/Lacquer-Regular.woff2") format("woff2"),
       url("fonts/Lacquer-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --paper:   #faf9f5;
  --ink:     #1a1a1a;
  --purple:  #7a3fb0;
  --purple-2:#a85ce0;
  --accent:  #ff5b3a;
  --muted:   #6b6b6b;

  --font-display: "Impact", "Anton", "Bebas Neue", system-ui, sans-serif;
  --font-body:    "Special Elite", "Courier New", monospace;
  --font-hand:    "Lacquer", "Permanent Marker", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ---- Accessibility utilities ---- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* ---- Global focus styles ---- */
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 80px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(250,249,245,.85);
  backdrop-filter: blur(8px);
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.main-nav a:hover { color: var(--purple); }

.header-right { display: flex; gap: 14px; align-items: center; }

/* ---------- Language dropdown ---------- */
.lang-dropdown { position: relative; }
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-dropdown-toggle:hover,
.lang-dropdown.open .lang-dropdown-toggle {
  background: #872D8F;
  color: #fff;
}
.lang-dropdown-toggle .chev { transition: transform .2s ease; }
.lang-dropdown.open .lang-dropdown-toggle .chev { transform: rotate(180deg); }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
  display: none;
  z-index: 60;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu li { list-style: none; }
.lang-dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-dropdown-menu button:hover,
.lang-dropdown-menu button.active {
  background: #872D8F;
  color: #fff;
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 3px; background: var(--ink); display: block;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform .15s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .btn-icon { width: 20px; height: 20px; display: block; }
.btn[hidden] { display: none !important; }

.btn-tickets {
  position: relative;
  border: 0;
  color: #fff;
  background: #872D8F;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}
.btn-tickets::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4D2793 0%, #872D8F 100%);
  transform: translateY(0);
  transition: transform .45s ease;
  z-index: -1;
}
.btn-tickets:hover { color: #fff; box-shadow: none; }
.btn-tickets:hover::before { transform: translateY(-100%); }
.btn-tickets:active { background: #4D2793; color: #fff; transform: translateY(0); }
.btn-tickets:active::before { transform: translateY(-100%); opacity: 0; }
.btn-tickets > * { position: relative; z-index: 1; }

.btn-pill { background: var(--ink); color: var(--paper); }
.btn-pill.light { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  padding-top: 140px;
  padding-bottom: 160px;
}
.hero-bg { position: absolute; inset: -20% 0 -20% 0; z-index: 0; will-change: transform; }
.hero-video, .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback { z-index: 0; }
.hero-video    { z-index: 1; }
.hero-video.hidden { display: none; }
.hero-content {
  position: relative; z-index: 5;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: calc(1080px + 40px);
}
.hero-logo {
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin: 0 auto 30px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
}
.hero-socials { display: flex; justify-content: center; gap: 16px; }
.hero-socials.center { justify-content: center; margin-top: 16px; }

.social-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background-color: rgba(52, 52, 52, 0.75);
  transition: background-color .2s ease, transform .2s ease;
  cursor: pointer;
}
.social-ico img { width: 22px; height: 22px; display: block; }
.social-ico:hover  { background-color: rgba(52, 52, 52, 0.90); transform: translateY(-2px); }
.social-ico:active { background-color: rgba(52, 52, 52, 1.00); }
.social-ico.dark   { background-color: rgba(26,26,26,.1); }
.social-ico.dark:hover { background-color: rgba(26,26,26,.2); }

.hero-tickets-note {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  padding: 10px 24px;
  border: 2px solid var(--paper);
  border-radius: 16px;
  background: rgba(26, 26, 26, .35);
  backdrop-filter: blur(4px);
}
.httn-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--paper);
}
.httn-body {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .3px;
  color: var(--paper);
  opacity: .9;
}
@media (max-width: 600px) {
  .hero-tickets-note { margin-top: 14px; padding: 8px 18px; }
  .httn-title { font-size: 17px; }
  .httn-body { font-size: 14px; }
}

/* ---------- Ripped paper ---------- */
.ripped {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: auto;
  z-index: 4;
  pointer-events: none;
  display: block;
}
.ripped-bottom { bottom: -2px; }
.ripped-top    { top: -2px; }

/* ---------- Event info + Countdown ---------- */
.event-info {
  text-align: center;
  padding: 60px 24px 80px;
  background: var(--paper);
}
.ev-date {
  font-family: var(--font-display);
  font-size: 72px;
  color: #343434;
  letter-spacing: 2px;
  margin-bottom: 18px;
  line-height: 1.05;
}
.ev-venue {
  font-family: var(--font-display);
  font-size: 44px;
  color: #343434;
  letter-spacing: 1px;
}
.ev-addr { margin: 8px 0 36px; color: var(--muted); }

/* Countdown */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  color: #343434;
  min-width: 2ch;
  text-align: center;
  /* ticking animation */
  transition: transform .1s ease;
}
.cd-num.tick {
  transform: scale(1.06);
}
.cd-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  color: var(--purple);
  margin-top: 0;
  align-self: flex-start;
  padding: 0 2px;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 80px 8vw;
  align-items: center;
}
/* When About sits inside the two-column schedule-stay-wrapper it gets no extra padding
   and its internal layout stacks vertically — the wrapper provides the columns */
.about.about-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0;
  align-items: flex-start;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.section-title.light { color: var(--paper); }

/* About text — truncated preview */
.about-text .about-preview {
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 56ch;
  /* clamp to ~6 lines */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  max-height: calc(1.6em * 6);
}
.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.about-logo {
  width: min(280px, 70%);
  height: auto;
  transform: rotate(-5.5deg);
  transition: transform .3s ease;
}
.about-logo:hover { transform: rotate(0deg); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-overlay:not([hidden]) { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { display: flex; }

.modal {
  position: relative;
  background: var(--paper);
  border-radius: 4px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  transform: translateY(20px);
  transition: transform .3s ease;
  overflow: hidden; /* clip children to rounded corners */
}
.modal-overlay:not([hidden]) .modal { transform: translateY(0); }

/* Sticky header — always visible */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 20px;
  background: var(--paper);
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 2px;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s, border-color .2s, transform .2s;
}
.modal-close:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(90deg);
}

/* Scrollable body */
.modal-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  padding: 28px 48px 40px;
  overflow-y: auto;
  flex: 1;
}
.modal-body p + p { margin-top: 16px; }
.modal-body ul { margin: 8px 0 0; padding-left: 20px; }
.modal-body li { margin-bottom: 6px; }
.modal-body a { color: var(--ink); text-decoration: underline; }

/* Mobile: bottom sheet sliding up from off-screen */
@media (max-width: 600px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .modal-body { padding: 20px 24px 32px; }
  .modal-header { padding: 18px 20px 16px; }
}

/* ---------- Line Up (parallax) ---------- */
.parallax-section { position: relative; overflow: hidden; }
.lineup { padding: 100px 6vw; }
.lineup-bg {
  position: absolute; inset: -30% 0 -30% 0;
  background: image-set(url("images/lineup-bg.webp") type("image/webp"), url("images/lineup-bg.jpg") type("image/jpeg")) center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.lineup-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.lineup-inner { position: relative; z-index: 1; text-align: center; }
.polaroids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}
.poly {
  background: var(--paper);
  padding: 14px 14px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
/* Polaroid photo wrapper — holds the dark overlay */
.poly-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.poly-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Dark overlay that fades away when .revealed is added */
.poly-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #2C2925;
  transition: opacity 1.1s ease;
  opacity: 1;
}
.poly.revealed .poly-img-wrap::after {
  opacity: 0;
}
.poly figcaption {
  font-family: var(--font-hand);
  font-size: 22px;
  text-align: center;
  margin-top: 10px;
  color: var(--ink);
}
.r2  { transform: rotate(2deg); }
.r-2 { transform: rotate(-2deg); }
.r3  { transform: rotate(3deg); }
.r-3 { transform: rotate(-3deg); }
.poly:hover { transform: rotate(0) scale(1.06); box-shadow: 0 28px 60px rgba(0,0,0,.55); }
.lineup-extra {
  font-family: var(--font-hand);
  color: var(--paper);
  font-size: 24px;
  margin-top: 30px;
}

/* ---------- Schedule + Stay — side by side on desktop ---------- */
.schedule-stay-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 8vw;
  align-items: start;
  background: var(--paper);
}

/* ---------- Schedule ---------- */
.schedule {
  padding: 0;
  background: none;
}
.schedule-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
  margin-top: -14px;
}
.schedule-track {
  position: relative;
  max-width: 100%;
  margin: 0;
}
/* vertical line */
.schedule-track::before {
  content: "";
  position: absolute;
  left: 164px;
  top: 12px;
  bottom: 12px;
  width: 0;
  border-left: 1px dashed rgba(0,0,0,.12);
}
.sch-item {
  display: grid;
  grid-template-columns: 132px 24px 1fr;
  align-items: center;
  gap: 0 20px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(0,0,0,.12);
  transition: background .2s;
}
.sch-item:last-child { border-bottom: 0; }
.sch-item.highlight .sch-act { color: var(--purple); }
.sch-item.highlight .sch-dot { background: var(--purple); transform: scale(1.4); }
.sch-course {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .3px;
  color: var(--muted);
  text-align: right;
  line-height: 1.25;
}
.sch-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  justify-self: center;
  transition: transform .2s;
}
.sch-act {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.sch-item:nth-child(1) .sch-act { color: #A85CE0; }
.sch-item:nth-child(1) .sch-dot { background: #A85CE0; }
.sch-item:nth-child(2) .sch-act { color: #9F56D6; }
.sch-item:nth-child(2) .sch-dot { background: #9F56D6; }
.sch-item:nth-child(3) .sch-act { color: #9650CD; }
.sch-item:nth-child(3) .sch-dot { background: #9650CD; }
.sch-item:nth-child(4) .sch-act { color: #8C4BC3; }
.sch-item:nth-child(4) .sch-dot { background: #8C4BC3; }
.sch-item:nth-child(5) .sch-act { color: #8345BA; }
.sch-item:nth-child(5) .sch-dot { background: #8345BA; }
.sch-item:nth-child(6) .sch-act { color: #7A3FB0; }
.sch-item:nth-child(6) .sch-dot { background: #7A3FB0; }
.sch-item:hover .sch-dot { transform: scale(1.3); }

/* ---------- Stay in touch ---------- */
.stay {
  text-align: center;
  padding: 100px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.stay p { margin: 14px 0; font-size: 17px; }
.stay .muted { color: var(--muted); font-size: 14px; }
.stay .follow { margin-top: 36px; font-family: var(--font-display); letter-spacing: 1px; }

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sub-input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  width: 280px;
  transition: border-color .2s, box-shadow .2s;
}
.sub-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(122,63,176,.15);
}
.sub-input::placeholder { color: var(--muted); }
.sub-feedback {
  min-height: 1.4em;
  font-size: 14px;
  margin-top: 10px;
  color: var(--purple);
}
.sub-feedback.error { color: var(--accent); }

/* ---------- Stoemp ---------- */
.stoemp {
  min-height: 704px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* mobile base — scale top/bottom proportionally (desktop: 40/120, ratio ~1:3) */
  padding: 24px 24px 72px;
  text-align: center;
  color: var(--paper);
}
.stoemp-bg {
  position: absolute; inset: -15% 0 -15% 0;
  background: image-set(url("images/purple-paper.webp") type("image/webp"), url("images/purple-paper.jpg") type("image/jpeg")) center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.stoemp-inner { position: relative; z-index: 2; }
.stoemp-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  margin-bottom: 22px;
  color: var(--paper);
}
.stoemp-desc {
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  opacity: .92;
}

/* ---------- Browser-frame stage — web app preview, scroll-linked reveal ---------- */
.browserframe-stage {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1 / 1;
  margin: 30px auto 40px;
  /* no clipping here on purpose — the oversized cover is meant to spill
     past the frame's edges before it shrinks down to fit it */
}

/* Cover screenshot — fills the frame's content window edge-to-edge (no gap).
   Starts visibly larger than the frame and shrinks to fit as you scroll. */
.browserframe-cover {
  position: absolute;
  left: 1.95%;
  top: 10.74%;
  width: 96.1%;
  height: 89.26%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 8px 8px;
  transform: scale(1.35);
  transition: transform .05s linear;
  will-change: transform;
}

/* Frame chrome — drawn on top of the cover, fades in on scroll */
.browserframe-chrome {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transition: opacity .05s linear;
  filter: drop-shadow(6px 8px 20px rgba(0,0,0,.28));
}

/* ---------- Practical ---------- */
.practical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 8vw;
}

/* Map — styled border + slight tilt shadow */
.map {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    4px 4px 0 0 var(--ink),
    8px 8px 0 0 rgba(0,0,0,.08);
  border: 2px solid var(--ink);
}
.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(.95);
  mix-blend-mode: multiply;
}

.info-list { list-style: none; margin-top: 22px; }
.info-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,.2);
  font-size: 15px;
}
.info-list li:last-child { border-bottom: 0; }

/* ---------- FAQ — animated accordion ---------- */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.faq-summary {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
/* draw the + / – with CSS pseudo-elements so we can animate the rotation */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease;
}
.faq-icon::before { /* horizontal bar */
  width: 16px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after { /* vertical bar — rotates away when open */
  width: 2px; height: 16px;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Animated body — uses max-height trick for smooth collapse */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body > .faq-answer {
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 0;
  transition: padding-bottom .35s ease;
}
.faq-item.open .faq-body > .faq-answer {
  padding-bottom: 16px;
}
.faq-answer ul { margin: 10px 0 0; padding-left: 20px; }
.faq-answer li { margin-bottom: 6px; }
.faq-answer a { color: var(--ink); text-decoration: underline; }

.prac-col .btn-pill { margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 48px;
  height: auto;
  filter: invert(1);
  opacity: .7;
}
.footer-inner p {
  font-size: 13px;
  letter-spacing: .5px;
  color: rgba(255,255,255,.6);
  text-align: center;
  flex: 1;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials .social-ico { width: 38px; height: 38px; background-color: rgba(250,249,245,.75); }
.footer-socials .social-ico img { width: 18px; height: 18px; filter: invert(1); }
.footer-socials .social-ico:hover { background-color: rgba(250,249,245,.90); }
.footer-socials .social-ico:active { background-color: rgba(250,249,245,1); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 16px;
    gap: 14px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 49;
  }
  .main-nav.open { transform: translateY(0); }
  .header-right .btn-tickets span { display: none; }

  .main-nav .lang-dropdown {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.1);
    align-self: stretch;
  }
  .main-nav .lang-dropdown-toggle { width: 100%; justify-content: space-between; }
  .main-nav .lang-dropdown-menu { position: static; box-shadow: none; border: 0; padding: 4px 0 0; }

  .about, .practical, .schedule-stay-wrapper { grid-template-columns: 1fr; }
  .polaroids { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo { display: none; }

  .schedule-stay-wrapper { padding: 60px 6vw; gap: 48px; }
}
@media (max-width: 520px) {
  .polaroids { grid-template-columns: 1fr; max-width: 320px; }
  .site-header { padding: 10px 16px; }
  .subscribe-form { flex-direction: column; align-items: stretch; }
  .sub-input { width: 100%; }
}

/* ---- Hero responsive heights ---- */
@media (min-width: 769px)  { .hero { height: 630px; } }
@media (min-width: 1025px) { .hero { height: 900px; } }
@media (min-width: 1281px) { .hero { height: 900px; } }
@media (min-width: 1441px) { .hero { height: 1080px; } }

/* ---- Stoemp responsive min-heights (mirrors hero) ---- */
@media (min-width: 769px)  { .stoemp { min-height: 985px;  padding-top: 40px; padding-bottom: 120px; } }
@media (min-width: 1025px) { .stoemp { min-height: 1013px; padding-top: 40px; padding-bottom: 120px; } }
@media (min-width: 1281px) { .stoemp { min-height: 1125px; padding-top: 40px; padding-bottom: 120px; } }
@media (min-width: 1441px) { .stoemp { min-height: 1215px; padding-top: 40px; padding-bottom: 120px; } }

@media (max-width: 600px) {
  .ev-date  { font-size: 40px; }
  .ev-venue { font-size: 28px; }
  .cd-num, .cd-sep { font-size: 40px; }
}
