/* =========================================================
   Afisha Turkey — Bosphorus Nights design system
   ========================================================= */

:root {
  /* Palette */
  --bg-0: #07081b;
  --bg-1: #0b0c2a;
  --bg-2: #12143a;
  --surface: #171a48;
  --surface-2: #1f2360;
  --border: #2a2d6a;
  --border-soft: rgba(255, 255, 255, 0.08);

  --magenta: #ff006e;
  --magenta-2: #ff3f8e;
  --violet: #8338ec;
  --violet-2: #a56bff;
  --amber: #ffbe0b;
  --amber-2: #ffd84d;
  --cyan: #3a86ff;

  --text: #f7f2ea;
  --text-muted: #a8adcd;
  --text-dim: #6d72a3;

  /* Gradients */
  --grad-hero: radial-gradient(ellipse at 15% 20%, rgba(131, 56, 236, 0.35), transparent 55%),
               radial-gradient(ellipse at 85% 30%, rgba(255, 0, 110, 0.30), transparent 55%),
               radial-gradient(ellipse at 50% 90%, rgba(255, 190, 11, 0.20), transparent 60%),
               linear-gradient(180deg, #0b0c2a 0%, #07081b 100%);
  --grad-cta: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
  --grad-accent: linear-gradient(135deg, #ffbe0b 0%, #ff006e 55%, #8338ec 100%);
  --grad-card: linear-gradient(160deg, rgba(131, 56, 236, 0.18) 0%, rgba(255, 0, 110, 0.10) 50%, rgba(255, 190, 11, 0.10) 100%);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(255, 0, 110, 0.35);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-round: 999px;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Type scale (fluid) */
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: clamp(1.375rem, 1.15rem + 1.1vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.35rem + 2vw, 2.5rem);
  --fs-3xl: clamp(2.25rem, 1.6rem + 3.3vw, 3.75rem);
  --fs-hero: clamp(2.75rem, 1.8rem + 4.8vw, 5rem);

  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-body: 1.65;

  --container: 1200px;
  --container-wide: 1400px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--magenta-2);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: 'Unbounded', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
  color: var(--text);
}

h1 { font-size: var(--fs-hero); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p { margin: 0 0 var(--s-4); color: var(--text-muted); }

::selection { background: var(--magenta); color: #fff; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--magenta); color: #fff;
  padding: 12px 20px; z-index: 999;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.container-wide { max-width: var(--container-wide); }

section { padding-block: var(--s-9); position: relative; }

@media (max-width: 720px) {
  section { padding-block: var(--s-7); }
}

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(11, 12, 42, 0.72);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex; align-items: center; gap: var(--s-5);
  padding-block: var(--s-4);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background-image: url('/images/afisha-turkey-logo.svg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(255,0,110,.35);
  overflow: hidden;
  text-indent: -9999px;
  flex-shrink: 0;
}
.brand em {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex; gap: var(--s-5);
  list-style: none; margin: 0; padding: 0;
  margin-inline-start: auto;
}
.nav-links a {
  color: var(--text-muted); font-weight: 500;
  font-size: var(--fs-sm);
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--text);
}

.lang-switch {
  display: inline-flex; gap: 4px;
  padding: 4px; border-radius: var(--r-round);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
}
.lang-switch a {
  padding: 6px 12px; border-radius: var(--r-round);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
}
.lang-switch a.is-active {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 4px 14px rgba(255,0,110,.35);
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  color: var(--text); border-radius: var(--r-md);
  padding: 8px 12px; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11, 12, 42, 0.98);
    padding: var(--s-5); gap: var(--s-3);
    border-bottom: 1px solid var(--border);
  }
  .site-header.is-open .nav-links a { padding: 10px 0; font-size: var(--fs-base); }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-round);
  font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 0, 110, 0.55), inset 0 1px 0 rgba(255,255,255,.25);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
  color: var(--text);
}

.btn-lg { padding: 18px 34px; font-size: var(--fs-base); }
.btn-sm { padding: 10px 18px; font-size: var(--fs-xs); }

.btn .arrow {
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  background: var(--grad-hero);
  overflow: hidden;
  isolation: isolate;
}
.hero .city-hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: -2;
  filter: saturate(1.1);
}
.hero::before {
  z-index: -1;
}
.hero .container { position: relative; z-index: 1; }

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.06) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.04) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.05) 1px, transparent 2px);
  background-size: 240px 240px, 320px 320px, 200px 200px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--r-round);
  background: rgba(255, 0, 110, 0.12);
  border: 1px solid rgba(255, 0, 110, 0.3);
  color: var(--magenta-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 span {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: var(--s-6);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-bottom: var(--s-6);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-soft);
  max-width: 520px;
}
.hero-stat .num {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-2xl);
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero visual card (poster) */
.hero-poster {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(131, 56, 236, 0.35);
  border: 1px solid var(--border);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}
