/* ================================================
   LITTLE TOWN FESTIVAL 2026 — 7ème édition
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@700;800;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ---- Palette 2026 ---- */
:root {
  --rust:       #893515;
  --terra:      #A35C40;
  --blue:       #315D79;
  --navy:       #1E3447;
  --cream:      #F5ECD4;
  --cream-dark: #E8D9B5;

  --text:       var(--navy);
  --text-muted: #6b5847;
  --nav-h:      80px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

/* ---- Labels & titles ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.875rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--terra);
  opacity: 0.3;
  max-width: 60px;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--cream); }
.section-title--rust  { color: var(--rust); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  color: var(--rust);
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--rust); color: var(--cream); border-color: var(--rust); }

.btn--solid { background: var(--rust); color: var(--cream); border-color: var(--rust); }
.btn--solid:hover { background: transparent; color: var(--rust); }

.btn--blue { color: var(--blue); border-color: var(--blue); }
.btn--blue:hover { background: var(--blue); color: var(--cream); }

.btn--navy { color: var(--navy); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy); color: var(--cream); }

.btn--cream { color: var(--cream); border-color: rgba(245,236,212,0.6); }
.btn--cream:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* ---- Fade-in ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(245, 236, 212, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 236, 212, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(137, 53, 21, 0.12);
}
.nav.scrolled .nav__burger span { background: var(--navy); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--rust);
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links {
  gap: 2.5rem;
}
.nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(30,52,71,0.65);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--rust); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid rgba(137,53,21,0.15);
  padding: 2rem clamp(1.5rem, 5vw, 3.5rem) 2.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--rust); }

/* ================================================
   HERO — Split layout, affiche plein cadre
   ================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 3.5rem);
  background: var(--navy);
  position: relative;
}

/* Subtle vertical line separator */
.hero__left::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(245,236,212,0.12) 30%, rgba(245,236,212,0.12) 70%, transparent);
}

.hero__kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__kicker::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--terra);
  display: block;
}

.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero__title .highlight {
  color: var(--cream);
  display: block;
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: var(--rust);
  margin: 2rem 0;
}

.hero__date {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero__meta {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero__cta {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Affiche : toujours visible entièrement */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 2rem;
  overflow: hidden;
}

.hero__poster {
  display: block;
  /* Limité par la hauteur du viewport moins la nav */
  max-height: calc(100vh - var(--nav-h) - 4rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ================================================
   MARQUEE BAND
   ================================================ */
.marquee-band {
  background: var(--navy);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-band__track {
  display: inline-flex;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
}

.marquee-band__item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.55);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-band__item .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   VIDEO HERO
   ================================================ */
.video-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 52, 71, 0.35) 0%,
    rgba(30, 52, 71, 0.55) 60%,
    rgba(30, 52, 71, 0.85) 100%
  );
  z-index: 1;
}

.video-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

.video-hero__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.video-hero__label::before,
.video-hero__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--terra);
  opacity: 0.6;
}

.video-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.video-hero__sound {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245,236,212,0.3);
  background: rgba(30,52,71,0.5);
  backdrop-filter: blur(8px);
  color: rgba(245,236,212,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 0;
}
.video-hero__sound:hover {
  border-color: var(--terra);
  color: var(--terra);
}

/* Son coupé par défaut : montre l'icône muted, cache sound */
.video-hero__sound .icon-sound { display: none; }
.video-hero__sound .icon-muted { display: block; }
.video-hero__sound.active .icon-sound { display: block; }
.video-hero__sound.active .icon-muted { display: none; }

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about__text .section-title { margin-bottom: 1.5rem; }

.about__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 440px;
}

.about__stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(137,53,21,0.15);
}

.about__stat {
  flex: 1;
  padding: 1.5rem 0 0;
  border-right: 1px solid rgba(137,53,21,0.15);
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.about__stat:first-child { padding-left: 0; }
.about__stat:last-child  { border-right: none; }

.about__stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--rust);
  line-height: 1;
  display: block;
}
.about__stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

.about__image {
  position: relative;
}
.about__image img {
  width: 100%;
  object-fit: contain;
}

/* Offset frame */
.about__image::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(137,53,21,0.2);
  z-index: -1;
}

/* ================================================
   ARTISTS
   ================================================ */
.artists {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--cream-dark);
  position: relative;
}

.artists .section-label { color: var(--terra); }

.section-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.artists__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 5vw, 6rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

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

.artist-card {
  border: 1px solid rgba(245,236,212,0.07);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.artist-row {
  scroll-margin-top: 80px;
}

.artist-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.55s var(--ease);
}
.artist-card:hover .artist-card__photo { transform: scale(1.06); }

.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,52,71,0.05) 0%,
    rgba(30,52,71,0.45) 45%,
    rgba(30,52,71,0.92) 100%
  );
  z-index: 1;
  transition: opacity 0.3s var(--ease);
}
.artist-card:hover::before { opacity: 0.82; }

.artist-card__body {
  position: relative;
  z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.artist-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--terra);
  display: block;
  margin-bottom: 0.4rem;
}
.artist-card__name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.1;
  color: var(--cream);
}
/* ================================================
   SCHEDULE
   ================================================ */
