:root {
  --bg: #080808;
  --bg2: #0d0d0d;
  --white: #f5f3ef;
  --accent: #ff2d6b;
  --accent-soft: rgba(255,45,107,0.12);
  --muted: rgba(245,243,239,0.45);
  --border: rgba(245,243,239,0.09);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.4s, padding 0.4s;
}
nav.stuck {
  background: rgba(8,8,8,0.96);
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-logo {
  font-family: 'Antonio', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-family: 'Antonio', sans-serif; font-size: 12px;
  font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.nav-podcast { color: #b57bee; }
.nav-links a.nav-podcast:hover { color: #d4a3ff; }
.nav-shop {
  font-family: 'Antonio', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--bg);
  background: var(--white); padding: 10px 22px; text-decoration: none;
  transition: background 0.2s;
}
.nav-shop:hover { background: var(--accent); color: var(--white); }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}
.hero-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #111;
}
.hero-art::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.1) 0%, transparent 40%, rgba(8,8,8,0.88) 85%, #080808 100%),
    linear-gradient(135deg, rgba(255,45,107,0.18) 0%, transparent 55%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,107,0.22) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2; padding: 0 48px 64px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.hero-release { opacity: 0; animation: fadeUp 0.9s ease 0.2s forwards; }
.hero-release-eyebrow {
  font-family: 'Antonio', sans-serif; font-size: 11px;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.hero-release-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(52px, 8vw, 110px); font-weight: 700;
  line-height: 0.9; text-transform: uppercase; margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-meta { opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards; }
.hero-scroll-hint {
  font-family: 'Antonio', sans-serif; font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Antonio', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bg); background: var(--white);
  padding: 14px 32px; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'Antonio', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--border); padding: 13px 26px;
  text-decoration: none; display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-text {
  font-family: 'Antonio', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); background: var(--accent);
  padding: 16px 40px; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-text:hover { background: #ff5588; transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 100px 48px; }
.section-eyebrow {
  font-family: 'Antonio', sans-serif; font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.section-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(36px,5vw,64px); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 52px; line-height: 1;
}

/* ── VIDEO ── */
#video { background: var(--bg); }
.video-container {
  max-width: 900px; aspect-ratio: 16/9;
  border: 1px solid var(--border); overflow: hidden;
}
.video-container iframe { width: 100%; height: 100%; border: none; display: block; }
.video-footer {
  margin-top: 24px; max-width: 900px;
  display: flex; align-items: center; justify-content: space-between;
}
.video-title {
  font-family: 'Antonio', sans-serif; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase;
}
.link-arrow {
  font-family: 'Antonio', sans-serif; font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.link-arrow:hover { color: var(--white); }
.link-arrow::after { content: '→'; }

/* ── TOUR ── */
#tour-preview { border-top: 1px solid var(--border); }

/* Homepage ticker */
.tour-ticker-wrap {
  position: relative;
  overflow: hidden;
  max-height: 330px; /* shows ~4 dates at a time */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.tour-ticker {
  overflow: hidden;
}
.tour-ticker-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.tour-list { display: flex; flex-direction: column; max-width: 900px; }
.tour-list-full { max-width: 900px; }
.tour-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 32px; padding: 22px 48px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: padding-left 0.25s, background 0.2s;
  min-width: 0;
}
.tour-ticker .tour-item { padding-left: 48px; padding-right: 48px; }
.tour-item:hover { padding-left: 60px; background: rgba(255,255,255,0.02); }
.tour-item:hover .tour-cta { color: var(--accent); }
.tour-date {
  font-family: 'Antonio', sans-serif; font-size: 14px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.tour-venue {
  font-family: 'Antonio', sans-serif; font-size: 20px;
  font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 3px;
}
.tour-location { font-size: 13px; color: var(--muted); }
.tour-cta {
  font-family: 'Antonio', sans-serif; font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted); transition: color 0.2s;
}
.tour-cta.sold-out { color: var(--muted); cursor: default; }
.tour-footer { margin-top: 32px; padding: 0 48px; }

/* ── CONNECT ── */
#connect {
  background: #0a0a0a; border-top: 1px solid var(--border);
  text-align: center; padding: 90px 48px;
}
.connect-inner { max-width: 520px; margin: 0 auto; }
.connect-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(255,45,107,0.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.connect-title {
  font-family: 'Antonio', sans-serif; font-size: clamp(30px,4vw,48px);
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.connect-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }

/* ── SIGNUP ── */
#signup {
  border-top: 1px solid var(--border); padding: 90px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.signup-left { max-width: 400px; }
.signup-title {
  font-family: 'Antonio', sans-serif; font-size: clamp(28px,3.5vw,42px);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px;
}
.signup-sub { font-size: 14px; color: var(--muted); }
.signup-form { display: flex; flex: 1; max-width: 480px; min-width: 280px; }
.signup-form input {
  flex: 1; background: #111; border: 1px solid var(--border); border-right: none;
  padding: 16px 20px; font-family: 'Outfit', sans-serif; font-size: 14px;
  color: var(--white); outline: none; transition: border-color 0.2s;
}
.signup-form input::placeholder { color: var(--muted); }
.signup-form input:focus { border-color: rgba(255,255,255,0.25); }
.signup-form button {
  font-family: 'Antonio', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--bg);
  background: var(--white); border: none; padding: 16px 26px;
  cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.signup-form button:hover { background: var(--accent); color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; padding-top: 180px; padding-bottom: 80px; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0) 60%, var(--bg) 100%),
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(255,45,107,0.1) 0%, transparent 70%),
    var(--bg);
}
.page-hero-content {
  position: relative; z-index: 1; padding: 0 48px;
}
.page-hero-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(60px, 10vw, 130px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.9;
}
.page-main { padding-bottom: 80px; }
.page-main section { padding: 60px 48px; border-top: 1px solid var(--border); }
.page-main section:first-child { border-top: none; }

