/* Power Festival — one-pager styles
   Brand: purple #6707BA · yellow #FECC18 · ink #1A0530
   Responsive breakpoints: mobile <768, tablet 768–1024, desktop >1024 */

:root {
  --c-purple:       #6707BA;
  --c-purple-deep:  #4B0789;
  --c-purple-light: #8B3DD4;
  --c-yellow:       #FECC18;
  --c-yellow-deep:  #F0B800;
  --c-bg:           #0B0518;
  --c-bg-alt:       #15082B;
  --c-card:         #1D0E3A;
  --c-border:       rgba(254, 204, 24, 0.18);
  --c-text:         #FBFAF5;
  --c-text-mute:    rgba(251, 250, 245, 0.65);
  --c-text-dim:     rgba(251, 250, 245, 0.45);

  --f-sans:    'Inter Tight', system-ui, -apple-system, sans-serif;
  --f-display: 'Poppins', 'Inter Tight', system-ui, sans-serif;
  --f-serif:   'Poppins', 'Inter Tight', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --nav-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

html, body {
  margin: 0; padding: 0;
}

body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

section { scroll-margin-top: var(--nav-h); }

/* ─── Layout helpers ───────────────────────── */

.pf-container {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 40px;
}

.pf-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--c-yellow);
  text-transform: uppercase;
}

.pf-h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -2px;
  line-height: 0.95;
  margin: 12px 0 0;
}

.pf-h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--c-yellow);
}

.pf-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text-mute);
  max-width: 620px;
  margin-top: 12px;
}

/* ─── Buttons ───────────────────────── */

.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.pf-btn:hover { transform: translateY(-1px); }
.pf-btn:active { transform: translateY(0); }

.pf-btn--primary {
  background: var(--c-yellow);
  color: var(--c-purple);
  box-shadow: 0 4px 20px rgba(254, 204, 24, 0.25);
}
.pf-btn--primary:hover { box-shadow: 0 8px 28px rgba(254, 204, 24, 0.35); }

.pf-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-text);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}
.pf-btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.pf-btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

/* ─── Navigation ───────────────────────── */

.pf-nav {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(11, 5, 24, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  height: var(--nav-h);
}
.pf-nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.pf-nav__logo img { height: 38px; width: auto; }
.pf-nav__links {
  display: flex; gap: 28px;
  font-family: var(--f-display);
  font-size: 14px; font-weight: 500;
}
.pf-nav__links a { opacity: 0.85; transition: opacity 0.12s, color 0.12s; }
.pf-nav__links a:hover { opacity: 1; color: var(--c-yellow); }
.pf-nav__right {
  display: flex; align-items: center; gap: 14px;
}
.pf-nav__lang {
  font-family: var(--f-mono); font-size: 11px; color: var(--c-text-dim);
}

/* Language switcher — emoji flags rendered at OS-native size.
   Keeps a Mac/iOS Apple Color Emoji feel; falls back to Twemoji/Segoe on
   non-Apple platforms. */
.pf-langs {
  display: inline-flex; align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.pf-lang {
  background: transparent; border: 0; padding: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  opacity: 0.5; filter: saturate(0.5);
  transition: opacity 0.15s, transform 0.12s, filter 0.15s, box-shadow 0.15s;
}
.pf-lang:hover { opacity: 0.85; filter: saturate(1); transform: translateY(-1px); }
.pf-lang--active {
  opacity: 1; filter: saturate(1);
  box-shadow: 0 0 0 2px var(--c-yellow);
  background: rgba(254, 204, 24, 0.12);
}
.pf-nav__cta {
  background: var(--c-yellow); color: var(--c-purple);
  border: 0; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13px; cursor: pointer;
}

.pf-burger {
  display: none;
  background: transparent; border: 0; padding: 8px; cursor: pointer; color: var(--c-text);
}
.pf-burger svg { display: block; }

.pf-drawer {
  position: fixed; inset: 0;
  background: rgba(11, 5, 24, 0.96);
  backdrop-filter: blur(20px);
  z-index: 110;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  padding: 24px;
}
.pf-drawer--open { transform: translateY(0); }
.pf-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; margin-bottom: 32px;
}
.pf-drawer__close { background: transparent; border: 0; padding: 8px; cursor: pointer; color: var(--c-text); }
.pf-drawer__links {
  display: flex; flex-direction: column; gap: 4px;
}
.pf-drawer__links a {
  font-family: var(--f-display);
  font-size: 32px; font-weight: 700;
  padding: 14px 0; letter-spacing: -1px;
  border-bottom: 1px solid var(--c-border);
}
.pf-drawer__cta {
  margin-top: auto;
  background: var(--c-yellow); color: var(--c-purple);
  padding: 16px; border: 0; border-radius: 999px;
  font-weight: 700; font-size: 16px; cursor: pointer;
}

/* ─── Hero ───────────────────────── */

.pf-hero {
  position: relative; overflow: hidden;
  min-height: 780px;
  background: var(--c-bg);
}
.pf-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.pf-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(254, 204, 24, 0.16), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(103, 7, 186, 0.40), transparent 55%),
    linear-gradient(180deg, rgba(11, 5, 24, 0.40) 0%, rgba(11, 5, 24, 0.20) 35%, rgba(11, 5, 24, 0.85) 100%);
  pointer-events: none;
}
.pf-hero__inner {
  position: relative; min-height: 780px;
  padding-block: 56px 48px;
  /* horizontal padding inherits from .pf-container */
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.pf-hero__tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pf-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.pf-pill--yellow {
  background: var(--c-yellow); color: var(--c-purple); border: 0;
}
.pf-pill--yellow::before {
  content: ''; width: 6px; height: 6px; background: var(--c-purple); border-radius: 50%;
}
.pf-hero__date {
  font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute);
  text-align: right; line-height: 1.6;
}

