/* =========================================================
   GOOGLE FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400&display=swap');

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --color-bg: #000;
  --color-text: #fff;
  --color-muted: rgba(255,255,255,0.45);
  --color-hover: rgba(255,255,255,0.75);
  --letter-spacing-wide: 0.28em;
  --letter-spacing-xl: 0.4em;
  --nav-height: 70px;
  --transition: 0.3s ease;
  /* Couverture « Pourquoi… » etc. : fond gris-bleu → proche noir */
  --photo-filter-crush-cool-bg: brightness(0.78) saturate(0.72) contrast(1.14);
  --photo-filter-crush-cool-bg-hover: brightness(0.86) saturate(0.82) contrast(1.1);
}

/* =========================================================
   INNER PAGE BACKGROUND IMAGE (very low opacity texture)
   ========================================================= */

/* html holds the black canvas; inner-page body becomes transparent
   so the ::before pseudo-element is visible between them */
html { background: #000; }

body.inner-page {
  background: transparent;
  isolation: isolate; /* creates own stacking context */
}

body.inner-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--page-bg-img, none) center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

/* Fond page basé sur la couverture Neil astronaute (sujet à droite) */
body.inner-page.page-bg-neil-astronaut::before {
  background-position: 72% center;
}

/* Neil — même cadrage sur fiche / grille spectacles */
.img-neil-astronaut-cover {
  object-position: 72% center;
}
.show-card.show-card--neil img {
  object-position: 72% center;
}

/* PDF / download link */
.dl-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  transition: color var(--transition), border-color var(--transition);
  margin-top: 8px;
  text-decoration: none;
}
.dl-link:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
  opacity: 1;
}
.dl-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   PAGE TRANSITION
   ========================================================= */
body {
  opacity: 0;
  animation: fadeInPage 0.6s ease forwards;
}

@keyframes fadeInPage {
  to { opacity: 1; }
}

body.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover { opacity: 0.6; }

ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--transition), border-color var(--transition);
}

.nav--solid {
  background: var(--color-bg);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 36px;
}
.nav__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-text);
  transition: width var(--transition);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* =========================================================
   PAGE WRAPPER
   ========================================================= */
.page {
  padding-top: calc(var(--nav-height) + 70px);
  padding-bottom: 140px;
  min-height: 100vh;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =========================================================
   HEADINGS
   ========================================================= */
.page-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  margin-bottom: 80px;
  line-height: 1.15;
}
.section-heading {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 36px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  text-transform: uppercase;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 32px; align-items: center; }
.footer__links a { color: var(--color-muted); }
.footer__links a:hover { color: var(--color-text); opacity: 1; }
.footer__social { display: flex; gap: 20px; align-items: center; }
.footer__social a { color: var(--color-muted); }
.footer__social a:hover { color: var(--color-text); opacity: 1; }
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }

/* =========================================================
   SPECTACLES — VISUAL GRID
   ========================================================= */
.spectacles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.show-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
  cursor: pointer;
  display: block;
}

.show-card--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.show-card--upcoming {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease, opacity 0.4s ease;
  opacity: 0.8;
}

.show-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* Couvertures à fond gris-bleu / non noir : tirer vers le noir du site tout en gardant le sujet lisible */
.show-card.show-card--bg-crush-black {
  background: #000;
}
.show-card.show-card--bg-crush-black img {
  opacity: 1;
  filter: var(--photo-filter-crush-cool-bg);
}
.show-card.show-card--bg-crush-black:hover img {
  filter: var(--photo-filter-crush-cool-bg-hover);
}

.show-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: background 0.4s ease;
}

.show-card:hover .show-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.show-card__title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}

.show-card__meta {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.show-card__upcoming-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* =========================================================
   COMPAGNIE
   ========================================================= */
.bio-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin-bottom: 90px;
}
.bio-text p + p { margin-top: 1.5em; }

