/* ===================================
   酒と料理 戸塚駅横研究所 — Style
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:        #0f1c2e;
  --navy-mid:    #162438;
  --sumi:        #1a1a1a;
  --kinu:        #f5f0e8;
  --kinu-dim:    #c8c0b0;
  --gold:        #c9a84c;
  --gold-light:  #e8d08a;
  --gold-dim:    rgba(201, 168, 76, 0.18);
  --border:      rgba(201, 168, 76, 0.28);
  --serif:       'Noto Serif JP', serif;
  --sans:        'Noto Sans JP', sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-pad: 100px 0;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--navy);
  color: var(--kinu);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

/* ─── Utility ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--kinu);
  margin-bottom: 24px;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* ─── Scroll Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Header / Navigation ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#header.scrolled {
  background: rgba(15, 28, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 32px;
  border-bottom: 1px solid var(--border);
}

.header-logo {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kinu);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.header-logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.25em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--kinu-dim);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-reserve {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-reserve:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-reserve::after { display: none !important; }

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 46, 0.98);
  z-index: 99;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--kinu);
  letter-spacing: 0.15em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ─── Hero ─── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-bg img {
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(15, 28, 46, 0.62) 0%,
    rgba(15, 28, 46, 0.78) 50%,
    rgba(15, 28, 46, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--kinu);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.05em;
  margin-bottom: 24px;
}

.hero-title .char {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.15;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}
.hero-title .char:nth-child(1) { animation-delay: 0.6s; }
.hero-title .char:nth-child(2) { animation-delay: 0.65s; }
.hero-title .char:nth-child(3) { animation-delay: 0.7s; }  /* ・ */
.hero-title .char:nth-child(4) { animation-delay: 0.75s; }
.hero-title .char:nth-child(5) { animation-delay: 0.8s; }
.hero-title .char:nth-child(6) { animation-delay: 0.85s; } /* ・ */
.hero-title .char:nth-child(7) { animation-delay: 0.9s; }
.hero-title .char:nth-child(8) { animation-delay: 0.95s; }
.hero-title .char:nth-child(9) { animation-delay: 1.0s; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: var(--kinu-dim);
  letter-spacing: 0.15em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.7s forwards;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-family: var(--serif);
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--kinu);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 2.2s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease infinite;
}

/* ─── Concept ─── */
#concept {
  padding: var(--section-pad);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

#concept::before {
  content: '研究所';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.concept-intro {
  max-width: 640px;
  margin-bottom: 72px;
}

.concept-intro p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--kinu-dim);
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.concept-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 48px 32px;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.concept-card:hover {
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-4px);
}

.concept-card:nth-child(1) {
  background:
    linear-gradient(rgba(15, 28, 46, 0.78), rgba(15, 28, 46, 0.78)),
    url("../img/70syurui-haikei.jpg") center / cover no-repeat;
}

.concept-card:nth-child(1):hover {
  background:
    linear-gradient(rgba(15, 28, 46, 0.7), rgba(15, 28, 46, 0.7)),
    url("../img/70syurui-haikei.jpg") center / cover no-repeat;
}

.concept-card:nth-child(2) {
  background:
    linear-gradient(rgba(15, 28, 46, 0.78), rgba(15, 28, 46, 0.78)),
    url("../img/sase-pearing.jpg") center / cover no-repeat;
}

.concept-card:nth-child(2):hover {
  background:
    linear-gradient(rgba(15, 28, 46, 0.7), rgba(15, 28, 46, 0.7)),
    url("../img/sase-pearing.jpg") center / cover no-repeat;
}

.concept-card:nth-child(3) {
  background:
    linear-gradient(rgba(15, 28, 46, 0.78), rgba(15, 28, 46, 0.78)),
    url("../img/pearing-haikei.jpg") center / cover no-repeat;
}

.concept-card:nth-child(3):hover {
  background:
    linear-gradient(rgba(15, 28, 46, 0.7), rgba(15, 28, 46, 0.7)),
    url("../img/pearing-haikei.jpg") center / cover no-repeat;
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.concept-card:hover::before { width: 100%; }

.concept-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 20px;
  display: block;
}

.concept-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--kinu);
  margin-bottom: 12px;
  line-height: 1.4;
}

.concept-card p {
  font-size: 0.85rem;
  color: var(--kinu-dim);
  line-height: 1.9;
}

/* ─── Menu ─── */
#menu {
  padding: var(--section-pad);
  background: var(--sumi);
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Slideshow */
.menu-slideshow {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }

.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.4);
  cursor: pointer;
  transition: background var(--transition);
}
.slide-dot.active { background: var(--gold); }

/* Menu List */
.menu-content { }

.menu-category {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.menu-category:last-of-type { border-bottom: none; }

.menu-category-title {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.menu-item-no-price {
  justify-content: flex-start;
}

.menu-item-name {
  font-size: 0.88rem;
  color: var(--kinu);
  font-family: var(--serif);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(245, 240, 232, 0.18);
  margin-bottom: 3px;
}

.menu-item-price {
  font-size: 0.78rem;
  color: var(--kinu-dim);
  white-space: nowrap;
}

.menu-cta {
  margin-top: 36px;
}

/* ─── Lineup ─── */
#lineup {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
}

#lineup::after {
  content: '日本酒';
  position: absolute;
  left: -20px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
}

.lineup-intro {
  max-width: 560px;
  margin-bottom: 60px;
}

.lineup-intro p {
  font-size: 0.95rem;
  color: var(--kinu-dim);
  line-height: 2;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.sake-card {
  border: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  background: rgba(255,255,255,0.02);
}

.sake-card:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.sake-region {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.sake-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--kinu);
  margin-bottom: 8px;
  line-height: 1.4;
}

.sake-type {
  font-size: 0.72rem;
  color: var(--kinu-dim);
  letter-spacing: 0.1em;
}

.sake-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border: 1px solid var(--border);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--gold);
  border-radius: 20px;
}

.lineup-more {
  text-align: center;
}

.lineup-more p {
  font-size: 0.85rem;
  color: var(--kinu-dim);
  margin-bottom: 24px;
}

/* ─── Kurabebe (飲み比べ) ─── */
#kurabebe {
  padding: var(--section-pad);
  background: var(--navy-mid);
}

.kurabebe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kurabebe-sets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kset {
  border: 1px solid var(--border);
  padding: 28px 28px;
  position: relative;
  transition: var(--transition);
}

.kset:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: var(--gold);
}

.kset-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.kset-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--kinu);
  font-weight: 600;
}

.kset-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-family: var(--serif);
}

.kset-desc {
  font-size: 0.82rem;
  color: var(--kinu-dim);
  line-height: 1.8;
}

.kurabebe-text { }
.kurabebe-text p {
  font-size: 0.95rem;
  color: var(--kinu-dim);
  line-height: 2;
  margin-bottom: 24px;
}

/* ─── Gallery ─── */
#gallery {
  padding: var(--section-pad);
  background: var(--sumi);
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-carousel {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 32px;
  /* Pull full width on desktop if it's inside container */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollGallery 40s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes scrollGallery {
  /* Scroll exactly half the track width (accounting for the 10 items) */
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

.gallery-item {
  position: relative;
  height: clamp(250px, 30vw, 400px);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--navy-mid);
}

/* Different widths to give the carousel visual interest */
.gallery-item:nth-child(4n+1) { width: clamp(250px, 30vw, 400px); }
.gallery-item:nth-child(4n+2) { width: clamp(350px, 45vw, 600px); }
.gallery-item:nth-child(4n+3) { width: clamp(280px, 35vw, 450px); }
.gallery-item:nth-child(4n+4) { width: clamp(200px, 25vw, 300px); }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.interior-luxury-img {
  /* Give the interior photo a luxury wa-modern hue */
  filter: sepia(0.2) contrast(1.1) brightness(1.05) hue-rotate(-5deg);
}

/* ─── Access ─── */
#access {
  padding: var(--section-pad);
  background: var(--navy);
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.access-map {
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.4) brightness(0.85);
}

.access-info { }

.info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.info-value {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--kinu);
  line-height: 1.8;
}

.info-value a {
  color: var(--gold);
  transition: color var(--transition);
}
.info-value a:hover { color: var(--gold-light); }

.access-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 14px 28px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ─── Footer ─── */
footer {
  background: var(--sumi);
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--kinu);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.footer-logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--kinu-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(200, 192, 176, 0.4);
  letter-spacing: 0.1em;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .concept-cards {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .menu-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .kurabebe-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 2/1; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px 0; }

  #header { padding: 16px 20px; }
  #header.scrolled { padding: 10px 20px; }

  .hero-title-vertical .char { font-size: 2.2rem; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 3/2; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; }

  .footer-links { flex-wrap: wrap; gap: 16px 24px; }

  .btn { padding: 12px 24px; }
}