.pf-hero__center { display: flex; flex-direction: column; align-items: flex-start; }
.pf-hero__logo { height: 170px; width: auto; max-width: 95%; }
.pf-hero__tag {
  font-family: var(--f-serif); font-style: italic;
  font-weight: 600;
  font-size: 36px; color: var(--c-yellow);
  margin-top: 18px; letter-spacing: -0.5px;
  line-height: 1.1;
}
.pf-hero__sub {
  font-size: 18px; color: rgba(255, 255, 255, 0.88);
  margin-top: 14px; max-width: 580px; line-height: 1.55;
}
.pf-hero__ctas {
  display: flex; gap: 12px; margin-top: 28px;
  flex-wrap: wrap; align-items: center;
}
.pf-hero__bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  flex-wrap: wrap;
}
.pf-countdown {
  display: flex; gap: 32px;
}
.pf-countdown__cell .pf-countdown__v {
  font-family: var(--f-display); font-weight: 800;
  font-size: 52px; line-height: 1;
  color: var(--c-yellow); letter-spacing: -2px;
}
.pf-countdown__cell .pf-countdown__l {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-text-mute); margin-top: 4px; letter-spacing: 0.6px;
}
.pf-tm-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-text-mute);
}
.pf-tm-line img {
  height: 16px; filter: brightness(0) invert(1); opacity: 0.9;
}

/* ─── Headliners ───────────────────────── */

.pf-headliners { padding: 96px 0 64px; }
.pf-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.pf-section-head a { font-size: 14px; color: var(--c-text-mute); border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 3px; }

.pf-heads-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pf-head-card {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--c-card); border: 1px solid var(--c-border);
  aspect-ratio: 4/5;
}
.pf-head-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 100%; /* bottom-anchored — preserve artist name baked
                                 into the brand poster when the image is a
                                 9:16 story format cropped into a 4:5 card */
}

/* Small ★ marker placed top-left of an artist photo. Used in place of the
   metadata overlay until the schedule is published. */
.pf-card-star {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-yellow); color: var(--c-purple);
  font-weight: 700; font-size: 16px; line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.pf-head-card__gradient {
  position: absolute; inset: 0; top: auto; height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(11,5,24,0.85) 70%, var(--c-bg) 100%);
  pointer-events: none;
}
.pf-head-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 28px 28px;
}
.pf-head-card__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.pf-tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.6px;
}
.pf-tag--yellow { background: var(--c-yellow); color: var(--c-purple); }
.pf-tag--ghost  { background: rgba(255,255,255,0.14); color: var(--c-text); }
.pf-head-card__name {
  font-family: var(--f-display); font-weight: 800;
  font-size: 56px; color: var(--c-text);
  margin-top: 10px; letter-spacing: -1.5px; line-height: 0.95;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* ─── Lineup grid ───────────────────────── */

.pf-lineup { padding: 64px 0 96px; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.pf-lineup__filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pf-chip {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--c-text); font-size: 13px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; transition: all 0.12s;
}
.pf-chip:hover { background: rgba(255,255,255,0.12); }
.pf-chip--active { background: var(--c-yellow); color: var(--c-purple); border-color: var(--c-yellow); font-weight: 700; }

/* Locked chips: schedule not published yet — clicking shows the tooltip. */
.pf-chip-wrap {
  position: relative;
  display: inline-flex;
}
.pf-chip--locked {
  opacity: 0.55;
  cursor: not-allowed;
  position: relative;
}
.pf-chip--locked:hover {
  background: rgba(255,255,255,0.06); /* no hover lift */
}
.pf-chip__tip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-yellow);
  color: var(--c-purple);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 20;
  animation: pf-chip-tip-in 0.15s ease-out;
  pointer-events: none;
}
.pf-chip__tip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--c-yellow);
}
@keyframes pf-chip-tip-in {
  from { opacity: 0; transform: translate(-50%, -4px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.pf-lineup__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 28px;
}
.pf-artist-card {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--c-card); border: 1px solid var(--c-border);
  cursor: pointer; aspect-ratio: 4/5;
  transition: transform 0.15s, border-color 0.15s;
}
.pf-artist-card:hover { transform: translateY(-3px); border-color: rgba(254,204,24,0.4); }
.pf-artist-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; }

