/* ===============================
   ALL MUSIC FESTIVAL — CINEMATIC / FESTIVAL VIBES
   =============================== */

:root {
  --bg-dark: #07070a;
  --bg-deep: #050508;
  --bg-alt: #0e0e14;
  --bg-panel: rgba(255, 255, 255, 0.05);
  --bg-panel-strong: rgba(255, 255, 255, 0.08);

  --sunset-1: #ffb000;
  --sunset-2: #ff7a18;
  --sunset-3: #ff5a00;
  --sunset-4: #ff006a;
  --sunset-5: #9b5cff;
  --sunset-6: #7a00ff;

  --primary: #ffb000;
  --primary-strong: #ffd15c;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.75);
  --muted-soft: rgba(255, 255, 255, 0.64);

  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-strong: rgba(255, 176, 0, 0.34);

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(255, 122, 24, 0.18);

  --radius: 18px;
  --radius-lg: 24px;
  --container: 1120px;
  --nav-height: 80px;
}

/* ===============================
   RESET
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 900px at 50% -10%, rgba(255, 176, 0, 0.22), transparent 60%),
    radial-gradient(900px 700px at 15% 10%, rgba(255, 0, 106, 0.15), transparent 55%),
    radial-gradient(900px 700px at 85% 15%, rgba(122, 0, 255, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg-dark), var(--bg-deep) 55%, var(--bg-deep));
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
iframe,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ===============================
   GLOBAL DECOR
   =============================== */

::selection {
  background: rgba(255, 176, 0, 0.28);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 140, 0, 0.08), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 0, 106, 0.07), transparent 18%),
    radial-gradient(circle at 50% 90%, rgba(122, 0, 255, 0.06), transparent 24%);
  pointer-events: none;
  z-index: -10;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -9;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ===============================
   NAV
   =============================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-height);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: rgba(5, 5, 8, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav__brand {
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 0;
}

.nav__links a {
  margin-left: 18px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}

.nav__links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--sunset-1),
    var(--sunset-2),
    var(--sunset-4),
    var(--sunset-5)
  );
  transition: width 0.25s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

/* ===============================
   HERO
   =============================== */

.hero {
  min-height: 100vh;
  padding: 118px 20px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 900px at 50% 20%, rgba(255, 176, 0, 0.25), transparent 60%),
    radial-gradient(900px 700px at 20% 10%, rgba(255, 0, 106, 0.18), transparent 55%),
    radial-gradient(900px 700px at 80% 15%, rgba(122, 0, 255, 0.16), transparent 55%),
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.82)),
    url("./assets/flyer.jpg") center center / cover no-repeat;
  filter: saturate(1.15) contrast(1.06);
  transform: scale(1.03);
  z-index: -4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 150, 40, 0.15), transparent 40%),
    linear-gradient(to bottom, rgba(7, 7, 10, 0.08), rgba(7, 7, 10, 0.7) 55%, rgba(7, 7, 10, 0.94));
  pointer-events: none;
  z-index: -3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 180deg,
    rgba(255, 176, 0, 0),
    rgba(255, 176, 0, 0.14),
    rgba(255, 122, 24, 0.16),
    rgba(255, 0, 106, 0.14),
    rgba(122, 0, 255, 0.14),
    rgba(255, 176, 0, 0)
  );
  filter: blur(50px);
  opacity: 0.72;
  animation: swirl 15s linear infinite;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

@keyframes swirl {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.hero__content {
  width: min(var(--container), 100%);
  display: block;
}

.hero__left {
  max-width: 760px;
  padding: 28px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.14);
  border: 1px solid rgba(255, 176, 0, 0.35);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: var(--shadow-soft);
}

.pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--sunset-1));
  box-shadow: 0 0 18px rgba(255, 176, 0, 0.75);
}

.eyebrow {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 900;
}

