/* ============================================================================
   NAYARA — nayara.ca
   Design system rebuilt from the brand bible + site template.
   Three core colors, two accents on loan from the sunset. NEVER green or brown.
   Fonts: Bebas Neue (display) · Inter (body) · Space Mono (labels/times).
   Mobile-first; single breakpoint at 768px.
   ============================================================================ */

/* ---------- tokens ---------- */
:root {
  /* brand primaries */
  --bg: #0A0A0A;             /* Void Black */
  --text: #FFFFFF;           /* Pure White */
  --accent: #FF2E93;         /* Signal Pink — THE color */
  --accent-deep: #C2126B;    /* pressed / dark moments */
  --coral: #FF7A45;          /* Sunset Coral — day-side accent only */
  --gold: #FFD166;           /* Flare Gold — sparingly */
  --off: #F7F4F2;

  /* surfaces & text steps */
  --surface: #140a10;        /* cards — black warmed with pink */
  --surface-raised: #1d1016; /* chips, hovers */
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.58);
  --accent-text: #ffafce;    /* pink at small sizes — 11.6:1 on bg */
  --border: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.42);
  --btn-hover: #ff5ba6;
  --focus: var(--accent);

  /* sunset field — the loud moment (closer). stays dark in both themes */
  --field: #2b0a1c;
  --field-deep: #14060e;

  /* status — green is forbidden, success wears gold */
  --warning-text: #ffb699;
  --warning-tint: #311c13;
  --success-text: #ffe3a3;
  --success-tint: #312a19;
  --header-bg: rgba(10, 10, 10, 0.82);

  /* type */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;
  --text-display: clamp(3.5rem, 2rem + 14vw, 11rem);
  --text-h2: clamp(2.25rem, 1.9rem + 1.8vw, 3.25rem);
  --text-lede: 1.0625rem;
  --text-body: 0.9375rem;
  --text-sm: 0.8125rem;
  --text-label: 0.75rem;
  --text-caption: 0.6875rem;
  --tracking-label: 0.25em;

  /* layout — compact 2.8px density scale from the template */
  --s2: 5.6px;  --s3: 8.4px;  --s4: 11.2px; --s6: 16.8px; --s8: 22.4px;
  --s10: 28px;  --s12: 33.6px; --s16: 44.8px; --s20: 56px; --s24: 67.2px;
  --s32: 89.6px;
  --radius: 4px;
  --radius-media: 6px;
  --container: 1140px;
  --container-wide: 1360px;
  --pad: 20px;
  --header-h: 62px;
}

/* Day theme — dark stays the brand default; hero + closer keep their dark field */
:root[data-theme="day"] {
  --bg: #F7F4F2;
  --text: #0A0A0A;
  --surface: #FFFFFF;
  --surface-raised: #EFE9E5;
  --text-secondary: rgba(10, 10, 10, 0.74);
  --text-muted: rgba(10, 10, 10, 0.58);
  --accent-text: #C2126B;     /* deep pink at small sizes on light — 5.4:1 */
  --border: rgba(10, 10, 10, 0.14);
  --border-strong: rgba(10, 10, 10, 0.42);
  --focus: #C2126B;
  --warning-text: #A63E0A;
  --warning-tint: #FBDFCF;
  --success-text: #7A5A00;
  --success-tint: #F6E7BF;
  --header-bg: rgba(247, 244, 242, 0.86);
}

/* ---------- base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
  transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #0A0A0A; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

.mono { font-family: var(--font-mono); }
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; }
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: fixed; top: -100px; left: var(--pad); z-index: 300;
  background: var(--accent); color: #0A0A0A; padding: 10px 18px;
  font-family: var(--font-mono); font-size: var(--text-label);
  border-radius: var(--radius); transition: top 0.2s ease;
}
.skip-link:focus { top: 10px; }
.anchor-alias { position: relative; top: calc(-1 * var(--header-h) - 20px); }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.section { padding-block: var(--s24); position: relative; }
.eyebrow {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--accent-text); margin-bottom: var(--s6);
}
.section-title {
  font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em;
  font-size: var(--text-h2); line-height: 0.95; margin-bottom: var(--s8);
  text-wrap: balance;
}
.lede { font-size: var(--text-lede); color: var(--text-secondary); max-width: 52ch; margin-bottom: var(--s10); }

.icon { width: 1em; height: 1em; flex: none; }
.icon-lg { width: 22px; height: 22px; flex: none; }

/* official wordmark: white-letter variant on dark, original black-letter PNG on light.
   (logo-wordmark-white.png = official logo with ONLY the black letters remapped to
   white; the pink peaks are untouched pixels. Never filter/invert the logo.) */