/* Per-artist alignment overrides. EVELINA's source poster is 9:16 (story
   format) instead of 4:5, so the bottom-anchored crop makes the cloud
   border occupy a larger share of the card. Shift the visible window up
   so the photo + text proportions match the other cards. */
.pf-artist-card[data-slug="evelina"] img,
.pf-head-card[data-slug="evelina"] img {
  object-position: 50% 86%;
}
.pf-artist-card__gradient {
  position: absolute; inset: 0; top: auto; height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(11,5,24,0.92) 75%);
  pointer-events: none;
}
.pf-artist-card__info {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
}
.pf-artist-card__meta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--c-yellow); letter-spacing: 0.6px;
}
.pf-artist-card__name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--c-text);
  margin-top: 2px; letter-spacing: -0.3px; line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.pf-lineup__more {
  margin-top: 32px;
  display: flex; justify-content: center; align-items: center;
}
.pf-lineup__more strong { font-family: var(--f-display); font-size: 22px; }
.pf-lineup__more span   { color: var(--c-text-mute); font-size: 14px; display: block; margin-top: 4px; }

/* ─── Schedule ───────────────────────── */

.pf-schedule { padding: 96px 0; background: var(--c-bg); }
.pf-schedule__day { margin-bottom: 48px; }
.pf-schedule__day-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.pf-schedule__day-head h3 {
  font-family: var(--f-display); font-size: 32px; font-weight: 700; margin: 0;
  letter-spacing: -0.5px;
}
.pf-schedule__day-head .pf-rule {
  flex: 1; height: 1px; background: var(--c-border);
}
.pf-schedule__cols {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 0;
  align-items: start;
}
.pf-schedule__list { display: none; }
.pf-schedule__row-mobile {
  display: grid; grid-template-columns: 56px 1fr;
  align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.pf-schedule__row-mobile .pf-schedule__time {
  padding: 0; border: 0;
}
.pf-schedule__head-cell {
  padding: 8px 16px;
  font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute); letter-spacing: 1px;
  border-bottom: 1px solid var(--c-border);
}
.pf-schedule__time {
  padding: 20px 0;
  font-family: var(--f-mono); font-size: 13px; color: var(--c-text-mute);
  border-bottom: 1px solid var(--c-border);
}
.pf-schedule__slot {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
}
.pf-schedule__slot-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px; border-radius: 12px;
  background: var(--c-card); border: 1px solid var(--c-border);
}
.pf-schedule__slot-inner--head {
  background: linear-gradient(135deg, rgba(254,204,24,0.22), rgba(254,204,24,0.05));
  border: 1.5px solid var(--c-yellow);
  padding: 14px 16px;
}
.pf-schedule__slot-thumb {
  width: 48px; height: 48px; border-radius: 8px; overflow: hidden; flex: 0 0 auto;
}
.pf-schedule__slot-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pf-schedule__slot-name {
  font-family: var(--f-display); font-size: 18px; font-weight: 700; color: var(--c-text);
  letter-spacing: -0.3px;
}
.pf-schedule__slot-tag {
  font-family: var(--f-mono); font-size: 10px; color: var(--c-yellow); margin-top: 2px; letter-spacing: 0.6px;
}

/* ─── Tickets ───────────────────────── */

.pf-tickets {
  padding: 96px 0; background: var(--c-bg-alt);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--c-border);
}
.pf-tickets::before {
  content: ''; position: absolute;
  top: -120px; right: -120px; width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,7,186,0.45), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.pf-tickets__head { text-align: center; margin-bottom: 48px; position: relative; }