.hero-poster:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.hero-poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.featured-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.hero-poster .poster-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 0, 110, 0.65), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(131, 56, 236, 0.7), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 190, 11, 0.55), transparent 60%),
    linear-gradient(180deg, #1a0b3d 0%, #0b0c2a 100%);
}

.hero-poster .poster-content {
  position: absolute; inset: 0;
  padding: var(--s-6);
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}

.hero-poster .poster-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.hero-poster .poster-tag {
  padding: 6px 12px; border-radius: var(--r-round);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
}
.hero-poster .poster-date {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  text-align: right; line-height: 1;
}
.hero-poster .poster-date small { display: block; font-size: 0.7rem; opacity: .85; margin-top: 4px; letter-spacing: 0.1em; }

.hero-poster .poster-mid {
  text-align: center;
  padding-block: var(--s-5);
}
.hero-poster .poster-artist {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero-poster .poster-show {
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-poster .poster-bottom {
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-poster .poster-venue {
  font-size: var(--fs-sm); font-weight: 600;
  max-width: 60%;
}
.hero-poster .poster-venue small { display: block; opacity: .75; font-weight: 400; margin-top: 2px; }
.hero-poster .poster-city {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem; font-weight: 700; text-align: right;
}

/* =========================================================
   Section headings
   ========================================================= */

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--s-7);
}
.section-head p { font-size: var(--fs-lg); }

.section-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-3);
}

/* =========================================================
   Featured concert card
   ========================================================= */

.featured {
  background: var(--bg-0);
  position: relative;
}
.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,0,110,.12), transparent 70%);
  pointer-events: none;
}

.featured-card {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--s-6);
  align-items: stretch;
  background: linear-gradient(160deg, rgba(131,56,236,.12) 0%, rgba(255,0,110,.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.featured-card::after {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(131,56,236,.35), transparent 65%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; padding: var(--s-5); }
}

.featured-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 320px;
}

.featured-content h3 {
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
  margin-bottom: var(--s-3);
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-4);
  margin: var(--s-5) 0;
  padding: var(--s-5);
  background: rgba(0,0,0,.25);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
}
.event-meta-item .label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.event-meta-item .value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--text);
}
.event-meta-item .value a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 0, 110, 0.5);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.event-meta-item .value a:hover {
  color: var(--magenta-2);
  border-bottom-color: var(--magenta-2);
}

.featured-actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-top: var(--s-5);
}

/* =========================================================
   Cards grid
   ========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--magenta);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.2);
}
.card h4 { margin-bottom: var(--s-3); font-size: var(--fs-xl); }
.card p { margin-bottom: 0; color: var(--text-muted); font-size: var(--fs-sm); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: var(--s-4);
  box-shadow: 0 8px 24px rgba(255,0,110,.3);
}

/* City cards (visual) */
.city-card {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.city-card:hover { transform: translateY(-6px) scale(1.02); color: var(--text); }

.city-card .city-visual {
  position: absolute; inset: 0;
  background: var(--surface);
  z-index: -1;
}
.city-card .city-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s var(--ease);
}
.city-card:hover .city-photo { transform: scale(1.05); }
.city-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
  z-index: -1;
}
.city-card .city-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s-5);
}
.city-card h4 {
  font-size: var(--fs-2xl);
  margin: 0 0 6px;
}
.city-card .city-meta {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}