.demarche-block {
  max-width: 720px;
  margin-bottom: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.demarche-block .bio-text { margin-bottom: 0; }

.team-section { margin-bottom: 80px; }
.team-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
}
.team-item {
  display: block;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.team-item__name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-item__role {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* =========================================================
   AGENDA
   ========================================================= */
.agenda-year { margin-bottom: 80px; }
.agenda-year__label {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  text-shadow: 0 0 18px rgba(255,255,255,0.14);
  margin-bottom: 40px;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.agenda-event {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: baseline;
}
.agenda-event:first-of-type { border-top: 1px solid rgba(255,255,255,0.05); }
.agenda-event__date {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1.7;
}
.agenda-event__info { display: flex; flex-direction: column; gap: 6px; }
.agenda-event__show {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.3;
}
.agenda-event__show a { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px; }
.agenda-event__show a:hover { opacity: 1; border-color: #fff; }
.agenda-event__venue {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.agenda-event__venue a { color: var(--color-muted); border-bottom: 1px solid rgba(255,255,255,0.15); }
.agenda-event__venue a:hover { color: #fff; opacity: 1; border-color: #fff; }

.agenda-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 10px;
  color: rgba(255,255,255,0.5);
  vertical-align: middle;
  margin-left: 12px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 60px 80px;
  margin-bottom: 80px;
}
.contact-block__label {
  font-size: 0.58rem;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-block__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.contact-block__sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.contact-block__phone {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.contact-block__phone a,
.contact-block__email a {
  color: rgba(255,255,255,0.8);
}
.contact-block__phone a:hover,
.contact-block__email a:hover { opacity: 0.6; }
.contact-block__email {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}
.contact-block__address {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  line-height: 2;
  font-style: normal;
  margin-top: 10px;
}
.contact-legal {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  line-height: 2.2;
  max-width: 600px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section { margin-bottom: 100px; }
/* Galerie : titres de section plus lisibles (sans toucher .section-heading ailleurs) */
.gallery-section .section-heading {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-wide);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}
.gallery-section__lede {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.48);
  margin: -8px 0 10px;
  line-height: 1.85;
  max-width: 52rem;
}
.gallery-section__credit {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.38);
  margin: 0 0 28px;
  line-height: 1.85;
}
.gallery-section__credit::before {
  content: "© ";
  letter-spacing: 0.06em;
}
.gallery-subsection {
  margin-bottom: 48px;
}
.gallery-subsection:last-child { margin-bottom: 0; }
.gallery-subsection__title {
  font-size: 0.58rem;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0d0d0d;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
  opacity: 0.82;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.lightbox__close {
  position: absolute;
  top: 22px; right: 28px;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
  opacity: 0.45;
  transition: opacity var(--transition);
  z-index: 10;
}
.lightbox__close:hover { opacity: 1; }

/* Prev / Next arrows */
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px 28px;
  line-height: 1;
  transition: color 0.25s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }
.lightbox__prev:hover,
.lightbox__next:hover { color: rgba(255,255,255,0.95); }

/* Image counter */
.lightbox__counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  pointer-events: none;
}

/* =========================================================
   SHOW PAGE
   ========================================================= */
.show-hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  margin-bottom: 0;
}
.show-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.show-hero__img.show-hero__img--crush-cool-bg {
  filter: var(--photo-filter-crush-cool-bg);
}
.show-hero__img.img-neil-astronaut-cover {
  object-position: 72% center;
}
.show-hero__overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}
.show-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.show-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.show-intro-bar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 80px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 2.4;
}

.show-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.show-synopsis {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  margin-bottom: 60px;
}
.show-synopsis p + p { margin-top: 1.4em; }

.credits-table {
  width: 100%;
  border-collapse: collapse;
}
.credits-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.credits-table td {
  padding: 10px 0;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  vertical-align: top;
}
.credits-table td:first-child {
  color: var(--color-muted);
  width: 38%;
  padding-right: 20px;
}
.credits-table td:last-child { color: rgba(255,255,255,0.82); }

.show-sidebar__label {
  font-size: 0.58rem;
  letter-spacing: var(--letter-spacing-xl);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dates-list { display: flex; flex-direction: column; }
.dates-list__item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
}
.dates-list__item strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

/* Press */
.press-quotes { margin: 60px 0; }
.press-quote {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.press-quote:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.press-quote__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
}
.press-quote__source {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Video embed */
.video-section { margin: 80px 0; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0a0a0a;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* À venir banner */
.upcoming-banner {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .spectacles-grid { grid-template-columns: repeat(2, 1fr); }
  .show-card--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 0 24px; }
  .container, .container--wide { padding: 0 24px; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .agenda-event { grid-template-columns: 1fr; gap: 8px; }
  .show-body { grid-template-columns: 1fr; gap: 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .spectacles-grid { grid-template-columns: 1fr 1fr; }
  .show-card--wide { grid-column: span 2; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .show-hero { height: 55vh; }
}

@media (max-width: 420px) {
  .spectacles-grid { grid-template-columns: 1fr; }
  .show-card--wide { grid-column: span 1; }
}