.pf-tickets__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.pf-tier {
  border-radius: 20px; padding: 32px 28px;
  background: var(--c-card); border: 1px solid var(--c-border);
  position: relative;
}
.pf-tier--hot {
  background: linear-gradient(180deg, rgba(254,204,24,0.16) 0%, var(--c-card) 60%);
  border: 1.5px solid var(--c-yellow);
}
.pf-tier__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--c-yellow); color: var(--c-purple);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
}
.pf-tier__sub { font-size: 14px; color: var(--c-text-mute); }
.pf-tier__name { font-family: var(--f-display); font-size: 22px; font-weight: 700; margin-top: 4px; }
.pf-tier__price {
  display: flex; align-items: baseline; gap: 6px; margin-top: 20px;
}
.pf-tier__price-v {
  font-family: var(--f-display); font-weight: 800;
  font-size: 76px; letter-spacing: -2px; line-height: 1;
}
.pf-tier__price-c { font-size: 18px; color: var(--c-text-mute); }
.pf-tier__feat {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.pf-tier__feat-row {
  display: flex; gap: 10px; padding: 6px 0; font-size: 13px;
}
.pf-tier__feat-row span:first-child { color: var(--c-yellow); }
.pf-tier__btn {
  margin-top: 22px; width: 100%; padding: 14px 0;
  border-radius: 999px;
  background: transparent; color: var(--c-text);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: all 0.12s;
}
.pf-tier__btn:hover { background: rgba(255,255,255,0.08); }
.pf-tier--hot .pf-tier__btn { background: var(--c-yellow); color: var(--c-purple); border: 0; }
.pf-tier--hot .pf-tier__btn:hover { background: var(--c-yellow-deep); }
.pf-tickets__note {
  margin-top: 28px; text-align: center;
  font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute);
  display: flex; align-items: center; gap: 8px; justify-content: center;
  flex-wrap: wrap;
}
.pf-tickets__note img { height: 18px; filter: brightness(0) invert(1); opacity: 0.85; }

/* ─── Venue ───────────────────────── */

.pf-venue { padding: 96px 0; }
.pf-venue__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.pf-venue__title {
  font-family: var(--f-display); font-size: 56px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1; margin: 12px 0 0;
}
.pf-venue__title em {
  font-family: var(--f-serif); font-style: italic; font-weight: 600; color: var(--c-yellow);
}
.pf-venue__lead { font-size: 16px; color: var(--c-text-mute); line-height: 1.6; margin-top: 16px; max-width: 440px; }
.pf-venue__stats {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 16px;
}
.pf-venue__stat {
  padding: 14px 0; border-top: 1px solid var(--c-border);
}
.pf-venue__stat-k { font-family: var(--f-display); font-size: 28px; font-weight: 700; }
.pf-venue__stat-l {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-text-mute); margin-top: 4px; letter-spacing: 0.6px;
}
.pf-venue__map {
  border-radius: 16px; height: 460px; position: relative; overflow: hidden;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
}

/* Leaflet overrides — map controls / popup match the brand. */
.pf-venue__map .leaflet-control-attribution {
  background: rgba(11, 5, 24, 0.7);
  color: var(--c-text-dim);
  font-family: var(--f-mono);
  font-size: 10px;
}
.pf-venue__map .leaflet-control-attribution a {
  color: var(--c-text-mute);
}
.pf-venue__map .leaflet-control-zoom a {
  background: rgba(11, 5, 24, 0.85);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.pf-venue__map .leaflet-control-zoom a:hover {
  background: var(--c-yellow);
  color: var(--c-purple);
}
.pf-venue__map .leaflet-popup-content-wrapper {
  background: var(--c-yellow);
  color: var(--c-purple);
  border-radius: 8px;
  font-family: var(--f-display);
}
.pf-venue__map .leaflet-popup-tip {
  background: var(--c-yellow);
}

/* Brand pin: yellow disk + glowing halo, anchored at the marker centre. */
.pf-map-marker {
  position: relative;
  width: 22px; height: 22px;
}
.pf-map-pin {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--c-yellow);
  box-shadow: 0 0 12px rgba(254, 204, 24, 0.8);
  z-index: 2;
}
.pf-map-pin-halo {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(254, 204, 24, 0.18);
  animation: pf-pin-pulse 2.4s ease-out infinite;
}
@keyframes pf-pin-pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(1.4); opacity: 0;   }
  100% { transform: scale(1.4); opacity: 0;   }
}

/* ─── About ───────────────────────── */

.pf-about { padding: 96px 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.pf-about__inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start;
}
.pf-about__title {
  font-family: var(--f-display); font-size: 56px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1; margin: 12px 0 0;
}
.pf-about__title em {
  font-family: var(--f-serif); font-style: italic; font-weight: 600; color: var(--c-yellow);
}
.pf-about__body p {
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
}
.pf-about__body p + p { margin-top: 0; }

