:root {
  --pine: #16382c;
  --pine-2: #1f4d3c;
  --moss: #3d6b4f;
  --leaf: #5a8f68;
  --willow: #c9d6bc;
  --cream: #f3eee3;
  --paper: #fbf8f2;
  --ink: #1a221c;
  --muted: #5b675e;
  --wood: #8a5530;
  --gold: #c9a15b;
  --gold-2: #e8d7a8;
  --berry: #c4452d;
  --sky: #d5e6ec;
  --line: rgba(22, 56, 44, 0.12);
  --shadow: 0 24px 60px rgba(22, 56, 44, 0.12);
  --radius: 22px;
  --header-h: 78px;
  --max: 1180px;
  --serif: "Source Serif 4", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  font-synthesis: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine-2); }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--pine);
  padding: 8px 14px;
  z-index: 100;
}
.skip:focus { left: 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pine);
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; }
.brand span { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav a:hover,
.nav a[aria-current="page"] { background: var(--willow); color: var(--pine); }

.lang {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-left: 8px;
  max-width: 310px;
}
.lang a {
  padding: 5px 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.lang a.active { background: var(--pine); color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--pine); }
.btn-pine { background: var(--pine); color: var(--gold-2); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid color-mix(in srgb, var(--paper) 40%, transparent);
}
.btn-outline {
  background: transparent;
  color: var(--pine);
  border: 1px solid var(--pine);
}
.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--pine);
  margin: 7px 8px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(22,56,44,.18) 0%, rgba(22,56,44,.15) 40%, rgba(14,32,26,.82) 100%),
    url("../images/maze-bg.svg");
  background-size: cover, 520px;
  color: #fff;
}
.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 72px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-synthesis: none;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin: 12px 0 16px;
}
.hero p.lead {
  max-width: 46ch;
  font-size: 1.12rem;
  color: color-mix(in srgb, var(--paper) 86%, transparent);
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 760px;
}
.hero-meta div {
  border-top: 1px solid color-mix(in srgb, var(--gold-2) 28%, transparent);
  padding-top: 12px;
}
.hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}
.hero-meta span { font-size: 0.82rem; color: var(--gold-2); }

/* Sections */
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 42%);
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head h2,
.page-hero h1,
.split h2,
.block h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 8px 0 0;
  color: var(--pine);
}
.section-head p,
.page-hero p { margin: 0; color: var(--muted); max-width: 62ch; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.page-hero {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--willow) 55%, var(--paper)), var(--paper));
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.crumbs {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(22,56,44,.04);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 22px 22px 26px; }
.card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.card p { margin: 0 0 16px; color: var(--muted); }
.card a.more {
  font-weight: 700;
  text-decoration: none;
  color: var(--wood);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse img { order: 2; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.attraction {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  min-height: 118px;
}
.attraction .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
}
.attraction h3 {
  margin: 4px 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.attraction p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.band {
  background: var(--pine);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/maze-bg.svg");
  background-size: 640px;
  opacity: .35;
  color: #fff;
}
.band .section { position: relative; }
.band h2, .band p { color: var(--paper); }
.band p { color: color-mix(in srgb, var(--paper) 80%, transparent); }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: color-mix(in srgb, #fff 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold-2) 22%, transparent);
  border-radius: 20px;
  padding: 22px;
}
.quote p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.4; margin: 0 0 16px; }
.quote cite { font-style: normal; font-size: 0.86rem; color: var(--gold-2); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.price-table th { background: var(--pine); color: var(--gold-2); font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child,
.price-table th:last-child { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; }
.note { color: var(--muted); font-size: 0.92rem; }

.hours, .facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}
.fact b { display: block; color: var(--pine); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery a:hover img { transform: scale(1.05); }
.gallery a:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery a:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery a:nth-child(n+3) { grid-column: span 4; grid-row: span 2; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card {
  background: var(--pine);
  color: var(--paper);
  border-radius: 28px;
  padding: 32px;
}
.contact-card a { color: var(--gold-2); }
.contact-card h2 { color: var(--paper); margin-top: 0; }
.map {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  filter: saturate(0.85);
}

form {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
label { font-size: 0.86rem; font-weight: 700; color: var(--pine); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--paper);
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status { min-height: 1.2em; font-size: 0.92rem; }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--pine);
}
.faq p { margin: 10px 0 4px; color: var(--muted); }

.ticket {
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1px dashed var(--wood);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}
.ticket h3 { font-family: var(--serif); font-size: 2rem; margin: 0 0 8px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.badge {
  background: var(--willow);
  color: var(--pine);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

footer {
  background: #10261e;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  padding: 56px 0 28px;
  margin-top: 20px;
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
footer h3 {
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--gold-2); }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.legal {
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.84rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 13, .96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 0;
}
.lightbox.open { display: flex; }
.lightbox.slideshow img {
  max-width: 100%;
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity .28s ease, transform .28s ease;
}
.lightbox.slideshow img.is-in {
  opacity: 1;
  transform: none;
}
.lb-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  max-height: 100vh;
  padding: 56px 72px 72px;
}
.lb-stage figcaption {
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  font-size: 0.92rem;
  margin-top: 14px;
  text-align: center;
  max-width: 70ch;
}
.lb-close,
.lb-nav,
.lb-play {
  position: absolute;
  border: 0;
  cursor: pointer;
  background: color-mix(in srgb, var(--gold) 92%, #fff);
  color: var(--pine);
}
.lb-close {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 2;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lb-play {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.85rem;
}
.gallery a { cursor: zoom-in; }

@media (max-width: 980px) {
  .lb-stage { padding: 64px 12px 80px; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .nav-toggle { display: block; margin-left: 8px; order: 3; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
  .nav.open { display: flex; }
  .header-cta {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 16px;
    font-size: 0.88rem;
    order: 2;
  }
  .hero-meta,
  .grid-3, .grid-4, .quote-grid, .attraction-grid,
  .section-head, .split, .split.reverse,
  .contact-grid, .footer-inner, .hours, .facts {
    grid-template-columns: 1fr;
  }
  .split.reverse img { order: 0; }
  .split img { height: 280px; }
  .gallery { grid-auto-rows: 110px; }
  .gallery a:nth-child(1),
  .gallery a:nth-child(2),
  .gallery a:nth-child(n+3) { grid-column: span 6; grid-row: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

@media (max-width: 640px) {
  .gallery a:nth-child(n) { grid-column: span 12; }
  .grid-2 { grid-template-columns: 1fr; }
}
