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

:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: rgba(18, 19, 23, 0.78);
  --panel-strong: rgba(29, 30, 36, 0.92);
  --text: #f7f2e8;
  --muted: #b9b1a5;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d7b46a;
  --rose: #d95e7b;
  --green: #75d3b4;
  --blue: #82a8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans KR', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 12px 14px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}
.brand img { width: 128px; height: auto; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  color: rgba(247, 242, 232, 0.82);
  font-size: 14px;
  font-weight: 700;
}
.desktop-nav a { transition: color 180ms ease; white-space: nowrap; }
.desktop-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; min-width: 0; }
.language-switch {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.lang-btn {
  min-width: 58px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.lang-btn.active { background: var(--gold); color: #14100a; }
.lang-btn .flag { font-size: 15px; line-height: 1; }
.header-call,
.primary-btn,
.secondary-btn,
.more-btn,
.nav-buttons a,
.filter-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}
.header-call,
.primary-btn {
  padding: 0 18px;
  background: linear-gradient(135deg, #f2d990, #b98b3d);
  color: #181006;
  box-shadow: 0 12px 28px rgba(215, 180, 106, 0.22);
}
.secondary-btn,
.more-btn,
.nav-buttons a,
.filter-btn {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 140px max(24px, calc((100vw - 1180px) / 2)) 52px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.88), rgba(8, 9, 11, 0.42) 52%, rgba(8, 9, 11, 0.68)), linear-gradient(0deg, var(--bg), rgba(8, 9, 11, 0) 38%);
  z-index: 1;
}
.hero-media,
.hero-media span {
  position: absolute;
  inset: 0;
}
.hero-media span {
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
  transform: scale(1.04);
}
.hero-media span:nth-child(2) { animation-delay: 6s; }
.hero-media span:nth-child(3) { animation-delay: 12s; }
.hero-media span:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1.04); }
  8%, 25% { opacity: 1; transform: scale(1); }
  34% { opacity: 0; transform: scale(1.02); }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-bottom: 120px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 10vw, 142px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}
.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(247, 242, 232, 0.88);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  z-index: 2;
  width: min(480px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.58);
  backdrop-filter: blur(18px);
}
.hero-panel div { padding: 22px; border-right: 1px solid var(--line); }
.hero-panel div:last-child { border-right: 0; }
.hero-panel strong { display: block; color: var(--gold); font-size: 28px; line-height: 1; }
.hero-panel span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(247, 242, 232, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollCueFloat 1.8s ease-in-out infinite;
}
.scroll-cue i {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(247, 242, 232, 0.58);
  border-radius: 999px;
  position: relative;
}
.scroll-cue i::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollCueFloat {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.72; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}
@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