/* ─── Follow & download ──────────────── */

.pf-social {
  padding: 80px 0;
  background: var(--c-bg);
}
.pf-social__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.pf-social__col {
  padding: 24px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
}
.pf-social__sub {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-text-mute); letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.pf-social__row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pf-social__hint {
  margin-top: 14px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-text-dim); letter-spacing: 0.6px;
}

/* Social icon button — rounded pill with brand emoji-style icon */
.pf-social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--c-text);
  font-family: var(--f-display);
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, border-color 0.15s, color 0.12s;
}
.pf-social-btn:hover {
  background: var(--c-yellow);
  color: var(--c-purple);
  border-color: var(--c-yellow);
  transform: translateY(-2px);
}
.pf-social-btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
}

/* App store buttons — match the standard tall pill format used by Apple/Google */
.pf-store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  text-decoration: none;
  font-family: var(--f-sans);
  transition: transform 0.12s, border-color 0.15s, background 0.15s;
  min-width: 168px;
}
.pf-store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--c-yellow);
  background: #111;
}
.pf-store-btn span {
  display: flex; flex-direction: column; align-items: flex-start;
  font-size: 15px; font-weight: 600; line-height: 1.15;
}
.pf-store-btn small {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.4px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

/* ─── Schedule placeholder — section header only while schedule is unreleased */
.pf-schedule--placeholder { padding-bottom: 32px; }

/* ─── FAQ ─────────────────────────────── */

.pf-faq { padding: 96px 0; background: var(--c-bg); }
.pf-faq__list {
  margin-top: 8px;
  border-top: 1px solid var(--c-border);
}
.pf-faq__item {
  border-bottom: 1px solid var(--c-border);
  padding: 4px 0;
}
.pf-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 4px;
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--c-text);
  transition: color 0.12s;
}
.pf-faq__q:hover { color: var(--c-yellow); }
.pf-faq__q::-webkit-details-marker { display: none; }
.pf-faq__chev {
  flex: 0 0 auto;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  color: var(--c-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 18px; font-weight: 600;
  transition: transform 0.2s ease, background 0.12s;
}
.pf-faq__item[open] .pf-faq__chev {
  transform: rotate(45deg);
  background: var(--c-yellow); color: var(--c-purple); border-color: var(--c-yellow);
}
.pf-faq__a {
  padding: 0 4px 24px;
  font-size: 16px; line-height: 1.65;
  color: var(--c-text-mute);
  max-width: 760px;
}

/* ─── Sponsors ───────────────────────── */
/* Identical-size white cards. Logos keep their original colors. */

.pf-sponsors { padding: 80px 0; }
.pf-sponsors__head { text-align: center; margin-bottom: 36px; }
.pf-sponsors__head h3 {
  font-family: var(--f-display); font-size: 36px; font-weight: 700;
  margin: 8px 0 0;
}
.pf-sponsors__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pf-sponsor-card {
  background: var(--c-yellow);
  border-radius: 16px;
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pf-sponsor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}
.pf-sponsor-card img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
  /* No filter — preserve original brand colors */
}
/* Exception: white-on-transparent logos (Xtended) can't show on a white card.
   Invert luminance to render the logo as black on the white tile, preserving
   shape/proportions exactly as supplied. */
.pf-sponsor-card__img--invert {
  filter: brightness(0) saturate(100%);
}
.pf-sponsor-card__text {
  font-family: var(--f-display); font-weight: 700; font-size: 26px;
  color: #1A0530; letter-spacing: -0.4px;
  text-align: center;
}

/* ─── Contact ───────────────────────── */

.pf-contact {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-deep) 100%);
}
.pf-contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
.pf-contact__title {
  font-family: var(--f-display); font-size: 56px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1; margin: 12px 0 0;
}
.pf-contact__title em {
  font-family: var(--f-serif); font-style: italic; font-weight: 600; color: var(--c-yellow);
}
.pf-contact__lead {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.85);
  margin-top: 20px; max-width: 380px;
}
.pf-contact__emails {
  margin-top: 28px;
  font-family: var(--f-mono); font-size: 13px; line-height: 1.9; opacity: 0.9;
}
.pf-form {
  background: rgba(0,0,0,0.22);
  border-radius: 16px; padding: 28px;
  border: 1px solid rgba(254,204,24,0.20);
}
.pf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pf-form label {
  display: block; font-family: var(--f-mono); font-size: 11px;
  color: rgba(255,255,255,0.75); letter-spacing: 0.6px; margin-bottom: 6px;
}
.pf-form input, .pf-form textarea, .pf-form select {
  width: 100%; box-sizing: border-box;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 12px 14px;
  color: var(--c-text); font-family: var(--f-sans); font-size: 14px;
  outline: none; transition: border-color 0.12s, background 0.12s;
}
.pf-form input::placeholder, .pf-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.pf-form input:focus, .pf-form textarea:focus, .pf-form select:focus {
  border-color: var(--c-yellow); background: rgba(0,0,0,0.35);
}
.pf-form textarea { min-height: 110px; resize: vertical; font-family: var(--f-sans); }