.logo-img { width: 168px; height: auto; display: block; }
.logo-on-light { display: none; }
:root[data-theme="day"] .logo-on-dark { display: none; }
:root[data-theme="day"] .logo-on-light { display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 12px 20px; cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 26px; }
.btn-sm { padding: 8px 14px; }
.btn-primary { background: var(--accent); color: #0A0A0A; }
.btn-primary:hover { background: var(--btn-hover); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.06); }
:root[data-theme="day"] .btn-secondary:hover { background: rgba(10, 10, 10, 0.05); }
.btn-ghost { background: transparent; color: var(--accent-text); padding-inline: 12px; }
.btn-ghost:hover { background: rgba(255, 46, 147, 0.12); }
.btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

/* on the sunset field (closer) */
.btn-onfield { background: #FFFFFF; color: #0A0A0A; }
.btn-onfield:hover { background: var(--off); }
.btn-onfield-ghost { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.55); }
.btn-onfield-ghost:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, 0.1); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s6); padding-inline: var(--pad);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { text-decoration: none; z-index: 220; }
.nav { display: flex; align-items: center; gap: var(--s8); }
.nav a:not(.nav-cta) {
  font-family: var(--font-mono); font-size: var(--text-label);
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  color: var(--text-secondary); padding: 6px 2px;
}
.nav a:not(.nav-cta):hover { color: var(--accent-text); }
.header-tools { display: flex; align-items: center; gap: var(--s4); }

.theme-toggle {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px;
  padding: 2px; background: transparent;
}
.theme-btn {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  background: none; border: 0; border-radius: 999px; padding: 5px 11px; cursor: pointer;
}
.theme-btn[aria-pressed="true"] { background: var(--accent); color: #0A0A0A; }

.menu-btn {
  display: none; align-items: center; gap: 8px; z-index: 220;
  background: none; border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); padding: 8px 12px; cursor: pointer;
}
.menu-bar { position: relative; width: 16px; height: 2px; background: currentColor; }
.menu-bar::before, .menu-bar::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px;
  background: currentColor; transition: transform 0.2s ease;
}
.menu-bar::before { top: -5px; }
.menu-bar::after { top: 5px; }
.menu-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.menu-open .menu-bar { background: transparent; }
.menu-open .menu-bar::before { transform: translateY(5px) rotate(45deg); }
.menu-open .menu-bar::after { transform: translateY(-5px) rotate(-45deg); }

/* ---------- horizon lines ---------- */
.horizon-scroll {
  position: fixed; left: 0; right: 0; top: 40vh; height: 2px; z-index: 150;
  pointer-events: none; opacity: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: opacity 0.3s ease;
}
hr.horizon {
  height: 2px; border: 0; margin: 0 auto; max-width: var(--container-wide);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
}
hr.horizon-gold {
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent), transparent);
}

