/* ============================================================
   MOR GECELER — Hasat Festivali  |  gece-festival tonu
   Palette: bg #141026 · surface #1F1940 · ink #F0ECFA
            accent #C05FA8 · accent-2 #F2C14E
   ============================================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #141026;
  --bg-2: #100c1f;
  --surface: #1F1940;
  --surface-2: #2a2154;
  --surface-3: #342a63;
  --ink: #F0ECFA;
  --ink-soft: #c3bbe0;
  --ink-dim: #948ab8;
  --accent: #C05FA8;
  --accent-2: #F2C14E;
  --accent-glow: rgba(192, 95, 168, 0.55);
  --line: rgba(240, 236, 250, 0.12);
  --line-strong: rgba(240, 236, 250, 0.22);

  --container: 1400px;
  --pad: clamp(16px, 4vw, 48px);
  --header-h: 76px;

  --font-head: "Century Gothic", "Futura", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: Tahoma, "Segoe UI", Verdana, sans-serif;
  --font-mono: "Consolas", "Courier New", monospace;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-margin-top: var(--header-h);
  position: relative;
}

/* starry ambient backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(192, 95, 168, 0.16), transparent 60%),
    radial-gradient(900px 600px at 12% 8%, rgba(242, 193, 78, 0.08), transparent 55%),
    radial-gradient(1000px 800px at 50% 120%, rgba(90, 52, 132, 0.30), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(240, 236, 250, 0.7), transparent),
    radial-gradient(1.2px 1.2px at 70% 20%, rgba(240, 236, 250, 0.55), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(242, 193, 78, 0.5), transparent),
    radial-gradient(1.3px 1.3px at 85% 55%, rgba(240, 236, 250, 0.5), transparent),
    radial-gradient(1px 1px at 12% 80%, rgba(240, 236, 250, 0.4), transparent),
    radial-gradient(1.2px 1.2px at 58% 42%, rgba(192, 95, 168, 0.5), transparent);
  background-size: 100% 100%;
  opacity: 0.6;
  animation: twinkle 9s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.32; } to { opacity: 0.7; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}
h1, h2, h3 { text-transform: uppercase; }
p { margin: 0 0 1em; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-2);
  color: #221a10;
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2));
}

.text-accent { color: var(--accent); }
.muted { color: var(--ink-soft); }

/* word-reveal helper */
.word-span { display: inline-block; white-space: nowrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --gap: 10px;
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: .84rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease),
    color .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #a23f8e 100%);
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--accent-glow);
}
.btn-primary:hover, .btn-primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px var(--accent-glow), 0 0 0 1px rgba(242,193,78,.4) inset;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  transition: left .5s var(--ease);
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--accent-2);
  color: #2a1e08;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: #ffd76a;
  color: #2a1e08;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(242,193,78,.6);
}
.btn-lg { padding: 17px 34px; font-size: .92rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(20, 16, 38, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease);
  backdrop-filter: blur(2px);
}
.site-header.is-scrolled {
  background: rgba(16, 12, 31, 0.98);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.7);
  height: 66px;
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand .brand-mark {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--accent), #6d2c5f);
  box-shadow: 0 0 0 1px rgba(242,193,78,.4), 0 0 18px -4px var(--accent-glow);
}
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: 0.24em;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-size: .82rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width .24s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: linear-gradient(135deg, var(--accent), #a23f8e);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 22px -12px var(--accent-glow);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-2);
  color: #2a1e08;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: rgba(31, 25, 64, 0.7);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle {
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(52, 42, 99, 0.9);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 8px 22px -12px var(--accent-glow);
}
.nav-toggle:active { transform: scale(.96); }
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease), background .2s var(--ease);
}
.nav-toggle:hover span, .nav-toggle:focus-visible span { background: var(--accent-2); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================================================
   DRAWER (mobile)
   ============================================================ */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #17122e;
  border-left: 1px solid var(--line-strong);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 20px) 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover, .drawer a.is-active {
  color: var(--ink);
  padding-left: 10px;
}
.drawer a.is-active { color: var(--accent-2); }
.drawer .drawer-cta {
  margin-top: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #a23f8e);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 15px;
  box-shadow: 0 10px 26px -12px var(--accent-glow);
}
.drawer .drawer-cta:hover { color: #2a1e08 !important; background: var(--accent-2); }
.drawer-note {
  margin-top: auto;
  font-size: .78rem;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   HERO — poster / kayan program şeridi
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 60px 0 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(1.05) brightness(.72);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,38,.55) 0%, rgba(20,16,38,.30) 40%, rgba(20,16,38,.92) 100%),
    radial-gradient(700px 500px at 50% 30%, rgba(242,193,78,.14), transparent 70%);
}
/* god-ray sweep */
.hero-rays {
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 80%;
  z-index: -2;
  background: conic-gradient(from 210deg at 50% 0%, transparent 0deg, rgba(242,193,78,.10) 12deg, transparent 26deg, rgba(240,236,250,.06) 40deg, transparent 54deg);
  mix-blend-mode: screen;
  animation: rayPan 26s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes rayPan { from { transform: translateX(-4%) rotate(-2deg); opacity:.6;} to { transform: translateX(4%) rotate(2deg); opacity:1;} }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero h1 {
  font-size: clamp(2.4rem, 8.5vw, 4.5rem);
  line-height: 0.94;
  margin: 18px 0 20px;
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero h1 .glow {
  color: transparent;
  background: linear-gradient(120deg, #ffd873, var(--accent-2) 30%, var(--accent) 75%, #ff8fd0);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 26px var(--accent-glow));
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  margin-top: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--ink-soft);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; }

/* hero stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px);
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--accent-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat .lbl {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-dim);
  margin-top: 6px;
}

/* NOW-PLAYING / program şeridi (signature) */
.now-strip {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  background: linear-gradient(90deg, rgba(31,25,64,.96), rgba(52,42,99,.96));
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 -8px 30px -16px var(--accent-glow), 0 8px 30px -16px var(--accent-glow);
}
.now-strip-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.now-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--accent-2);
  flex: none;
}
.now-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(242,193,78,.7);
  animation: pulseDot 1.8s var(--ease) infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(242,193,78,.6); }
  70% { box-shadow: 0 0 0 12px rgba(242,193,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,193,78,0); }
}
.now-text {
  font-size: .96rem;
  color: var(--ink);
  flex: 1 1 240px;
  min-width: 0;
}
.now-text strong { color: var(--ink); }
.now-text .now-time {
  font-family: var(--font-mono);
  color: var(--accent-2);
  margin-right: 8px;
}
.now-next {
  font-size: .82rem;
  color: var(--ink-dim);
  flex: none;
}
.now-next b { color: var(--ink-soft); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(30px, 5vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 5vw, 3.1rem);
  margin: 14px 0 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.band {
  background:
    linear-gradient(180deg, rgba(31,25,64,.6), rgba(16,12,31,.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.perf-divider {
  height: 22px;
  background:
    radial-gradient(circle at 12px 50%, transparent 0 9px, var(--bg) 10px) repeat-x;
  background-size: 24px 22px;
  position: relative;
}

/* ============================================================
   PROGRAM — günlük saatli çizelge
   ============================================================ */
.day-tabs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 34px;
}
.day-tab {
  flex: 1 1 200px;
  min-width: 0;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-body);
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}
.day-tab:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.day-tab .dt-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  color: var(--accent-2);
}
.day-tab .dt-date {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin: 6px 0 2px;
}
.day-tab .dt-theme { font-size: .84rem; color: var(--ink-soft); }
.day-tab.is-active {
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 40px -22px var(--accent-glow);
}
.day-tab.is-active .dt-date { color: var(--accent-2); }

.day-panel { display: none; }
.day-panel.is-active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.program-list { display: flex; flex-direction: column; gap: 10px; }
.prog-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--r);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
  opacity: 0;
  transform: translateY(18px);
}
.day-panel.is-active .prog-row {
  animation: rowIn .55s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 75ms);
}
@keyframes rowIn { to { opacity: 1; transform: none; } }
.prog-row:hover {
  border-color: var(--line-strong);
  border-left-color: var(--accent);
  transform: translateX(4px);
}
.prog-time {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.prog-body { min-width: 0; }
.prog-body h4 {
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 3px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.prog-body p { margin: 0; font-size: .86rem; color: var(--ink-dim); }
.prog-tag {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .64rem;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  white-space: nowrap;
  flex: none;
}
.prog-tag.konser { color: #ff9fd6; border-color: rgba(255,159,214,.4); background: rgba(192,95,168,.12); }
.prog-tag.atolye { color: var(--accent-2); border-color: rgba(242,193,78,.4); background: rgba(242,193,78,.1); }
.prog-tag.piknik { color: #9ff0c4; border-color: rgba(120,220,170,.4); background: rgba(90,200,150,.1); }
/* live now row */
.prog-row.is-now {
  border-color: var(--accent);
  border-left-color: var(--accent-2);
  background: linear-gradient(100deg, rgba(192,95,168,.18), var(--surface));
  box-shadow: 0 0 0 1px var(--accent-glow), 0 0 34px -10px var(--accent-glow);
  animation: nowGlow 2.4s ease-in-out infinite alternate;
}
@keyframes nowGlow {
  from { box-shadow: 0 0 0 1px rgba(192,95,168,.35), 0 0 22px -12px var(--accent-glow); }
  to { box-shadow: 0 0 0 1px var(--accent), 0 0 42px -8px var(--accent-glow); }
}
.prog-row.is-now .prog-time { color: var(--accent-2); }
.now-flag {
  display: none;
  align-items: center; gap: 6px;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .1em; font-size: .58rem; color: var(--accent-2);
  margin-top: 5px;
}
.prog-row.is-now .now-flag { display: inline-flex; }

/* ============================================================
   SAHNE — konser / atölye / piknik cards
   ============================================================ */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.stage-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.stage-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px var(--accent-glow);
}
.stage-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.stage-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.stage-card:hover .stage-media img { transform: scale(1.06); }
.stage-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23,18,46,.9));
}
.stage-kicker {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .1em; font-size: .64rem;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(20,16,38,.7); color: var(--accent-2);
  border: 1px solid rgba(242,193,78,.4);
}
.stage-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.stage-body h3 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; margin-bottom: 8px; }
.stage-body p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.stage-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--ink-dim);
}
.stage-meta span { display: inline-flex; align-items: center; gap: 6px; }
.stage-meta svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   BILET — kategori fiyatları
   ============================================================ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.ticket {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
/* bilet perforation edge */
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  left: 0; right: 0; height: 14px;
  background: radial-gradient(circle at 10px 0, transparent 0 6px, var(--surface) 7px) repeat-x;
  background-size: 20px 14px;
}
.ticket::before { top: -7px; }
.ticket::after { bottom: -7px; transform: rotate(180deg); }
.ticket:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -32px var(--accent-glow);
}
.ticket.featured {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow);
}
.ticket .tk-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .1em; font-size: .58rem;
  background: var(--accent-2); color: #2a1e08;
  padding: 5px 11px; border-radius: 999px;
}
.tk-name {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.05rem; color: var(--accent-2);
}
.tk-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0 4px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tk-price .cur { font-size: 1.2rem; color: var(--ink-soft); }
.tk-note { font-size: .82rem; color: var(--ink-dim); margin-bottom: 18px; }
.tk-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; }
.tk-list li { display: flex; gap: 10px; font-size: .88rem; color: var(--ink-soft); }
.tk-list li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--accent); }
.tk-list li.no { color: var(--ink-dim); }
.tk-list li.no svg { color: var(--ink-dim); }
.ticket .btn { margin-top: auto; width: 100%; justify-content: center; }
.price-disclaimer { font-size: .8rem; color: var(--ink-dim); margin-top: 22px; text-align: center; }

