/* ============================================================
   GRAND LIFE SUPPER CLUB — Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Dancing+Script:wght@600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700;9..40,800&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --cream:        #fff3df;
  --cream-mid:    #f5e9cc;
  --cream-dark:   #ead8b6;
  --ink:          #173f35;
  --red:          #f24732;
  --gold:         #f6b52f;
  --teal:         #0c5b63;
  --rust:         #b94a2d;
  --line:         #d8c7a7;
  --lav:          #c7a3dc;
  --white:        #fffef9;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'DM Sans', Arial, sans-serif;

  --nav-height:   80px;
  --radius:       4px;
  --radius-lg:    12px;
  --t:            0.22s ease;

  --shadow-sm:    0 2px 8px  rgba(23, 63, 53, 0.10);
  --shadow-md:    0 6px 24px rgba(23, 63, 53, 0.16);
  --shadow-lg:    0 16px 48px rgba(23, 63, 53, 0.28);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

button { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
}

.script {
  font-family: var(--font-script);
  font-weight: 700;
}

.kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.tagline {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 12px 0;
}

.section-desc {
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink);
  opacity: 0.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn.primary:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

.btn.gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn.gold:hover {
  background: #e5a820;
  border-color: #e5a820;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   GL BADGE
   ============================================================ */

.gl-badge {
  width: 46px;
  height: 46px;
  background: var(--red);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: transform var(--t), box-shadow var(--t);
}

.gl-badge:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 2px 14px rgba(242, 71, 50, 0.4);
}

.gl-badge--ink {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  padding: 4px 6px;
  border-radius: var(--radius);
  transition: background var(--t);
}

.nav-menu-btn:hover {
  background: var(--cream-mid);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navlinks a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.navlinks a:hover { color: var(--red); }
.navlinks a:hover::after { transform: scaleX(1); }

.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}

.brand .script {
  display: block;
  font-size: 0.48em;
  color: var(--teal);
  margin-top: -2px;
  font-weight: 700;
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  background: var(--ink);
  color: var(--gold);
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 2px solid var(--gold);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-roll 28s linear infinite;
}

.ticker-item {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 20px;
  white-space: nowrap;
}

.ticker-sep {
  color: var(--red);
  font-size: 12px;
  align-self: center;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  min-height: 560px;
  padding: 70px 7vw 80px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 60px;
  background: linear-gradient(
    170deg,
    transparent 40%,
    var(--red)  41% 47%,
    var(--gold) 48% 54%,
    var(--teal) 55% 61%,
    transparent 62%
  );
  pointer-events: none;
}

.hero-copy .kicker {
  font-size: 13px;
}

.hero-copy h1 {
  font-size: clamp(56px, 8.5vw, 96px);
  color: var(--red);
  line-height: 0.88;
  margin: 14px 0 20px;
}

.hero-copy h1 .script {
  display: block;
  font-size: 0.52em;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--ink);
  margin-top: -2px;
  line-height: 1.1;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 8px;
}

/* Hero art / collage */
.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 540px;
}

/* Main stacked photo card */
.hero-collage .hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(2deg);
  padding: 14px 14px 40px;
}

.hero-collage .hero-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

/* Additional ephemera cards — revealed when assets are dropped in */
.hero-collage .hero-card-sm {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 8px;
}

.hero-collage .hero-card-sm:nth-child(2) {
  width: 38%;
  bottom: -5%;
  left: -8%;
  transform: rotate(-3.5deg);
  z-index: 2;
}

.hero-collage .hero-card-sm:nth-child(3) {
  width: 32%;
  top: 6%;
  right: -5%;
  transform: rotate(5deg);
  z-index: 2;
}

.hero-collage .hero-card-sm img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.section {
  padding: 64px 7vw;
}

.section.center { text-align: center; }

.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--red);
  text-transform: uppercase;
  margin: 8px 0 16px;
}

/* ============================================================
   DIVIDER STRIP
   ============================================================ */

.stripe {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--red)  0      80px,
    var(--gold) 80px  160px,
    var(--teal) 160px 240px,
    var(--ink)  240px 320px
  );
}

/* ============================================================
   WORLD GRID
   ============================================================ */

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  margin-top: 40px;
}

.world {
  padding: 28px 16px;
  text-align: center;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: background var(--t), color var(--t);
  cursor: pointer;
}

.world::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: 0;
}

.world:hover::before { transform: scaleY(1); }

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

.world-logo {
  width: 140px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: filter var(--t);
}

.world-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: mix-blend-mode var(--t), filter var(--t);
}

.world:hover .world-logo img {
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
}

.world h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 5px;
  transition: color var(--t);
}

.world span {
  font-size: 13px;
  color: var(--rust);
  transition: color var(--t);
}

.world:hover h3 { color: var(--gold); }
.world:hover span { color: var(--cream-mid); }