.title {
  margin-top: 14px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  font-weight: 1000;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #ffffff,
    rgba(255, 255, 255, 0.92),
    var(--sunset-1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(255, 176, 0, 0.18);
  max-width: 10ch;
}

.subtitle {
  margin-top: 14px;
  font-size: 1.12rem;
  color: var(--muted);
}

.subtitle strong {
  color: #fff;
}

.hero__description {
  margin-top: 16px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  min-height: 48px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(
    90deg,
    var(--sunset-1),
    var(--sunset-2),
    var(--sunset-3)
  );
  color: #120b00;
  box-shadow: 0 18px 60px rgba(255, 90, 0, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 24px 90px rgba(255, 90, 0, 0.34);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.btn--ghost:hover {
  border-color: rgba(255, 176, 0, 0.35);
  box-shadow: 0 0 0 6px rgba(255, 176, 0, 0.08);
  transform: translateY(-1px);
}

.quick {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 540px;
}

.quick li {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.quick--stack {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.fineprint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===============================
   SECTIONS
   =============================== */

.section {
  position: relative;
  padding: 82px 20px;
}

.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__title {
  text-align: center;
  font-size: 1.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 20px rgba(255, 176, 0, 0.08);
}

/* ===============================
   GRID + CARDS
   =============================== */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at 20% 10%, rgba(255, 176, 0, 0.08), transparent 55%);
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
  background: linear-gradient(
    135deg,
    rgba(255, 176, 0, 0.35),
    rgba(255, 0, 106, 0.15),
    rgba(122, 0, 255, 0.2)
  );
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-strong);
  background: var(--card-strong);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.card:hover::after {
  opacity: 0.26;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.card p {
  color: rgba(255, 255, 255, 0.74);
}

.muted {
  color: rgba(255, 255, 255, 0.68);
}

.link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
}

.link:hover {
  text-decoration: underline;
}

/* ===============================
   MAP
   =============================== */

.card--map {
  padding: 0;
}

.card--map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ===============================
   CALLOUT / PHONE
   =============================== */

.callout {
  display: grid;
  gap: 14px;
  text-align: center;
}

.big {
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: 0.02em;
}

.phone {
  color: var(--sunset-1);
  text-decoration: none;
  text-shadow: 0 0 16px rgba(255, 176, 0, 0.15);
}

.phone:hover {
  text-decoration: underline;
}

/* ===============================
   COMMERCIAL SECTION
   =============================== */

.section--commercial {
  position: relative;
  overflow: hidden;
}

.section--commercial::before {
  content: "";
  position: absolute;
  inset: -15% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 120, 0, 0.12);
  filter: blur(70px);
  pointer-events: none;
}

.section--commercial::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(155, 92, 255, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.commercial-grid {
  align-items: stretch;
}

.commercial-copy h3 {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.commercial-video-card {
  padding: 0;
  overflow: hidden;
}

.video-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  min-height: 100%;
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.12), transparent 35%);
  z-index: 1;
}

.commercial-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: #000;
  object-fit: cover;
}

/* ===============================
   CONTACT / FESTIVAL BOTTOM
   =============================== */

.section--contact-festival {
  position: relative;
  overflow: hidden;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 122, 24, 0.08), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(255, 0, 106, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.section--contact-festival::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 0, 98, 0.12);
  filter: blur(90px);
  pointer-events: none;
}

.section--contact-festival::after {
  content: "";
  position: absolute;
  left: -100px;
  top: 40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 176, 0, 0.1);
  filter: blur(90px);
  pointer-events: none;
}

.festival-band {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 1.8rem;
  background: linear-gradient(
    90deg,
    var(--sunset-2),
    var(--sunset-1),
    var(--sunset-4),
    var(--sunset-5)
  );
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.35);
}

.contact-grid {
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 214, 154, 0.92);
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.card--glow {
  position: relative;
  border: 1px solid rgba(255, 180, 120, 0.16);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card--glow::after {
  opacity: 0.42;
}

.festival-outro {
  margin-top: 1.3rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255, 180, 120, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 160, 70, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.festival-outro__eyebrow {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: rgba(255, 204, 140, 0.92);
  font-weight: 900;
}

.festival-outro h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.festival-outro p {
  max-width: 760px;
  margin-inline: auto;
}

.festival-outro__actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.festival-tags {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.festival-tags span {
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 180, 120, 0.16);
  color: rgba(255, 236, 214, 0.95);
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* ===============================
   FOOTER
   =============================== */

.footer {
  padding: 26px 20px 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
}

.footer--festival {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 3rem 1.25rem 1.5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 128, 0, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 0, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #120b11 0%, #0d0a12 45%, #07070a 100%);
  border-top: 1px solid rgba(255, 180, 120, 0.14);
}

.footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.footer__glow--one {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: -60px;
  background: rgba(255, 136, 0, 0.18);
}

.footer__glow--two {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -20px;
  background: rgba(190, 80, 255, 0.16);
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer__brand h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: #fff;
}

.footer__brand p {
  color: rgba(255, 235, 214, 0.82);
}

.footer__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: rgba(255, 210, 150, 0.92);
  font-weight: 900;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  justify-content: center;
}

.footer__links a {
  color: rgba(255, 241, 228, 0.88);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer__links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 1.75rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 180, 120, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 235, 214, 0.75);
  font-size: 0.95rem;
}

.footer__bottom a {
  color: rgba(255, 220, 180, 0.95);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: #fff;
}

.footer-note {
  text-align: center;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 980px) {
  .hero {
    padding-top: 104px;
  }

  .hero__left {
    max-width: 100%;
  }

  .title {
    max-width: 100%;
  }

  .grid,
  .grid--2,
  .grid--3,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    text-align: center;
  }

  .footer__cta {
    display: flex;
    justify-content: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .nav {
    padding: 14px 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 16px;
    margin-top: 8px;
  }

  .nav__links a {
    margin-left: 0;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 92vh;
    padding: 146px 16px 52px;
  }

  .section,
  .section--contact-festival {
    padding: 66px 16px;
  }

  .section__title {
    font-size: 1.58rem;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .title {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .subtitle,
  .hero__description {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    gap: 10px;
  }

  .quick li,
  .card,
  .festival-outro {
    padding: 18px;
  }

  .card--map iframe {
    height: 280px;
  }

  .commercial-video {
    min-height: 220px;
  }

  .festival-tags {
    gap: 0.55rem;
  }

  .festival-tags span {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   ACCESSIBILITY / MOTION
   =============================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}