:root {
  --ink: #111411;
  --ink-soft: #30372f;
  --paper: #f5f1e8;
  --paper-2: #ebe4d7;
  --white: #fffdf8;
  --line: rgba(17, 20, 17, 0.14);
  --line-dark: rgba(255, 253, 248, 0.16);
  --gold: #b99555;
  --gold-soft: #d8c08c;
  --sage: #9ead8f;
  --sea: #17333a;
  --sea-soft: #dbe7e5;
  --danger: #8f3d2f;
  --shadow: 0 24px 80px rgba(17, 20, 17, 0.14);
  --radius: 6px;
  --max: 1320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(185, 149, 85, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 52%, var(--paper-2) 100%);
  color: var(--ink);
}

body.menu-open,
body.booking-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
}

.muted {
  color: rgba(17, 20, 17, 0.68);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background 220ms ease, padding 220ms ease, border 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(17, 20, 17, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 86px;
  height: auto;
  filter: brightness(0) invert(1);
}

.brand span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.68);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  padding: 0.85rem 0.9rem;
  font-size: 0.84rem;
  color: rgba(255, 253, 248, 0.82);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  min-width: 46px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #17140d;
  box-shadow: 0 14px 36px rgba(185, 149, 85, 0.28);
}

.btn-secondary {
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.22);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.88), rgba(10, 14, 12, 0.45) 52%, rgba(10, 14, 12, 0.16)),
    linear-gradient(0deg, rgba(10, 14, 12, 0.85), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: 150px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.hero h1 {
  max-width: 880px;
  margin: 1.2rem 0 0;
  font-size: clamp(3.4rem, 8vw, 8.8rem);
}

.hero p {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.availability-card {
  align-self: end;
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(22px);
}

.availability-card .line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
}

.availability-card .line:last-child {
  border-bottom: 0;
}

.availability-card strong {
  color: var(--white);
}

.section {
  padding: 108px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-head h2,
.page-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
}

.section-head p {
  margin: 0;
  color: rgba(17, 20, 17, 0.7);
  line-height: 1.8;
}

.stats {
  position: relative;
  margin-top: -1px;
  background: var(--ink);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-dark);
}

.stat {
  padding: 2.1rem 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 500;
  color: var(--gold-soft);
}

.stat span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.experience-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 700ms ease, opacity 700ms ease;
}

.experience-card:hover img {
  transform: scale(1.05);
  opacity: 0.62;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(10, 14, 12, 0.84));
}

.experience-card .copy {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.experience-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 500;
}

.experience-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.6;
}

.journey {
  background: var(--white);
}

.journey-list {
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.journey-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 120px 1fr 220px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.journey-item::before {
  content: "0" counter(step);
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
}

.journey-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.journey-item p {
  margin: 0.35rem 0 0;
  color: rgba(17, 20, 17, 0.68);
}

.journey-item time {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 4rem;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.split-copy h2 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.split-copy p {
  color: rgba(17, 20, 17, 0.7);
  font-size: 1.02rem;
  line-height: 1.85;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

.panel-pad {
  padding: 1.4rem;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 12, 0.88), rgba(10, 14, 12, 0.32));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.8);
  line-height: 1.8;
}

.deck-planner {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(245, 241, 232, 0.94)),
    radial-gradient(circle at 18% 14%, rgba(185, 149, 85, 0.12), transparent 34rem);
}

.seat-plan-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.2rem;
  align-items: start;
}

.seat-map-frame {
  position: sticky;
  top: 96px;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.seat-map-visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 560 / 1055;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: url("../images/seat-plan-reference.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 266.25% 100%;
}

.seat-map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 17, 0.1);
}

.seat-hotspot {
  position: absolute;
  left: var(--x);
  top: calc(var(--y) - 1.4%);
  width: var(--w);
  height: var(--h);
  z-index: 1;
  border: 1px solid transparent;
  border-radius: 5px;
  background: rgba(185, 149, 85, 0);
  color: transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.seat-hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  width: max-content;
  max-width: 150px;
  border-radius: 999px;
  background: rgba(17, 20, 17, 0.9);
  color: var(--white);
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
}

.seat-hotspot:hover,
.seat-hotspot:focus-visible,
.seat-hotspot.is-linked,
.seat-hotspot.is-selected {
  border-color: rgba(185, 149, 85, 0.96);
  background: rgba(216, 192, 140, 0.34);
  box-shadow: 0 0 0 3px rgba(185, 149, 85, 0.18), 0 12px 24px rgba(17, 20, 17, 0.16);
  color: var(--white);
  outline: none;
  transform: translateY(-12px);
}

.seat-hotspot:hover span,
.seat-hotspot:focus-visible span,
.seat-hotspot.is-linked span,
.seat-hotspot.is-selected span {
  opacity: 1;
}

.deck-tables {
  display: grid;
  gap: 1rem;
}

.deck-price-card {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
}