/* ── RELEASES GRID ── */
.releases-section { padding: 60px 48px; border-top: 1px solid var(--border); }
.releases-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px;
}
.release-card { cursor: default; }
.release-art {
  position: relative; aspect-ratio: 1;
  background: #111; overflow: hidden; margin-bottom: 16px;
}
.release-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.release-card:hover .release-art img { transform: scale(1.04); }
.release-art-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,45,107,0.1),#0d0d0d); }
.release-prerelease-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: 'Antonio', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #080808; background: var(--accent);
  padding: 4px 10px;
  pointer-events: none;
}
.release-links-overlay {
  position: absolute; inset: 0; background: rgba(8,8,8,0.85);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity 0.25s;
}
.release-card:hover .release-links-overlay { opacity: 1; }
.stream-link {
  font-family: 'Antonio', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  min-width: 140px; text-align: center;
}
.stream-link:hover { border-color: var(--accent); color: var(--accent); }
.stream-link.spotify:hover { color: #1DB954; border-color: #1DB954; }
.stream-link.apple:hover { color: #fc3c44; border-color: #fc3c44; }
.stream-link.soundcloud:hover { color: #ff5500; border-color: #ff5500; }
.release-type {
  font-family: 'Antonio', sans-serif; font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 4px;
}
.release-title {
  font-family: 'Antonio', sans-serif; font-size: 18px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px;
}
.release-date { font-size: 12px; color: var(--muted); }

/* ── BOOKING PAGE ── */
.booking-agent-section { padding: 60px 48px; }
.booking-agent-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: #0f0f0f; border: 1px solid var(--border); padding: 32px 36px;
  max-width: 640px; flex-wrap: wrap;
}
.agent-name {
  font-family: 'Antonio', sans-serif; font-size: 24px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.agent-email {
  font-size: 14px; color: var(--accent); text-decoration: none; display: block; margin-bottom: 4px;
}
.agent-phone { font-size: 14px; color: var(--muted); }
.booking-form-section { padding: 60px 48px; }
.booking-form { max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-family: 'Antonio', sans-serif; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input, .form-group select, .form-group textarea {
  background: #0f0f0f; border: 1px solid var(--border);
  padding: 14px 16px; font-family: 'Outfit', sans-serif; font-size: 14px;
  color: var(--white); outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
}
.form-group select option { background: #0f0f0f; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,45,107,0.08); border: 1px solid rgba(255,45,107,0.3);
  padding: 24px 28px; max-width: 480px; margin-bottom: 32px;
}
.form-success strong { font-family: 'Antonio', sans-serif; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; }
.form-success p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Antonio', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 11px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.social-links { display: flex; gap: 20px; flex-wrap: wrap; }
.social-links a {
  font-family: 'Antonio', sans-serif; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.social-links a:hover { color: var(--white); }

/* ── PRIDE DATES ── */
@keyframes prideShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tour-item.pride-date {
  position: relative;
  border-bottom-color: transparent;
}
.tour-item.pride-date::before {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(90deg,
      #ff6b6b, #ffa550, #ffe566, #66d97a, #4db8ff, #b46fff, #ff6b9d
    ) border-box;
  background-size: 300% 300%;
  animation: prideShimmer 5s ease infinite;
  pointer-events: none;
  z-index: 0;
}
.tour-item.pride-date > * { position: relative; z-index: 1; }

.pride-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: linear-gradient(90deg,
    rgba(255,107,107,0.12), rgba(78,164,255,0.12), rgba(180,111,255,0.12)
  );
  border: 1px solid transparent;
  background-clip: padding-box;
  color: #d4b8ff;
  white-space: nowrap;
}

/* ── RESIDENCIES PAGE ── */
.residencies-section {
  padding: 0 0 80px;
}

.residency-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.residency-card:hover { background: rgba(255,255,255,0.015); }

.residency-image-col { padding: 60px 0 60px 48px; }

.residency-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.residency-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.residency-card:hover .residency-image img { transform: scale(1.03); }
.residency-image-placeholder {
  background: linear-gradient(135deg, rgba(255,45,107,0.08), #0d0d0d);
}

.residency-content-col {
  padding: 60px 48px;
}

.residency-venue {
  font-family: 'Antonio', sans-serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}

.residency-name {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(32px, 4vw, 54px); font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  line-height: 0.95; margin-bottom: 20px;
}

.residency-desc {
  font-size: 14px; color: var(--muted); line-height: 1.8;
  max-width: 520px; margin-bottom: 32px;
}

.residency-dates { margin-bottom: 32px; }

.residency-dates-label {
  font-family: 'Antonio', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}

.residency-date-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.residency-date-item {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  position: relative;
}
.residency-date-item:last-child { border-bottom: none; }

/* pride treatment on residency date rows */
.residency-date-item.pride-date {
  border-bottom-color: transparent;
}
.residency-date-item.pride-date::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    #ff6b6b, #ffa550, #ffe566, #66d97a, #4db8ff, #b46fff, #ff6b9d
  );
  background-size: 300% 100%;
  animation: prideShimmer 5s ease infinite;
}

.residency-date-date {
  font-family: 'Antonio', sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.residency-date-sep { color: var(--border); }
.residency-date-venue { color: var(--muted); flex: 1; }

.residency-ticket-link {
  font-family: 'Antonio', sans-serif; font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.residency-ticket-link:hover { color: var(--white); }

.sold-out-badge {
  font-family: 'Antonio', sans-serif; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}

.residency-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-outline {
  font-family: 'Antonio', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25); padding: 12px 24px;
  display: inline-block; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── UTILS ── */
.empty-state { font-size: 14px; color: var(--muted); padding: 40px 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .residency-card { grid-template-columns: 1fr; }
  .residency-image-col { padding: 40px 24px 0; }
  .residency-content-col { padding: 32px 24px 48px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.stuck { padding: 14px 24px; }
  .nav-links { gap: 16px; }
  .nav-links li:nth-child(2), .nav-links li:nth-child(4) { display: none; }
  section, .page-hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-content { padding: 0 24px 48px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .tour-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .tour-cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  #signup { flex-direction: column; padding: 72px 24px; }
  footer { padding: 24px; flex-direction: column; gap: 16px; }
  .releases-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .booking-agent-card { flex-direction: column; }
}