.section-pad { padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
.section-head { width: min(720px, 100%); margin: 0 auto 42px; text-align: center; }
.section-head p:not(.eyebrow), .split-head p, .about-copy p, .visit-card p { color: var(--muted); font-size: 17px; }
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.status-section { background: linear-gradient(180deg, #08090b, #111217); }
.status-board {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}
.status-card {
  min-height: 218px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.status-card span { display: block; color: var(--muted); font-weight: 800; }
.status-card strong { display: block; margin: 18px 0 10px; font-size: clamp(42px, 7vw, 82px); line-height: 1; }
.status-card p { margin-bottom: 0; color: rgba(247, 242, 232, 0.72); }
.time-card strong { font-variant-numeric: tabular-nums; }
.accent-card { background: linear-gradient(135deg, rgba(217, 94, 123, 0.24), rgba(117, 211, 180, 0.14)), var(--panel-strong); }
.accent-card.waiting { border-color: rgba(217, 94, 123, 0.6); }

.lineup-section, .space-section { background: #0d0e12; overflow: hidden; }
.lineup-marquee {
  display: flex;
  width: max-content;
  margin-left: calc(50% - 50vw);
  animation: marquee 58s linear infinite;
  will-change: transform;
}

.lineup-set {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
}
.lineup-shot {
  width: clamp(170px, 17vw, 250px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #17181d;
}
.lineup-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

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

.menu-section { background: linear-gradient(180deg, #111217, #08090b); }
.menu-toolbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn { cursor: pointer; }
.filter-btn.active { background: var(--text); color: #111; }
.bottle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.bottle-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: 112px auto;
  gap: 4px;
  padding: 10px 10px 12px;
  align-items: center;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}
.bottle-image {
  height: 112px;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.bottle-image img { max-width: 100%; max-height: 106px; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.38)); }
.bottle-info { position: relative; z-index: 2; min-width: 0; align-self: start; padding-top: 0; margin-top: 0; text-align: center; }
.bottle-card h3 { min-height: 0; margin-bottom: 3px; font-size: 16px; line-height: 1.18; white-space: normal; word-break: keep-all; overflow-wrap: normal; }
.bottle-card p { margin: 0; color: var(--gold); font-size: 15px; font-weight: 900; line-height: 1.15; }
.event-ribbon {
  position: absolute;
  top: 15px;
  right: -34px;
  z-index: 4;
  width: 118px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(38deg);
  background: linear-gradient(135deg, #ff6b7f, #d7b46a);
  color: #160d08;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}
.event-bottle {
  border-color: rgba(215, 180, 106, 0.42);
  background: linear-gradient(145deg, rgba(215, 180, 106, 0.08), rgba(255, 255, 255, 0.045));
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}
.space-item {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #18191f;
  padding: 0;
  cursor: pointer;
}
.space-item:nth-child(1), .space-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
.space-item.hidden { display: none; }
.space-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms ease, opacity 260ms ease; }
.space-item:hover img { transform: scale(1.04); opacity: 0.88; }
.more-btn { margin: 28px auto 0; cursor: pointer; }

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: center;
  background: radial-gradient(circle at 20% 10%, rgba(117, 211, 180, 0.14), transparent 28%), #08090b;
}
.about-facts { display: grid; gap: 12px; }
.about-facts div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.about-facts span { display: block; color: var(--muted); font-size: 13px; font-weight: 900; }
.about-facts strong { display: block; margin-top: 6px; font-size: 22px; }
.about-call-btn { min-height: 42px; margin-top: 10px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; background: linear-gradient(135deg, #f2d990, #b98b3d); color: #181006; font-size: 15px; font-weight: 900; }


.price-section {
  background: radial-gradient(circle at 80% 10%, rgba(215, 180, 106, 0.16), transparent 30%), #0b0c10;
}
.price-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.featured-price {
  border-color: rgba(215, 180, 106, 0.52);
  background: linear-gradient(145deg, rgba(215, 180, 106, 0.18), rgba(255, 255, 255, 0.045)), var(--panel-strong);
}
.price-card-head span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-card-head strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: clamp(20px, 2.25vw, 34px);
  line-height: 1.08;
  white-space: nowrap;
  overflow-wrap: normal;
}
.price-rows {
  display: grid;
  gap: 10px;
}
.price-rows div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-rows span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}
.price-rows strong {
  justify-self: end;
  color: var(--text);
  font-size: 25px;
  line-height: 1;
}
.price-rows em {
  grid-column: 2;
  justify-self: end;
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.price-card p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.72);
  font-size: 14px;
}
.price-notice {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border: 1px solid rgba(217, 94, 123, 0.42);
  border-radius: 8px;
  background: rgba(217, 94, 123, 0.1);
}
.price-notice strong {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.price-notice p {
  margin: 0;
  color: rgba(247, 242, 232, 0.84);
  font-weight: 700;
}
.price-notice mark {
  padding: 0 2px;
  background: transparent;
  color: #ff6b7f;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.faq-section {
  background: linear-gradient(180deg, #0b0c10, #101115);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}
.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
}

.booking-section {
  background: radial-gradient(circle at 15% 20%, rgba(130, 168, 255, 0.13), transparent 28%), #0d0e12;
}
.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}
.booking-copy,
.booking-cta-card,
.booking-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.booking-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}
.booking-copy h2 { font-size: clamp(34px, 4.6vw, 58px); }
.booking-copy p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.booking-trust span {
  padding: 8px 12px;
  border: 1px solid rgba(215, 180, 106, 0.36);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(215, 180, 106, 0.08);
  font-size: 13px;
  font-weight: 900;
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.booking-steps article {
  min-height: 190px;
  padding: 22px;
}
.booking-steps b {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(215, 180, 106, 0.15);
  color: var(--gold);
  font-size: 13px;
}
.booking-steps h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}
.booking-steps p,
.booking-cta-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}
.booking-cta-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(117, 211, 180, 0.08)), var(--panel-strong);
}
.booking-cta-card h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}
.booking-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.floating-reserve {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(560px, calc(100% - 28px));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(215, 180, 106, 0.42);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.86);
  color: var(--text);
  transform: translateX(-50%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}
.floating-reserve span {
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.floating-reserve a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f2d990, #b98b3d);
  color: #181006;
  font-weight: 900;
  white-space: nowrap;
}
.location-section { background: #101115; }
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 18px;
}
.map-card {
  height: 460px;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #191a20;
}
.root_daum_roughmap { width: 100% !important; height: 100% !important; }
.map-card .root_daum_roughmap_landing,
.map-card .wrap_map,
.map-card .map { width: 100% !important; }
.map-card .root_daum_roughmap_landing { display: block !important; position: relative; }
.map-card .wrap_map { height: 100% !important; min-height: 100%; }
.map-card .map { height: 100% !important; min-height: 100%; }
.map-card .cont { display: none !important; }
.map-card .wrap_controllers { display: block !important; width: auto !important; height: auto !important; }
.map-card .wrap_btn_zoom { right: 16px !important; }
.map-card .wrap_btn_zoom button,
.map-card .wrap_btn_zoom a { box-sizing: content-box; min-width: 0; min-height: 0; border-radius: 0; }
.visit-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}
.visit-card h3 { font-size: 28px; line-height: 1.18; }
.nav-buttons { display: grid; gap: 10px; margin: 26px 0; }
.full { width: 100%; }

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 52px 24px;
  text-align: center;
  background: #07080a;
  color: var(--muted);
}
.footer img { width: 132px; height: auto; aspect-ratio: 488 / 110; object-fit: contain; }
.footer p { max-width: 560px; margin-bottom: 0; }
.footer small { color: rgba(185, 177, 165, 0.7); }

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px;
  background: rgba(0, 0, 0, 0.88);
}
.image-modal.open { display: flex; }
.image-modal img { max-width: min(1100px, 100%); max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow); }
.modal-close, .modal-nav {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}
.modal-close { top: 22px; right: 22px; width: 48px; height: 48px; font-size: 32px; line-height: 1; }
.modal-nav { top: 50%; width: 48px; height: 72px; transform: translateY(-50%); font-size: 44px; }
.modal-nav.prev { left: 22px; }
.modal-nav.next { right: 22px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr; gap: 10px; top: 10px; padding: 12px; max-height: calc(100vh - 20px); overflow: auto; }
  .brand { justify-self: center; }
  .desktop-nav { order: 3; overflow-x: auto; justify-content: center; width: 100%; padding-bottom: 4px; scrollbar-width: none; }
  .desktop-nav::-webkit-scrollbar { display: none; }
  .header-actions { justify-content: center; flex-wrap: wrap; }
  .hero { padding-top: 210px; }
  .hero-content { padding-bottom: 180px; }
  .hero-panel { left: 24px; right: 24px; bottom: 32px; width: auto; }
  .scroll-cue { display: none; }
  .split-head, .status-board, .about-section, .price-layout, .booking-panel, .booking-cta-card, .location-layout { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card-head strong { font-size: clamp(24px, 6vw, 34px); }
  .booking-actions { justify-content: flex-start; }
  .bottle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .space-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 20px); }
  .brand img { width: 112px; }
  .header-call { width: 100%; }
  .language-switch { width: 100%; justify-content: space-between; }
  .lang-btn { flex: 1; }
  .hero { min-height: 900px; padding-left: 18px; padding-right: 18px; padding-top: 230px; }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-panel div { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px; }
  .hero-panel div:last-child { border-bottom: 0; }
  .hero-content { padding-bottom: 300px; }
  .scroll-cue { display: none; }
  h1 { font-size: clamp(48px, 18vw, 76px); }
  h2 { font-size: clamp(29px, 10vw, 42px); }
  .hero-copy, .section-head p:not(.eyebrow), .split-head p, .about-copy p, .visit-card p, .faq-list details p { font-size: 15px; }
  .bottle-card {
  position: relative;
  min-height: 0; grid-template-rows: 104px auto; gap: 4px; padding: 9px 8px 10px; align-items: center; justify-items: center; text-align: center; }
  .bottle-image { height: 104px; }
  .bottle-image img { max-height: 98px; }
  .bottle-info { align-self: start; margin-top: 0; text-align: center; }
  .bottle-card h3 { min-height: 0; margin-bottom: 3px; font-size: 15px; }
  .bottle-card p { font-size: 14px; }
  .status-card strong { font-size: clamp(38px, 14vw, 58px); }
  .hero-actions a { width: 100%; }
  .section-pad { padding: 78px 18px; }
  .menu-toolbar { overflow-x: auto; justify-content: flex-start; }
  .bottle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .map-card { height: 420px; min-height: 420px; }
  .space-gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .space-item:nth-child(1), .space-item:nth-child(8) { grid-column: auto; grid-row: auto; }
  .booking-steps { grid-template-columns: 1fr; }
  .booking-copy, .booking-cta-card, .booking-steps article { padding: 20px; }
  .booking-actions a { width: 100%; }
  body { padding-bottom: 76px; }
  .floating-reserve { bottom: 10px; }
  .floating-reserve span { font-size: 12px; }
  .floating-reserve a { padding: 0 14px; }
  .image-modal { padding: 64px 14px; }
  .modal-nav { width: 42px; height: 58px; font-size: 34px; }
}