/* Custom-styled <select> — match height + look of the other inputs.
   Native dropdown chevron is hidden via appearance: none and replaced
   with an inline SVG positioned over the input. */
.pf-form__select-wrap {
  position: relative;
  display: block;
}
.pf-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px; /* room for the chevron */
  background-image: none;
  cursor: pointer;
  height: auto;
}
.pf-form__select::-ms-expand { display: none; }
.pf-form__select-chev {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--c-yellow);
}
.pf-form__select option {
  background: #1A0530;
  color: var(--c-text);
}
.pf-form__field { margin-top: 14px; }
.pf-form__field--first { margin-top: 0; }
.pf-form__submit {
  margin-top: 18px; width: 100%; padding: 14px 0; border-radius: 999px;
  background: var(--c-yellow); color: var(--c-purple); border: 0;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background 0.12s, transform 0.12s;
}
.pf-form__submit:hover { background: var(--c-yellow-deep); transform: translateY(-1px); }
.pf-form__legal {
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,0.55); margin-top: 12px; text-align: center;
}
.pf-form__legal-link {
  color: var(--c-yellow);
  text-decoration: underline;
  text-decoration-color: rgba(254, 204, 24, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.12s;
}
.pf-form__legal-link:hover {
  text-decoration-color: var(--c-yellow);
}

/* ─── YHTEYSTIEDOT (named contacts + billing block under the form) ───────────────────────── */
/* Lives inside .pf-contact, so it sits on the purple gradient. */

.pf-contacts {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(254, 204, 24, 0.20);
  text-align: center;
  color: var(--c-text);
}
.pf-contacts__heading {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -1px;
  color: var(--c-yellow);
  margin: 0 0 32px;
}
.pf-contacts__promo { margin: 0 auto 36px; }
.pf-contacts__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.pf-contacts__cell { padding: 4px; }
.pf-contacts__role {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
}
.pf-contacts__promo .pf-contacts__role {
  font-size: 22px;
}
.pf-contacts__name {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-yellow);
  margin-bottom: 4px;
}
.pf-contacts__mail {
  font-family: var(--f-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
  transition: color 0.12s, border-color 0.12s;
}
.pf-contacts__mail:hover {
  color: var(--c-yellow);
  border-color: var(--c-yellow);
}

.pf-contacts__billing {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(254, 204, 24, 0.20);
}
.pf-contacts__bill-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-yellow);
  margin: 0 0 24px;
}
.pf-contacts__bill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}
.pf-contacts__bill-block {
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.pf-contacts__bill-head {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text);
}
.pf-contacts__bill-line {
  font-family: var(--f-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

/* Form status message — shown below the submit button */
.pf-form__msg {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.pf-form__msg--ok {
  background: rgba(254, 204, 24, 0.18);
  color: var(--c-yellow);
  border: 1px solid rgba(254, 204, 24, 0.45);
}
.pf-form__msg--err {
  background: rgba(255, 90, 90, 0.15);
  color: #ffb3b3;
  border: 1px solid rgba(255, 90, 90, 0.4);
}

/* ─── Newsletter strip ───────────────────────── */

.pf-newsletter {
  padding: 56px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.pf-newsletter__inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center;
}
.pf-newsletter h3 {
  font-family: var(--f-display); font-size: 36px; font-weight: 800;
  margin: 8px 0 0; letter-spacing: -1px; line-height: 1.05;
}
.pf-newsletter h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 600; color: var(--c-yellow);
}
.pf-newsletter__form {
  display: flex; gap: 0;
  background: rgba(0,0,0,0.35); border-radius: 999px; padding: 6px;
  border: 1px solid rgba(254,204,24,0.20);
}
.pf-newsletter__form input {
  flex: 1; background: transparent; border: 0; outline: none;
  padding: 12px 18px; color: var(--c-text); font-size: 14px; font-family: var(--f-sans);
}
.pf-newsletter__form input::placeholder { color: rgba(255,255,255,0.45); }
.pf-newsletter__form button {
  background: var(--c-yellow); color: var(--c-purple); border: 0;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer;
}
.pf-newsletter__note { font-family: var(--f-mono); font-size: 11px; color: var(--c-text-mute); margin-top: 10px; }

/* ─── Footer ───────────────────────── */

.pf-footer {
  background: #070210; color: var(--c-text);
  padding: 48px 0 28px;
}
.pf-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px; margin-bottom: 32px;
}
.pf-footer__brand img { height: 44px; }
.pf-footer__brand p {
  font-size: 13px; color: rgba(255,255,255,0.6); margin: 16px 0 0;
  max-width: 280px; line-height: 1.6;
}
.pf-footer__col h4 {
  font-family: var(--f-mono); font-size: 11px; color: var(--c-yellow);
  letter-spacing: 1px; margin: 0 0 14px; font-weight: 600;
}
.pf-footer__col a {
  display: block; font-size: 13px; padding: 4px 0; opacity: 0.85;
  transition: opacity 0.12s;
}
.pf-footer__col a:hover { opacity: 1; color: var(--c-yellow); }
.pf-footer__col-app {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.pf-footer__col-app-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.pf-footer__col-app-icon svg {
  width: 16px;
  height: 16px;
}
.pf-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--c-border); padding-top: 18px;
  font-family: var(--f-mono); font-size: 11px; color: rgba(255,255,255,0.5);
  gap: 24px; flex-wrap: wrap;
}
.pf-footer__bottom .pf-tm-line img { opacity: 0.85; }