/* City visual variants — CSS art (no image needed) */
.city-visual { background: #0b0c2a; }
.v-antalya   { background: radial-gradient(ellipse at 30% 40%, rgba(255, 0, 110, .5), transparent 60%),
                            radial-gradient(ellipse at 80% 70%, rgba(255, 190, 11, .45), transparent 60%),
                            linear-gradient(180deg, #2b0b56 0%, #0b0c2a 100%); }
.v-alanya    { background: radial-gradient(ellipse at 60% 30%, rgba(255, 190, 11, .55), transparent 60%),
                            radial-gradient(ellipse at 20% 80%, rgba(58, 134, 255, .45), transparent 60%),
                            linear-gradient(180deg, #14203a 0%, #07081b 100%); }
.v-mersin    { background: radial-gradient(ellipse at 50% 30%, rgba(58, 134, 255, .55), transparent 60%),
                            radial-gradient(ellipse at 70% 90%, rgba(131, 56, 236, .40), transparent 60%),
                            linear-gradient(180deg, #071b3a 0%, #0b0c2a 100%); }
.v-silifke   { background: radial-gradient(ellipse at 40% 40%, rgba(131, 56, 236, .55), transparent 60%),
                            radial-gradient(ellipse at 80% 80%, rgba(255, 0, 110, .35), transparent 60%),
                            linear-gradient(180deg, #12082e 0%, #07081b 100%); }
.v-istanbul  { background: radial-gradient(ellipse at 25% 30%, rgba(255, 0, 110, .55), transparent 60%),
                            radial-gradient(ellipse at 80% 50%, rgba(255, 190, 11, .50), transparent 60%),
                            radial-gradient(ellipse at 50% 90%, rgba(131, 56, 236, .40), transparent 60%),
                            linear-gradient(180deg, #2a0a3a 0%, #07081b 100%); }
.v-izmir     { background: radial-gradient(ellipse at 30% 60%, rgba(58, 134, 255, .55), transparent 60%),
                            radial-gradient(ellipse at 70% 20%, rgba(255, 190, 11, .55), transparent 60%),
                            linear-gradient(180deg, #0a1a3a 0%, #07081b 100%); }

/* Silhouette (Turkish city skyline) */
.city-card .skyline {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 45%;
  z-index: -1; opacity: 0.85;
}

/* =========================================================
   Feature list
   ========================================================= */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
}
.feature {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border-soft);
}
.feature .num {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem; font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--s-4);
}
.feature h4 { font-size: var(--fs-xl); margin-bottom: var(--s-2); }
.feature p { margin: 0; }

/* =========================================================
   Article / content prose
   ========================================================= */

.prose {
  max-width: 780px; margin-inline: auto;
}
.prose h2, .prose h3, .prose h4 {
  margin-top: var(--s-7);
}
.prose h2 { font-size: var(--fs-3xl); }
.prose h3 { font-size: var(--fs-2xl); }
.prose h4 { font-size: var(--fs-xl); }
.prose p { font-size: var(--fs-base); }
.prose ul, .prose ol {
  padding-left: 1.4em;
  color: var(--text-muted);
}
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--magenta); }

.callout {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,0,110,.12) 0%, rgba(131,56,236,.10) 100%);
  border: 1px solid rgba(255,0,110,.35);
  margin-block: var(--s-6);
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--amber); }

/* =========================================================
   FAQ (accordion using details)
   ========================================================= */

.faq {
  max-width: 860px; margin-inline: auto;
  display: grid; gap: var(--s-3);
}
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: border-color .25s var(--ease);
}
.faq details[open] {
  border-color: var(--magenta);
  background: linear-gradient(160deg, rgba(131,56,236,.12), rgba(255,0,110,.06));
}
.faq summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: var(--fs-lg);
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  padding-block: 6px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: 'Unbounded', sans-serif;
  font-weight: 400; font-size: 1.5rem;
  color: var(--magenta);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: var(--s-3);
  color: var(--text-muted);
  font-size: var(--fs-base);
}

/* =========================================================
   CTA band
   ========================================================= */

.cta-band {
  padding: var(--s-8) var(--s-6);
  border-radius: var(--r-xl);
  background: var(--grad-cta);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 0, 110, 0.4);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,255,255,.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255,190,11,.25), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 60ch; margin-inline: auto; }
.cta-band .btn-ghost { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band .btn-primary { background: #fff; color: var(--magenta); }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding-block: var(--s-8) var(--s-6);
  background: var(--bg-0);
  border-top: 1px solid var(--border-soft);
  color: var(--text-dim);
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h5 {
  font-family: 'Unbounded', sans-serif;
  color: var(--text); font-size: var(--fs-sm);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 var(--s-3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--amber); }

.footer-legal {
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-soft);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  align-items: center;
  color: var(--text-dim);
}
.footer-brand-line {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted);
}
.disclaimer {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  max-width: 60ch;
  margin-top: var(--s-4);
}

/* =========================================================
   Breadcrumbs
   ========================================================= */

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: var(--s-4) 0;
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--magenta); }
.breadcrumbs .sep { color: var(--text-dim); }

/* =========================================================
   Utilities
   ========================================================= */

.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: var(--s-7); }
.mt-md { margin-top: var(--s-5); }
.mt-sm { margin-top: var(--s-3); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================================================
   Concert info cards (venue + seller pair)
   ========================================================= */

.concert-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-block: var(--s-6);
}
@media (max-width: 780px) {
  .concert-info { grid-template-columns: 1fr; }
}

.info-card {
  display: flex;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(131, 56, 236, 0.20) 0%, rgba(255, 0, 110, 0.12) 100%);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.info-card::after {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(131,56,236,.35), transparent 65%);
  pointer-events: none;
}
.info-card:hover {
  border-color: var(--magenta);
  transform: translateY(-4px);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(255,0,110,.15);
}
.info-card .icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid; place-items: center;
  position: relative; z-index: 1;
}
.info-card .icon img { width: 100%; height: 100%; object-fit: cover; }
.info-card .icon .emoji { font-size: 32px; }
.info-card .info-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.info-card .info-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 6px;
}
.info-card .info-name {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.info-card .info-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
}
.info-card .info-arrow {
  color: var(--magenta-2);
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  align-self: center;
  transition: transform .25s var(--ease);
  position: relative; z-index: 1;
}
.info-card:hover .info-arrow { transform: translateX(4px); }