/* ============================================================
   ALAN — tarla alanı bilgi
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -50px var(--accent-glow);
}
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media .media-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(20,16,38,.78); border: 1px solid var(--line-strong);
  padding: 8px 14px; border-radius: 999px;
  font-size: .78rem; color: var(--accent-2);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
}
.info-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.info-list .ic {
  grid-row: span 2;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(192,95,168,.12);
  border: 1px solid rgba(192,95,168,.3);
  color: var(--accent);
}
.info-list .ic svg { width: 20px; height: 20px; }
.info-list h4 { font-size: .98rem; text-transform: none; letter-spacing: 0; margin: 0 0 2px; }
.info-list p { margin: 0; font-size: .86rem; color: var(--ink-soft); }

/* ============================================================
   PROCESS steps
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: var(--accent-2);
  background: var(--surface);
  border: 1px solid var(--accent);
  box-shadow: 0 0 22px -8px var(--accent-glow);
}
.step h4 { text-transform: none; letter-spacing: 0; font-size: 1.1rem; margin-bottom: 4px; }
.step .step-when {
  font-family: var(--font-mono); font-size: .78rem; color: var(--accent-2);
  text-transform: uppercase; letter-spacing: .08em;
}
.step p { color: var(--ink-soft); font-size: .92rem; margin: 6px 0 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex; flex-direction: column;
}
.review .stars { color: var(--accent-2); letter-spacing: 2px; font-size: .9rem; margin-bottom: 12px; }
.review blockquote { margin: 0 0 18px; font-size: .96rem; color: var(--ink-soft); line-height: 1.7; }
.review .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.review .who .av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  background: radial-gradient(circle at 40% 35%, var(--accent), #6d2c5f); color: #fff;
}
.review .who b { font-size: .92rem; }
.review .who span { display: block; font-size: .78rem; color: var(--ink-dim); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(18px, 3vw, 26px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); text-transform: none;
  font-weight: 700; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ic {
  width: 26px; height: 26px; flex: none; position: relative;
  border-radius: 50%; border: 1px solid var(--accent); color: var(--accent-2);
  transition: transform .36s var(--ease);
}
.faq-item summary .q-ic::before, .faq-item summary .q-ic::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-item summary .q-ic::before { width: 11px; height: 2px; }
.faq-item summary .q-ic::after { width: 2px; height: 11px; transition: transform .36s var(--ease); }
.faq-item[open] summary .q-ic { transform: rotate(180deg); }
.faq-item[open] summary .q-ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  color: var(--ink-soft);
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] .answer { height: auto; padding-block-end: 22px; }
.faq-item .answer p { margin: 0 0 .8em; font-size: .92rem; }
.faq-item .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item .answer { transition: none; }
}

/* ============================================================
   NOTES / news
   ============================================================ */
.notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; }
.note {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 22px;
  border-left: 3px solid var(--accent);
}
.note time { font-family: var(--font-mono); font-size: .76rem; color: var(--accent-2); }
.note h4 { text-transform: none; letter-spacing: 0; font-size: 1rem; margin: 8px 0 4px; }
.note p { margin: 0; font-size: .86rem; color: var(--ink-soft); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(50px, 8vw, 96px) 0;
  background: linear-gradient(150deg, #3a1f52, #1a1233);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.cta-band h2 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
.cta-band p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { font-size: .82rem; font-weight: 700; color: var(--ink-soft); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .95rem;
  border-bottom: 2px solid var(--line-strong);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  border-bottom-color: var(--accent-2);
  background: #120e24;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent-2) 50%), linear-gradient(135deg, var(--accent-2) 50%, transparent 50%); background-position: calc(100% - 20px) 20px, calc(100% - 14px) 20px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; }
.field.kvkk label { font-weight: 400; font-size: .86rem; line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-card .btn { margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--ink-dim); margin-top: 14px; }

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 24px 50px -34px var(--accent-glow);
}
.contact-card .cc-ic {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(192,95,168,.14);
  border: 1px solid rgba(192,95,168,.32);
  color: var(--accent);
}
.contact-card .cc-ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1rem; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; word-break: break-word; }
.contact-card a:hover { color: var(--accent-2); }
.contact-card .cc-sub { font-size: .78rem; color: var(--ink-dim); margin-top: 6px; }

/* hours */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 10px; }
.hours-day {
  display: flex; justify-content: space-between; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 12px 16px;
  font-size: .88rem;
}
.hours-day.today { border-color: var(--accent); background: linear-gradient(100deg, rgba(192,95,168,.14), var(--surface)); }
.hours-day .d { color: var(--ink-soft); font-weight: 700; }
.hours-day .h { font-family: var(--font-mono); color: var(--accent-2); font-variant-numeric: tabular-nums; }