/* ---------- hero: split day/night ---------- */
.hero {
  position: relative; margin-top: calc(-1 * var(--header-h));
  min-height: 100svh; display: flex; overflow: hidden; color: #FFFFFF;
}
.hero-half { width: 50%; min-height: 100%; position: relative; overflow: hidden; }
.hero-day {
  background: linear-gradient(180deg, #FFD166 0%, #FF7A45 38%, #FF2E93 72%, #C2126B 100%);
}
.hero-night {
  background: linear-gradient(180deg, #0A0A0A 0%, #1a0a14 55%, #2b0a1c 100%);
}
.hero-night::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 80% 40%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 35% 60%, rgba(255, 46, 147, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 20%, rgba(255, 255, 255, 0.3), transparent);
}
.hero-sun {
  position: absolute; bottom: 16%; left: 50%; transform: translateX(-50%);
  width: clamp(110px, 24vw, 190px); height: clamp(110px, 24vw, 190px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE9B0, #FFD166 40%, #FF7A45 75%, #FF2E93 100%);
  box-shadow: 0 0 90px 20px rgba(255, 122, 69, 0.55);
}
.hero-strobe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(0deg, rgba(255, 46, 147, 0.35), transparent);
}
.hero-strobe::before, .hero-strobe::after {
  content: ""; position: absolute; bottom: 0; width: 1px; height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), transparent);
}
.hero-strobe::before { left: 30%; }
.hero-strobe::after { left: 65%; }
.hero-divider {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: rgba(255, 255, 255, 0.25); z-index: 6;
}
.hero-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--pad);
}
.hero-genres {
  font-size: var(--text-caption); letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92); margin-bottom: var(--s4);
}
.hero-title { line-height: 0; }
.hero-logo {
  width: clamp(280px, 74vw, 760px); height: auto; display: block; margin-inline: auto;
  /* soft shadow for legibility over the gold band — drop-shadow never alters the
     logo's own pixels (the pink stays #FF2E93) */
  filter: drop-shadow(0 4px 26px rgba(0, 0, 0, 0.38));
}
.hero-tagline {
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  margin-top: var(--s6); color: rgba(255, 255, 255, 0.9); max-width: 34ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: center; margin-top: var(--s10); }
.hero .btn-secondary { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.55); }
.hero .btn-secondary:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, 0.1); }
.hero-labels {
  position: absolute; bottom: 42px; width: 100%; z-index: 5;
  display: flex; justify-content: space-between; padding: 0 clamp(16px, 4vw, 50px);
}
.hero-labels span {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85;
}
.scroll-cue {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.6); z-index: 6;
}

/* ---------- next event card ---------- */
.next-event-wrap { margin-top: calc(-1 * var(--s16)); position: relative; z-index: 10; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--s8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
:root[data-theme="day"] .card { box-shadow: 0 8px 24px rgba(10, 10, 10, 0.12); }
.card-kicker {
  font-size: var(--text-caption); letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--accent-text); margin-bottom: var(--s6);
}
.next-event-body { display: flex; gap: var(--s8); align-items: center; }
.date-block { display: grid; justify-items: center; line-height: 1; min-width: 58px; }
.date-block .dow { font-size: var(--text-caption); text-transform: uppercase; color: var(--text-muted); }
.date-block .day { font-size: clamp(2.5rem, 2rem + 2vw, 3.6rem); margin: 2px 0; }
.date-block .mon { font-size: var(--text-caption); text-transform: uppercase; color: var(--accent-text); }
.event-title { font-size: 1.06rem; font-weight: 600; line-height: 1.3; }
.venue {
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
  font-size: var(--text-sm); color: var(--text-secondary);
}
.venue .icon { color: var(--accent-text); }
.city { color: var(--text-muted); }
.next-event-tag { margin-top: var(--s3); }
.next-event-actions { display: flex; flex-wrap: wrap; gap: var(--s4); margin-top: var(--s8); }