.schedule {
  margin-top: 4rem;
  border-top: 1px solid rgba(245,236,212,0.1);
  padding-top: 3rem;
}

.schedule__note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.25);
  margin-bottom: 2rem;
}

.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule__item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(245,236,212,0.06);
  transition: background 0.2s var(--ease);
}
.schedule__item:first-child { border-top: 1px solid rgba(245,236,212,0.06); }

.schedule__time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--terra);
  white-space: nowrap;
}

.schedule__line {
  height: 1px;
  background: rgba(245,236,212,0.08);
}

.schedule__name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: var(--cream);
  text-align: right;
}

@media (max-width: 580px) {
  .schedule__item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .schedule__line { display: none; }
  .schedule__name { text-align: left; font-size: 1rem; }
}

.artist-card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.25);
  margin-top: 1rem;
}

/* ================================================
   VOLUNTEER
   ================================================ */
.volunteer {
  padding: clamp(5rem, 10vh, 7rem) 0;
  background: var(--rust);
  position: relative;
  overflow: hidden;
}

/* Large background number */
.volunteer::before {
  content: '2026';
  position: absolute;
  right: -0.05em; bottom: -0.2em;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(10rem, 22vw, 20rem);
  color: rgba(245,236,212,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.volunteer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.volunteer__heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.volunteer__text {
  font-size: 0.95rem;
  color: rgba(245,236,212,0.7);
  max-width: 520px;
  line-height: 1.85;
}
.volunteer__cta { flex-shrink: 0; }

/* ================================================
   PARTNERS
   ================================================ */
.partners {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--cream-dark);
}

.partners__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(137,53,21,0.12);
}

.partner-logo {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-right: 1px solid rgba(137,53,21,0.12);
  border-bottom: 1px solid rgba(137,53,21,0.12);
  transition: background 0.25s var(--ease);
}
.partner-logo:hover { background: rgba(137,53,21,0.04); }

.partner-logo img {
  max-height: 84px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: sepia(0.2) saturate(0.6);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s;
}
.partner-logo:hover img { filter: none; opacity: 1; }

.partners__cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.partners__cta-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ================================================
   ACCESS
   ================================================ */
.access {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--cream);
}

.access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.access__text .section-title { margin-bottom: 1.5rem; }

.access__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(137,53,21,0.12);
}
.access__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(137,53,21,0.12);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.access__info-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

.access__map-wrap { display: flex; flex-direction: column; gap: 1rem; }
.access__plan img { width: 100%; border: 1px solid rgba(137,53,21,0.15); }
.access__gmap {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid rgba(137,53,21,0.15);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
  padding-top: clamp(3rem, 6vh, 4rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,236,212,0.08);
  align-items: start;
}

.footer__name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: 0.8;
}

.footer__col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.3);
  margin-bottom: 1rem;
}

.footer__contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__contact a,
.footer__contact span {
  font-size: 0.875rem;
  color: rgba(245,236,212,0.5);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--terra); }

.footer__social { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,236,212,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,236,212,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--terra); color: var(--terra); }

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.18);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3.5rem;
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(137,53,21,0.12);
}

.contact-hero .section-title {
  font-size: clamp(3rem, 8vw, 6rem);
}

.contact-body {
  padding: clamp(4rem, 9vh, 7rem) 0;
  background: var(--cream);
}

.contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-reasons { display: flex; flex-direction: column; gap: 0; }

.contact-reason {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(137,53,21,0.12);
}
.contact-reason:first-child { border-top: 1px solid rgba(137,53,21,0.12); }

.contact-reason__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--rust);
  margin-bottom: 0.6rem;
}
.contact-reason__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.contact-direct {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--navy);
}
.contact-direct__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
  display: block;
}
.contact-direct__email {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--cream);
}
.contact-direct__address {
  display: block;
  font-size: 0.8rem;
  color: rgba(245,236,212,0.4);
  margin-top: 0.4rem;
}

/* Form */
.contact-form__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--cream-dark);
  border: none;
  border-bottom: 2px solid rgba(137,53,21,0.25);
  padding: 0.75rem 0;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  background: transparent;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--rust); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(30,52,71,0.3); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--cream);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--rust); }

.form-notice {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(137,53,21,0.06);
  border-left: 3px solid var(--rust);
  margin-top: 1rem;
}
.form-success.visible { display: block; }
.form-success p {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--rust);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left { padding-bottom: 3rem; }
  .hero__left::after { display: none; }
  .hero__right {
    padding: 2rem clamp(1.5rem, 5vw, 3.5rem) 3rem;
  }
  .hero__poster {
    max-height: 70vw;
    width: auto;
    max-width: 320px;
    margin: 0 auto;
  }

  .about__inner  { grid-template-columns: 1fr; }
  .about__image  { order: -1; }
  .about__image::before { display: none; }
  .about__stats  { flex-wrap: wrap; }

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

  .volunteer__inner { grid-template-columns: 1fr; gap: 2rem; }

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

  .access__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .contact-body__inner { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .artists__grid  { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner  { grid-template-columns: 1fr; }
  .hero__cta      { flex-direction: column; align-items: flex-start; }
  .partner-logo   { min-height: 80px; padding: 0.75rem; overflow: hidden; }
  .partner-logo img { max-height: 48px; max-width: 100%; width: auto; }
}