/* ============================================================
   TABLE
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .9rem; }
table th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; color: var(--accent-2); background: var(--surface-2); }
table tr:last-child td { border-bottom: none; }
table td { color: var(--ink-soft); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
.member {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.member:hover { transform: translateY(-5px); border-color: var(--accent); }
.member img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.member .m-body { padding: 20px 22px 24px; }
.member h3 { font-size: 1.1rem; text-transform: none; letter-spacing: 0; margin-bottom: 2px; }
.member .role { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; color: var(--accent-2); margin-bottom: 10px; }
.member p { font-size: .86rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery a { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); display: block; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); aspect-ratio: 1; }
.gallery a:hover img { transform: scale(1.07); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: 1; height: 100%; }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 42px 0 14px; }
.prose h3 { font-size: 1.1rem; text-transform: none; letter-spacing: 0; margin: 26px 0 8px; color: var(--accent-2); }
.prose p, .prose li { color: var(--ink-soft); font-size: .95rem; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.page-hero { padding: clamp(50px,8vw,90px) 0 clamp(30px,5vw,50px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); max-width: 620px; font-size: 1.05rem; }
.breadcrumb { font-size: .8rem; color: var(--ink-dim); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--accent-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(46px, 7vw, 76px) 0 30px;
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent-2); margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: .9rem; margin-bottom: 9px; transition: color .2s var(--ease); word-break: break-word; }
.footer-col a:hover { color: var(--accent-2); }
.footer-brand .brand { font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-dim); font-size: .88rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; margin: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ink-soft);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent-2); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--ink-dim);
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom a:hover { color: var(--accent-2); }
.vkn { font-family: var(--font-mono); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: #181231;
  border: 1px solid var(--accent);
  border-radius: var(--r);
  padding: 20px 22px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1rem; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.cookie-banner p { font-size: .84rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
  font-size: .76rem; font-weight: 700; cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-2); color: #2a1e08; }
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface-2); border-color: var(--accent); color: var(--accent-2); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { border-color: var(--accent-2); color: var(--accent-2); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.6);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-inner {
  background: #181231; border: 1px solid var(--accent);
  border-radius: var(--r-lg); padding: clamp(24px,4vw,34px);
  max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.3rem; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.cookie-modal > .cookie-modal-inner > p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.consent-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.consent-row h4 { text-transform: none; letter-spacing: 0; font-size: .96rem; margin-bottom: 3px; }
.consent-row p { font-size: .8rem; color: var(--ink-dim); margin: 0; }
.switch { position: relative; width: 46px; height: 26px; flex: none; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--surface-3); transition: background .2s var(--ease);
}
.switch .track::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--ink);
  transition: transform .2s var(--ease);
}
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { opacity: .55; }
.cookie-modal .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg img, .hero-rays, body::after, .now-dot,
  .prog-row, .prog-row.is-now, .day-panel.is-active .prog-row { animation: none !important; }
  .prog-row { opacity: 1 !important; transform: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .prog-row { opacity: 1; transform: none; }

/* pollen canvas */
#pollen { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .prog-row { grid-template-columns: 70px 1fr; gap: 12px; padding: 14px 16px; }
  .prog-tag { grid-column: 2; justify-self: start; margin-top: 4px; }
  .hero-stats { gap: 20px 30px; }
  .day-tab { flex: 1 1 100%; }
  .contact-grid, .ticket-grid, .stage-grid, .reviews { grid-template-columns: 1fr; }
  .now-strip-inner { gap: 10px; }
  .now-next { flex: 1 1 100%; }
  .section { padding: 52px 0; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(2rem, 11vw, 2.4rem); }
  .btn { padding: 12px 20px; font-size: .78rem; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   AWARD LAYER — Mor Geceler · editorial dusk refinement
   Display: Fraunces (soft high-contrast serif, romantic italics)
   Text/UI: Instrument Sans (humanist grotesque)
   Keeps the existing purple-night + gold direction; adds
   editorial hierarchy, air, asymmetry and quieter motion.
   ============================================================ */
:root {
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-head: "Instrument Sans", "Segoe UI", Tahoma, sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", Tahoma, sans-serif;
  --line-hair: rgba(240, 236, 250, 0.10);
}

body {
  font-size: 16.5px;
  line-height: 1.68;
  letter-spacing: .004em;
}

/* ---- Display headings → Fraunces, editorial rhythm ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.018em;
  line-height: 1.05;
}
h2, h3 { text-transform: none; }
.hero h1 { font-weight: 600; letter-spacing: -0.032em; }
.page-hero h1 { text-transform: none; letter-spacing: -0.022em; }
h4, h5 { font-family: var(--font-head); letter-spacing: -0.005em; }

/* italic accents inside titles — the signature editorial gesture */
h1 em, h2 em, h3 em, .page-hero h1 em, .cta-band h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
  font-variation-settings: "opsz" 40;
  letter-spacing: -0.01em;
}
.hero h1 em { color: inherit; }