/* =========================================================
   Seller contacts block
   ========================================================= */

.seller-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
  margin-block: var(--s-6);
}
.contact-tile {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex; flex-direction: column;
  gap: 6px;
  transition: border-color .25s var(--ease);
}
.contact-tile:hover { border-color: var(--violet-2); }
.contact-tile .ct-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-cta);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  margin-bottom: var(--s-2);
}
.contact-tile .ct-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.contact-tile .ct-value {
  font-family: 'Manrope', sans-serif;
  font-size: var(--fs-base);
  color: var(--text);
  font-weight: 600;
  word-break: break-word;
}
.contact-tile .ct-value a {
  color: var(--text);
  border-bottom: 1px dashed rgba(255,0,110,.5);
  text-decoration: none;
}
.contact-tile .ct-value a:hover { color: var(--magenta-2); border-color: var(--magenta-2); }
.contact-tile .ct-hint {
  font-size: var(--fs-xs);
  color: var(--text-dim);
}

.seller-socials {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: var(--s-4);
}
.seller-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-round);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.seller-social:hover {
  border-color: var(--magenta);
  background: rgba(255,0,110,.10);
  color: var(--text);
}
.seller-social .icon {
  width: 18px; height: 18px;
  display: inline-block;
}

.seller-apps {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: var(--s-4);
}
.seller-app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1px solid #333;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.seller-app-badge:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  color: #fff;
}
.seller-app-badge .badge-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.7);
  font-weight: 400;
  display: block;
  line-height: 1.1;
}
.seller-app-badge .badge-store {
  font-size: var(--fs-sm);
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

/* =========================================================
   Venue map (Google Maps embed)
   ========================================================= */

.venue-map {
  margin-block: var(--s-6);
}
.venue-map iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: block;
  background: var(--bg-2);
  filter: hue-rotate(200deg) saturate(0.85);
  transition: filter .4s var(--ease);
}
.venue-map iframe:hover { filter: none; }
.venue-map-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-4);
  justify-content: center;
}
.venue-map-caption {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  text-align: center;
  margin-top: var(--s-3);
  letter-spacing: 0.06em;
}

/* =========================================================
   Month timeline (city / hub pages)
   ========================================================= */

.month-group {
  padding-block: var(--s-5);
  border-top: 1px solid var(--border-soft);
}
.month-group:first-of-type { border-top: 0; padding-top: 0; }

.month-header {
  display: flex; align-items: baseline; gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.month-header h3 {
  font-size: var(--fs-xl);
  margin: 0;
  color: var(--text);
}
.month-header .month-year {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-4) var(--s-5);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.event-row:hover {
  border-color: var(--magenta);
  transform: translateX(4px);
  color: var(--text);
}
.event-row .date {
  text-align: center;
  padding: 8px 6px;
  border-radius: var(--r-sm);
  background: linear-gradient(160deg, rgba(255,0,110,.15), rgba(131,56,236,.10));
  border: 1px solid rgba(255,0,110,.25);
}
.event-row .date .d {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.event-row .date .m {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.event-row .info h4 {
  margin: 0 0 4px;
  font-size: var(--fs-base);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.event-row .info .meta {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.event-row .cta {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta-2);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .event-row { grid-template-columns: 64px 1fr; }
  .event-row .cta { grid-column: 1 / -1; padding-left: 4px; }
}

.empty-state {
  padding: var(--s-6);
  border-radius: var(--r-md);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.empty-state strong { color: var(--amber); }

/* Venue / seller cards — compact variant */
.venue-card, .seller-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
  color: var(--text);
}
.venue-card:hover, .seller-card:hover {
  border-color: var(--violet-2);
  transform: translateY(-4px);
}
.venue-head, .seller-head {
  display: flex; justify-content: space-between; align-items: start;
  gap: 12px;
}
.venue-name, .seller-name {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}
.venue-tag, .seller-tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-round);
  background: rgba(255,190,11,.12);
  color: var(--amber);
  border: 1px solid rgba(255,190,11,.25);
  white-space: nowrap;
  font-weight: 700;
}
.venue-meta, .seller-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.venue-meta span, .seller-meta span {
  display: inline-flex; align-items: center; gap: 4px;
}
.venue-note, .seller-note {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin: 0;
}
.seller-card a {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta-2);
  align-self: start;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