.world-grid-more {
  margin-top: 32px;
  text-align: center;
}

/* ============================================================
   SPLIT PANELS
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 2px solid var(--ink);
}

.panel {
  padding: 52px 7vw;
  border-right: 2px solid var(--ink);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel:last-child { border-right: none; }

.panel.dark {
  background: var(--ink);
  color: var(--cream);
}

.panel h2 {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--gold);
  line-height: 1.05;
}

.panel p { font-size: 15px; opacity: 0.85; line-height: 1.55; }

/* Email signup */

.email {
  display: flex;
  margin-top: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.email input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.email input:focus { background: var(--white); }

.email button {
  width: 56px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  flex-shrink: 0;
}

.email button:hover { background: var(--rust); }

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

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 24px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid var(--gold);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: right;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 36px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--cream-mid);
  border: 1px solid var(--line);
}

.gallery-item--tall { aspect-ratio: 3 / 4; }
.gallery-item--wide { aspect-ratio: 16 / 9; }
.gallery-item--sq   { aspect-ratio: 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,63,53,0.7) 0%, transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-label { transform: translateY(0); }

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 28, 24, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: var(--cream-mid);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 480px;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--t), transform var(--t);
}

.lightbox-close:hover { opacity: 1; transform: scale(1.15); }

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
  transition: background var(--t);
}

.lightbox-arrow:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   CAROUSEL
   ============================================================ */

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background var(--t), color var(--t);
}

.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--ink);
  color: var(--cream);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}

.carousel-dot.is-active {
  background: var(--red);
  transform: scale(1.35);
}

/* ============================================================
   WORLD HERO PAGE
   ============================================================ */

.world-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
  border-bottom: 2px solid var(--ink);
}

.world-copy {
  padding: 64px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.world-copy h1 {
  font-size: clamp(40px, 5.5vw, 70px);
  color: var(--ink);
  margin: 14px 0 22px;
  line-height: 1.0;
}

.world-photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-mid);
}

.world-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info strip */

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--cream);
}

.info-strip-cell {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.5;
}

.info-strip-cell:last-child { border-right: none; }

.info-strip-cell b {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ============================================================
   SUPPER CARDS
   ============================================================ */

.supper-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.supper-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 80px 80px 14px 14px;
  padding: 36px 18px 28px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.supper-card:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.supper-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.supper-card p { font-size: 13px; line-height: 1.4; }

.supper-card small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  transition: color var(--t);
}

.supper-card:hover small { color: var(--gold); }

/* ============================================================
   MENU / SUPPER PAGE
   ============================================================ */

.menu-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 52px 7vw;
  align-items: start;
}

.experience-logo img {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.experience-card {
  margin-top: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--white);
}

.experience-card h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.experience-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  font-size: 14px;
}

.experience-card dt { font-weight: 700; color: var(--rust); }

.menu-list {
  padding: 40px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.menu-list h1 {
  font-size: clamp(38px, 5vw, 68px);
  color: var(--ink);
  margin: 8px 0 20px;
}

/* Menu items */

.item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.item:last-child { border-bottom: none; }

.num {
  font-family: var(--font-display);
  color: var(--rust);
  font-size: 30px;
  font-style: italic;
  line-height: 1;
}

.item b { display: block; margin-bottom: 4px; }

/* Hosting notes */

.notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.note {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}

.note b {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.note p { font-size: 14px; line-height: 1.5; }

/* ============================================================
   SOUND / PLAYLIST SECTION
   ============================================================ */

.playlist-panel {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 52px 7vw;
}

.playlist-panel h2 {
  color: var(--gold);
  margin-bottom: 10px;
}

.playlist-panel p { opacity: 0.8; margin-bottom: 24px; }

/* ============================================================
   UTILITY
   ============================================================ */

.center { text-align: center; }

.mt-lg { margin-top: 48px; }

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

@media (max-width: 1100px) {
  .supper-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero,
  .world-hero,
  .menu-page,
  .split {
    grid-template-columns: 1fr;
  }

  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .supper-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .gallery--3col { grid-template-columns: repeat(2, 1fr); }

  .navlinks { display: none; }

  .hero-copy h1 { font-size: 58px; }
  .hero-art { margin-top: 32px; }
  .hero-collage { max-width: 420px; margin: 0 auto; }

  .world-photo { min-height: 320px; }
}

@media (max-width: 640px) {
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .supper-grid,
  .notes,
  .gallery--2col,
  .gallery--3col {
    grid-template-columns: 1fr;
  }
  .info-strip { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .nav { padding: 0 18px; }
  .section,
  .hero,
  .world-copy,
  .menu-page,
  .playlist-panel { padding-left: 20px; padding-right: 20px; }
  .menu-list { padding: 24px; }
  .panel { padding: 36px 20px; }
}