/* ─── Legal / Tietosuoja page ─────────── */

.pf-legal-hero {
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--c-border);
}
.pf-legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-text-mute);
  padding: 6px 12px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.pf-legal-back:hover {
  color: var(--c-yellow); border-color: var(--c-yellow);
  background: rgba(254,204,24,0.06);
}
.pf-legal-title {
  font-family: var(--f-display);
  font-weight: 800; font-size: 80px; letter-spacing: -2.5px; line-height: 0.95;
  margin: 14px 0 0;
}
.pf-legal-title em {
  font-family: var(--f-serif); font-style: italic; font-weight: 600;
  color: var(--c-yellow);
}
.pf-legal-lead {
  font-size: 18px; line-height: 1.6;
  color: var(--c-text-mute);
  margin: 18px 0 0;
  max-width: 640px;
}
.pf-legal-meta {
  margin-top: 18px;
  font-family: var(--f-mono); font-size: 11px; color: var(--c-text-dim);
  letter-spacing: 0.6px;
}

.pf-legal { padding: 56px 0 96px; }
.pf-legal__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.pf-legal__section {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}
.pf-legal__section:last-child { border-bottom: 0; }
.pf-legal__section h2 {
  font-family: var(--f-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.3px; line-height: 1.2;
  margin: 0 0 14px;
  color: var(--c-text);
}
.pf-legal__body {
  font-size: 16px; line-height: 1.65;
  color: var(--c-text-mute);
}
.pf-legal__body p { margin: 0 0 12px; }
.pf-legal__body p:last-child { margin-bottom: 0; }
.pf-legal__body strong { color: var(--c-text); font-weight: 600; }
.pf-legal__body em {
  font-style: normal; font-weight: 500;
  color: var(--c-yellow);
  font-family: var(--f-mono);
  font-size: 0.94em;
}
.pf-legal__body ul {
  margin: 8px 0 12px;
  padding-left: 0;
  list-style: none;
}
.pf-legal__body li {
  position: relative;
  padding: 4px 0 4px 22px;
}
.pf-legal__body li::before {
  content: '→';
  position: absolute; left: 0; top: 4px;
  color: var(--c-yellow);
}

@media (max-width: 768px) {
  .pf-legal-hero { padding: 56px 0 40px; }
  .pf-legal-title { font-size: 48px; letter-spacing: -1.5px; }
  .pf-legal-lead { font-size: 16px; }
  .pf-legal__inner { padding: 0 20px; }
  .pf-legal__section h2 { font-size: 20px; }
  .pf-legal__body { font-size: 15px; }
}

/* ─── Mobile / responsive ────────────────────────────── */

@media (max-width: 1024px) {
  .pf-container { padding-inline: 28px; }
  .pf-h2 { font-size: 48px; }
  .pf-hero__logo { height: 130px; }
  .pf-hero__tag { font-size: 28px; }
  .pf-countdown { gap: 20px; }
  .pf-countdown__cell .pf-countdown__v { font-size: 40px; }
  .pf-heads-grid { grid-template-columns: 1fr; }
  .pf-head-card__name { font-size: 44px; }
  .pf-lineup__grid { grid-template-columns: repeat(3, 1fr); }
  .pf-venue__grid,
  .pf-about__inner,
  .pf-contact__grid,
  .pf-newsletter__inner,
  .pf-social__cols { grid-template-columns: 1fr; gap: 32px; }
  .pf-venue__map { height: 360px; }
  .pf-tickets__grid { grid-template-columns: 1fr; }
  .pf-footer__grid { grid-template-columns: 1fr 1fr; }
  .pf-sponsors__row { grid-template-columns: repeat(2, 1fr); }
  .pf-contacts__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .pf-container { padding-inline: 20px; }

  /* Nav: hide horizontal links, show burger */
  .pf-nav__links { display: none; }
  .pf-nav__lang { display: none; }
  .pf-langs { display: none; }
  .pf-nav__cta { display: none; }
  .pf-burger { display: inline-flex; }
  .pf-nav__logo img { height: 32px; }

  /* Hero */
  .pf-hero { min-height: 0; }
  .pf-hero__inner {
    min-height: calc(100vh - var(--nav-h));
    padding-block: 32px 32px;
  }
  .pf-hero__logo { height: 100px; }
  .pf-hero__tag { font-size: 22px; line-height: 1.2; }
  .pf-hero__sub { font-size: 15px; }
  .pf-hero__ctas { flex-direction: column; align-items: stretch; }
  .pf-hero__ctas .pf-btn { justify-content: center; }
  .pf-hero__date { text-align: left; }
  .pf-hero__bottom { flex-direction: column; align-items: flex-start; }
  .pf-countdown { gap: 18px; }
  .pf-countdown__cell .pf-countdown__v { font-size: 36px; letter-spacing: -1.2px; }

  /* Section headings */
  .pf-h2 { font-size: 38px; letter-spacing: -1.2px; }
  .pf-headliners, .pf-lineup, .pf-tickets, .pf-venue, .pf-about, .pf-contact, .pf-schedule, .pf-faq, .pf-sponsors, .pf-social { padding: 64px 0; }

  /* Headliners */
  .pf-heads-grid { gap: 16px; }
  .pf-head-card__name { font-size: 36px; }
  .pf-head-card__info { padding: 0 20px 20px; }

  /* Lineup */
  .pf-lineup__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pf-artist-card__name { font-size: 16px; }
  .pf-lineup__more { flex-direction: column; align-items: stretch; }
  .pf-lineup__more .pf-btn { justify-content: center; }
  .pf-card-star { width: 26px; height: 26px; font-size: 13px; top: 8px; left: 8px; }

  /* Sponsors — single column on mobile, keep cards readable */
  .pf-sponsors__row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pf-sponsor-card { height: 120px; padding: 18px 22px; }
  .pf-sponsor-card__text { font-size: 20px; }

  /* Social & app store buttons */
  .pf-social__col { padding: 18px; }
  .pf-store-btn { min-width: 0; flex: 1 1 auto; padding: 10px 14px; }
  .pf-store-btn span { font-size: 13px; }
  .pf-social-btn { padding: 10px 14px; font-size: 13px; }

  /* FAQ */
  .pf-faq__q { font-size: 17px; padding: 18px 0; gap: 16px; }
  .pf-faq__chev { width: 28px; height: 28px; font-size: 16px; }
  .pf-faq__a { font-size: 15px; padding-bottom: 20px; }

  /* Schedule — desktop 3-col swap to mobile single-column list */
  .pf-schedule__cols--desktop { display: none; }
  .pf-schedule__list--mobile  { display: block; }
  .pf-schedule__day-head h3 { font-size: 24px; }

  /* Tickets */
  .pf-tier__price-v { font-size: 56px; }

  /* Venue */
  .pf-venue__title, .pf-about__title, .pf-contact__title { font-size: 36px; }

  /* Contact form */
  .pf-form { padding: 20px; }
  .pf-form__row { grid-template-columns: 1fr; }

  /* YHTEYSTIEDOT directory */
  .pf-contacts { margin-top: 40px; padding-top: 28px; }
  .pf-contacts__heading { font-size: 28px; margin-bottom: 24px; }
  .pf-contacts__cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pf-contacts__bill-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Newsletter */
  .pf-newsletter h3 { font-size: 26px; }
  .pf-newsletter__form { flex-direction: column; padding: 8px; border-radius: 16px; }
  .pf-newsletter__form input { padding: 14px; }
  .pf-newsletter__form button { padding: 14px; border-radius: 12px; }

  /* Footer */
  .pf-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .pf-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pf-hero__video { display: none; }
  .pf-btn { transition: none; }
}