/* status tags */
.tag {
  display: inline-block; font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.tag-warning { background: var(--warning-tint); color: var(--warning-text); }
.tag-gold { background: var(--success-tint); color: var(--success-text); }
.tag-muted { background: var(--surface-raised); color: var(--text-muted); }
.event-tags { margin-top: var(--s3); }

/* ---------- events ---------- */
.section-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s8);
  justify-content: space-between; margin-bottom: var(--s10);
}
.section-head .section-title { margin-bottom: 0; }
.events-tools { display: flex; align-items: center; gap: var(--s6); }
.seg {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px; padding: 3px;
}
.seg-opt {
  font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  background: none; border: 0; border-radius: 999px; padding: 7px 16px; cursor: pointer;
}
.seg-opt.is-active { background: var(--accent); color: #0A0A0A; }
.date-count { font-size: var(--text-caption); color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.event-list { list-style: none; border-top: 1px solid var(--border); }
.event-row {
  display: grid; grid-template-columns: 62px 1fr; gap: var(--s3) var(--s8);
  align-items: center; padding-block: var(--s8);
  border-bottom: 1px solid var(--border);
}
.event-row .date-block { align-self: start; }
.event-row .event-title { font-size: 1.13rem; }
.event-info .venue { flex-wrap: wrap; }
.event-status-tag { margin-top: var(--s3); }
.event-action-wrap { grid-column: 2; }
.event-row[hidden] { display: none; }

.events-empty { padding-block: var(--s12); color: var(--text-muted); font-size: var(--text-sm); }
.events-empty a { color: var(--accent-text); }

.promo-band {
  margin-top: var(--s16); padding: var(--s12) var(--s8);
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
}
.promo-title { font-size: clamp(1.75rem, 1.4rem + 2vw, 2.5rem); line-height: 0.95; margin-bottom: var(--s4); }
.promo-copy { color: var(--text-secondary); max-width: 52ch; margin-bottom: var(--s8); }

/* ---------- mixes ---------- */
.mix-grid { display: grid; gap: var(--s10); }
.mix-card { min-width: 0; }
.facade {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius-media); background: var(--surface);
  border: 1px solid var(--border); text-decoration: none; color: #FFFFFF;
}
.facade img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.82; transition: opacity 0.2s ease, transform 0.4s ease;
}
.facade:hover img { opacity: 1; transform: scale(1.03); }
.facade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 9, 0.72), rgba(10, 8, 9, 0.18) 42%, transparent 70%);
}
.facade-play {
  position: relative; z-index: 2; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 10, 10, 0.55); border: 1px solid var(--accent);
  color: var(--accent); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.facade-play svg { width: 26px; height: 26px; margin-left: 3px; }
.facade:hover .facade-play { transform: scale(1.08); background: var(--accent); color: #0A0A0A; }
.facade-note {
  position: absolute; z-index: 2; bottom: 12px; left: 14px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.facade-portrait { aspect-ratio: 9 / 14; max-height: 560px; }
.facade-portrait img { object-position: center; }
/* once the real player is swapped in, drop the decorative overlay + border so
   every control (play, seek, share) is clickable */
.facade.is-loaded { aspect-ratio: auto; border: 0; background: transparent; }
.facade.is-loaded::after { display: none; }
.facade iframe, .embed-frame { border: 0; width: 100%; display: block; position: relative; z-index: 3; }

.facade-sc {
  aspect-ratio: 21 / 9; flex-direction: column; gap: var(--s4);
  background:
    radial-gradient(120% 160% at 85% 110%, rgba(255, 46, 147, 0.4), transparent 60%),
    var(--surface);
}
.sc-label { font-size: clamp(1.5rem, 1.2rem + 2vw, 2.2rem); letter-spacing: 0.04em; z-index: 2; }
/* single SoundCloud track inside the normal grid — same box as the video cards */
.facade-sc-track { aspect-ratio: 16 / 9; }
.facade-sc-track .sc-label {
  font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem);
  text-align: center; padding: 0 var(--s6);
}
.mix-meta { padding-top: var(--s4); }
.mix-kicker {
  font-size: var(--text-caption); letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--accent-text);
}
.mix-title { font-size: 1.05rem; font-weight: 600; margin-top: 4px; line-height: 1.35; }
.mix-sub { font-size: var(--text-caption); color: var(--text-muted); margin-top: 3px; letter-spacing: 0.04em; }

.social-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: var(--s4) var(--s10);
  margin-top: var(--s16); padding-top: var(--s8); border-top: 1px solid var(--border);
}
.social-row a {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--text-secondary); font-size: var(--text-sm); padding-block: 6px;
}
.social-row a:hover { color: var(--accent-text); }