.deck-price-card h3 {
  margin: 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(90deg, #b88c65, #f0bd92);
  color: var(--white);
  text-align: center;
  font-size: 1rem;
}

.deck-price-card h3 span {
  margin-right: 0.35rem;
  font-weight: 500;
}

.day-pass-card h3 {
  background: linear-gradient(90deg, #8eb2e3, #b6cff2);
}

.second-floor-card h3 {
  background: linear-gradient(90deg, #90be7b, #bfdda9);
}

.deck-price-card table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.deck-price-card th,
.deck-price-card td {
  border-bottom: 1px solid rgba(17, 20, 17, 0.08);
  padding: 0.78rem 0.75rem;
  text-align: center;
}

.deck-price-card th {
  background: rgba(245, 241, 232, 0.72);
  color: rgba(17, 20, 17, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-price-card td:nth-child(2),
.deck-price-card th:nth-child(2) {
  text-align: left;
}

.deck-price-card i {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: var(--sw);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 17, 0.08);
}

.deck-row {
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.deck-row:hover,
.deck-row:focus,
.deck-row.is-linked,
.deck-row.is-selected {
  background: #fff3da;
  box-shadow: inset 4px 0 0 var(--gold);
  outline: none;
}

.deck-row.is-selected {
  color: var(--ink);
  font-weight: 700;
}

.deck-note {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.9rem 1rem;
  color: rgba(17, 20, 17, 0.64);
  text-align: center;
  font-size: 0.86rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.3rem;
  align-items: start;
}

.booking-steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
}

.step-card h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 20, 17, 0.64);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 149, 85, 0.14);
}

.summary {
  position: sticky;
  top: 96px;
}

.summary h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(17, 20, 17, 0.7);
}

.summary-line strong {
  color: var(--ink);
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.2rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.tab.is-active {
  background: var(--ink);
  color: var(--white);
}

.menu-section {
  display: none;
}

.menu-section.is-active {
  display: block;
}

.menu-category {
  margin-bottom: 2rem;
}

.menu-category h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
}

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

.menu-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.menu-item p {
  margin: 0;
  color: rgba(17, 20, 17, 0.62);
}

.menu-item .price {
  color: var(--gold);
  font-weight: 800;
}

.original-menu {
  background: var(--paper);
}

.original-menu-notice {
  margin: 0 0 1.6rem;
  font-size: 0.9rem;
}

.original-menu-filters {
  overflow-x: auto;
  margin: 0 0 2.2rem;
}

.original-menu-filter-row {
  display: flex;
  gap: 0.55rem;
  min-width: max-content;
  padding-bottom: 0.3rem;
}

.original-menu-filter-row .tab span {
  margin-left: 0.45rem;
  font-size: 0.68rem;
  opacity: 0.68;
}

.original-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.original-menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(17, 20, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.original-menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(17, 20, 17, 0.14);
}

.original-menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-2);
  transition: transform 420ms ease;
}

.original-menu-card:hover img {
  transform: scale(1.035);
}

.original-menu-copy {
  padding: 1.15rem;
}

.original-menu-category {
  margin: 0 0 0.5rem;
  color: rgba(17, 20, 17, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.original-menu-card h2 {
  min-height: 2.8rem;
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.05;
}

.original-menu-card p {
  min-height: 2.7rem;
  margin: 0 0 1rem;
  color: rgba(17, 20, 17, 0.62);
  line-height: 1.55;
}

.original-menu-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-weight: 800;
}

.original-menu-price span {
  color: rgba(17, 20, 17, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-card {
  position: relative;
  min-height: 270px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  opacity: 0.82;
}

.gallery-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-blank {
  display: grid;
  min-height: 230px;
  place-items: center;
  border: 1px dashed rgba(17, 20, 17, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
  text-align: center;
}

.contact-blank strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.2rem 0;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  max-width: 740px;
  padding: 0 0 1.2rem;
  color: rgba(17, 20, 17, 0.68);
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 30px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-cta h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 253, 248, 0.68);
}

.footer-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    inset: 86px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(17, 20, 17, 0.94);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .section-head,
  .split,
  .seat-plan-grid,
  .booking-layout,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .gallery-grid,
  .original-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .journey-item {
    grid-template-columns: 80px 1fr;
  }

  .journey-item time {
    grid-column: 2;
  }

  .summary {
    position: static;
  }

  .seat-map-frame {
    position: static;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-actions .btn {
    display: none;
  }

  .lang-toggle {
    min-width: 42px;
  }

  .hero-content {
    padding-top: 132px;
  }

  .section {
    padding: 72px 0;
  }

  .experience-grid,
  .gallery-grid,
  .original-menu-grid,
  .field-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 340px;
  }

  .split-media,
  .split-media img {
    min-height: 380px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

[data-form-message] {
  display: block;
  min-height: 1.4rem;
  margin-top: 0.85rem;
  font-weight: 700;
}

[data-form-message][data-status="success"] {
  color: #23714a;
}

[data-form-message][data-status="error"] {
  color: var(--danger);
}

.toast-root {
  position: fixed;
  top: 96px;
  right: 20px;
  z-index: 1200;
  display: grid;
  gap: 0.75rem;
  width: min(360px, calc(100vw - 40px));
  pointer-events: none;
}

.toast {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 20, 17, 0.18);
  animation: toast-in 180ms ease-out;
}

.toast strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.toast span {
  line-height: 1.45;
}

.toast-success {
  border-left-color: #23714a;
}

.toast-error {
  border-left-color: var(--danger);
}

.toast.is-hiding {
  animation: toast-out 220ms ease-in forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateY(-8px); }
}