/* ---- Eyebrow: a touch more refined ---- */
.eyebrow { letter-spacing: 0.22em; font-size: .72rem; }
.eyebrow::before { width: 30px; }

/* ---- Section heads: bigger, airier, with an editorial index rule ---- */
.section { padding: clamp(64px, 9.5vw, 128px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5.2vw, 62px); }
.section-head h2 {
  font-size: clamp(2.05rem, 5.6vw, 3.7rem);
  line-height: 1.02;
  margin: 16px 0 14px;
}
.section-head p { font-size: 1.08rem; max-width: 62ch; }
.section-head.center p { margin-inline: auto; }

/* a whisper-thin gold rule under the eyebrow of left-aligned heads */
.section-head:not(.center) { position: relative; }

/* ---- Buttons: slightly tighter, editorial ---- */
.btn { letter-spacing: 0.08em; font-weight: 600; }

/* ---- Hairline top-rule rhythm between stacked sections ---- */
.section + .section::before,
.section + .perf-divider + .section::before {
  content: "";
  position: absolute;
  top: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hair) 18%, var(--line-hair) 82%, transparent);
  pointer-events: none;
}

/* ============================================================
   CARD FAMILY — unified premium hover-lift + accent shadow
   ============================================================ */
.stage-card, .ticket, .review, .note, .contact-card, .member {
  position: relative;
}