/* ---------- about ---------- */
.about-grid { display: grid; gap: var(--s10); }
.media {
  position: relative; overflow: hidden; border-radius: var(--radius-media);
  background: var(--surface); border: 1px solid var(--border);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media-portrait { aspect-ratio: 4 / 5; max-width: 480px; }
.about-copy p:not(.eyebrow) { color: var(--text-secondary); max-width: 58ch; margin-bottom: var(--s6); }
.about-copy .btn { margin-top: var(--s4); }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: var(--s4); grid-template-columns: 1fr 1fr; }
.gallery .media { border: 0; }
.g-wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.g-tall { aspect-ratio: 4 / 5; }
.gallery .g-wide:first-child img { object-position: 50% 62%; }
.gallery .g-tall:nth-child(2) img { object-position: 50% 25%; }
.gallery .g-tall:nth-child(3) img { object-position: 50% 30%; }

/* ---------- closer ---------- */
.closer {
  position: relative; min-height: 78svh; overflow: hidden; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(180deg, #0A0A0A 0%, var(--field) 40%, var(--accent) 100%);
  padding: var(--s32) var(--pad);
}
.closer-sun {
  position: absolute; bottom: -12%; left: 50%; transform: translateX(-50%);
  width: clamp(280px, 55vw, 520px); height: clamp(280px, 55vw, 520px); border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, #FFE9B0, #FFD166 35%, #FF7A45 65%, #FF2E93 100%);
  opacity: 0.9;
}
.closer-content { position: relative; z-index: 5; max-width: 720px; }
.closer-eyebrow {
  font-size: var(--text-label); letter-spacing: var(--tracking-label);
  text-transform: uppercase; opacity: 0.85; margin-bottom: var(--s8);
}
.closer-title {
  font-size: clamp(2.6rem, 1.8rem + 6vw, 5.25rem); line-height: 0.95;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); text-wrap: balance;
}
.closer-tagline { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: var(--s8); opacity: 0.9; }
.closer-ctas { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: center; margin-top: var(--s10); }

/* ---------- booking ---------- */
.booking-grid { display: grid; gap: var(--s16); }
.booking-ctas { display: flex; flex-wrap: wrap; gap: var(--s4); }
.booking-note { margin-top: var(--s8); font-size: var(--text-sm); color: var(--text-muted); letter-spacing: 0.06em; }
.booking-aside { border-top: 1px solid var(--border); }
.aside-block { padding-block: var(--s8); border-bottom: 1px solid var(--border); }
.aside-title {
  font-size: var(--text-caption); letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--accent-text); margin-bottom: var(--s4);
}
.aside-copy { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
.booking-aside details { border-top: 1px solid var(--border); }
.booking-aside details:first-of-type { border-top: 0; }
.booking-aside summary {
  cursor: pointer; font-size: var(--text-sm); font-weight: 500; padding-block: var(--s4);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.booking-aside summary::-webkit-details-marker { display: none; }
.booking-aside summary::after { content: "+"; font-family: var(--font-mono); color: var(--accent-text); }
.booking-aside details[open] summary::after { content: "–"; }
.booking-aside details p { font-size: var(--text-sm); color: var(--text-secondary); padding-bottom: var(--s6); max-width: 44ch; }

.input {
  width: 100%; background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: var(--text-sm); padding: 11px 12px;
}
.input:focus-visible { outline: 2px solid var(--focus); outline-offset: 1px; border-color: transparent; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding-block: var(--s20) var(--s10); }
.footer-grid { display: grid; gap: var(--s12); }
.footer-brand .logo-img { width: 188px; }
.footer-genres { font-size: var(--text-caption); color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: var(--s4); }
.footer-social { list-style: none; display: flex; gap: var(--s6); margin-top: var(--s8); }
.footer-social a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%; color: var(--text-secondary);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.footer-social a:hover { color: var(--accent-text); border-color: var(--border-strong); }
.footer-nav ul { list-style: none; }
.footer-nav a {
  display: inline-block; padding-block: 5px; text-decoration: none;
  color: var(--text-secondary); font-size: var(--text-sm);
}
.footer-nav a:hover { color: var(--accent-text); }
.footer-mail { color: var(--text); font-size: var(--text-sm); text-decoration-color: var(--accent); }
.footer-base { font-size: var(--text-caption); color: var(--text-muted); margin-top: var(--s3); letter-spacing: 0.1em; text-transform: uppercase; }
.newsletter { margin-top: var(--s10); display: grid; gap: var(--s3); max-width: 320px; }
.nl-note { font-size: var(--text-caption); color: var(--text-muted); }
/* honeypot: fora da tela para gente, presente no DOM para robô */
.nl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.nl-status { font-size: var(--text-caption); color: var(--text-muted); min-height: 1.2em; }
.nl-status.is-success { color: var(--success-text); }  /* dourado — verde é proibido */
.nl-status.is-error { color: var(--warning-text); }
/* Contraste conferido nos dois temas: Night 15.8:1 / 11.7:1 · Day 5.8:1 / 5.8:1
   (mínimo AA para texto pequeno = 4.5:1). */
.newsletter button[disabled] { opacity: 0.55; cursor: default; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s8); justify-content: space-between;
  margin-top: var(--s16); padding-top: var(--s8); border-top: 1px solid var(--border);
}
.footer-legal p { font-size: var(--text-caption); color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-tag { color: var(--accent-text); }

/* ---------- mobile nav ---------- */
@media (max-width: 767px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed; inset: 0; z-index: 210; display: none;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: var(--s8); padding: var(--pad); background: var(--bg);
  }
  .menu-open .nav { display: flex; }
  .nav a:not(.nav-cta) {
    font-family: var(--font-display); font-size: 2.6rem; letter-spacing: 0.03em;
    text-transform: none; color: var(--text);
  }
  .nav .nav-cta { margin-top: var(--s6); }
  .menu-open .site-header { background: var(--bg); }
  .theme-toggle { margin-right: 2px; }
  .next-event-body { flex-direction: row; align-items: flex-start; }
}

/* ---------- ≥768px ---------- */
@media (min-width: 768px) {
  :root { --pad: 48px; --header-h: 68px; }
  .section { padding-block: var(--s32); }

  .next-event-wrap { margin-top: calc(-1 * var(--s24)); }
  .next-event { display: flex; align-items: center; justify-content: space-between; gap: var(--s12); padding: var(--s10) var(--s12); }
  .next-event .card-kicker { margin: 0; writing-mode: initial; min-width: 92px; }
  .next-event-body { flex: 1; }
  .next-event-actions { margin: 0; }

  .event-row { grid-template-columns: 96px 1fr auto; }
  .event-action-wrap { grid-column: auto; }
  .date-block { min-width: 84px; }

  .mix-grid { grid-template-columns: repeat(6, 1fr); gap: var(--s10) var(--s8); }
  .mix-featured { grid-column: 1 / 3; grid-row: 1 / 3; }
  .mix-card:not(.mix-featured):not(.mix-soundcloud) { grid-column: span 2; }
  .mix-soundcloud { grid-column: 1 / -1; }
  .facade-portrait { max-height: none; height: 100%; }
  .mix-featured .facade-portrait { aspect-ratio: auto; min-height: 520px; }

  .about-grid { grid-template-columns: 5fr 7fr; align-items: center; gap: var(--s24); }

  .gallery { grid-template-columns: repeat(12, 1fr); gap: var(--s6); }
  .gallery .g-wide:first-child { grid-column: 1 / 8; }
  .gallery .g-tall:nth-child(2) { grid-column: 8 / 13; aspect-ratio: auto; }
  .gallery .g-tall:nth-child(3) { grid-column: 1 / 6; }
  .gallery .g-wide:last-child { grid-column: 6 / 13; aspect-ratio: auto; }

  .booking-grid { grid-template-columns: 7fr 5fr; gap: var(--s24); }
  .booking-aside { border-top: 0; }
  .booking-aside .aside-block:first-child { padding-top: 0; }

  .footer-grid { grid-template-columns: 2fr 1fr 1.4fr; }
}

/* ---------- no-JS fallbacks ---------- */
.no-js .events-tools { display: none; }
.no-js .theme-toggle { display: none; }
.no-js .facade-note { display: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .horizon-scroll { display: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