/* notes + hours-day get real hover-lift to match the family */
.note {
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.note:hover {
  transform: translateY(-5px);
  border-left-color: var(--accent-2);
  box-shadow: 0 26px 52px -34px var(--accent-glow);
}
.hours-day { transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease); }
.hours-day:hover { transform: translateY(-2px); border-color: var(--line-strong); }

/* reviews: editorial oversized opening quote */
.review { padding-top: 30px; }
.review blockquote { font-family: var(--font-display); font-size: 1.06rem; line-height: 1.62; font-weight: 400; }
.review .who b { font-family: var(--font-head); }
.review::after {
  content: "\201C";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--font-display);
  font-size: 3.4rem; line-height: 1;
  color: var(--accent);
  opacity: .28;
  pointer-events: none;
}

/* stage cards: editorial title + numbered kicker feel */
.stage-body h3 { font-size: 1.34rem; }
.stage-card:hover .stage-kicker { border-color: var(--accent-2); color: var(--accent-2); }

/* tickets: refined name + price treatment */
.tk-name { letter-spacing: 0.14em; }
.tk-price { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }

/* ============================================================
   ASYMMETRY — break the "three identical cards" skeleton
   ============================================================ */
@media (min-width: 980px) {
  /* stage trio gets a gentle poster stagger */
  .stage-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .stage-grid .stage-card:nth-child(2) { transform: translateY(30px); }
  .stage-grid .stage-card:nth-child(2):hover { transform: translateY(24px); }

  /* featured ticket lifts out of the row */
  .ticket.featured { transform: scale(1.045); z-index: 2; }
  .ticket.featured:hover { transform: scale(1.045) translateY(-6px); }
}

/* editorial index numerals on the process steps */
.step-num { font-family: var(--font-display); font-weight: 600; }

/* ============================================================
   MOTION — quieter, more premium reveal (adds soft de-blur)
   ============================================================ */
.reveal {
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
  filter: blur(7px);
}
.reveal.is-in { filter: blur(0); }

/* keep every guard intact: no blur when motion off or JS absent */
html.no-js .reveal { filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none !important; }
}

/* ============================================================
   HERO — harmonise typography with the new display face only
   (photo, rays, zoom, parallax untouched)
   ============================================================ */
.hero h1 { font-size: clamp(2.6rem, 9vw, 5.1rem); }
.hero-sub { font-family: var(--font-body); }

/* ============================================================
   PROSE (legal) — editorial serif headings for cohesion
   ============================================================ */
.prose h2 { letter-spacing: -0.015em; }
.page-hero p { font-size: 1.1rem; }

/* ============================================================
   MOBILE — no clipping / overflow at small widths
   ============================================================ */
@media (max-width: 600px) {
  .section-head h2 { font-size: clamp(1.85rem, 8.4vw, 2.5rem); }
  .review::after { right: 16px; font-size: 2.8rem; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(2.1rem, 12vw, 2.6rem); }
  .section-head h2 { font-size: clamp(1.7rem, 8.8vw, 2.15rem); }
}

/* drawer CTA colour lock — high specificity, never fades into surface */
.drawer a.drawer-cta,
nav.drawer a.drawer-cta { color: #fff !important; }
.drawer a.drawer-cta:hover,
nav.drawer a.drawer-cta:hover { color: #2a1e08 !important; }
