/* ===== Design tokens ===== */
:root {
  --bg: #faf7f2;
  --bg-warm: #f0e8dc;
  --bg-dark: #14100c;
  --bg-card: #ffffff;
  --text: #2a2218;
  --text-muted: #6b5d4f;
  --text-light: #faf7f2;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7b2e;
  --burgundy: #6b1c1c;
  --burgundy-light: #8f2a2a;
  --stone: #8a7968;
  --border: rgba(42, 34, 24, 0.1);
  --shadow-sm: 0 2px 12px rgba(20, 16, 12, 0.06);
  --shadow: 0 8px 32px rgba(20, 16, 12, 0.1);
  --shadow-lg: 0 20px 60px rgba(20, 16, 12, 0.18);
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 2px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover { color: var(--burgundy-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.container {
  width: min(1140px, 90vw);
  margin-inline: auto;
}

/* ===== Grain overlay ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  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; }

/* ===== Ornament ===== */
.ornament {
  width: 60px;
  height: 3px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament--light {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav.is-scrolled {
  padding: 0.75rem 5vw;
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__logo:hover { color: var(--gold-light); }

.nav__logo-icon {
  font-size: 1.1rem;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  position: relative;
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #fff;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__lang a {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius);
  color: var(--gold-light) !important;
  letter-spacing: 0.1em;
}

.nav__lang a::after {
  display: none;
}

.nav__lang a:hover {
  background: rgba(201, 168, 76, 0.15);
  color: #fff !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -5%;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.4) 0%, rgba(20, 16, 12, 0.15) 40%, rgba(20, 16, 12, 0.75) 100%),
    radial-gradient(ellipse at 50% 80%, rgba(107, 28, 28, 0.25) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 7rem 5vw 5rem;
  max-width: 820px;
}

.hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 0.55em;
  letter-spacing: 0.02em;
  margin-top: 0.4em;
  color: rgba(250, 247, 242, 0.85);
}

.hero__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: bounce 2s infinite;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn--primary:hover {
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* ===== Stats strip ===== */
.stats {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
  padding-bottom: 1rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section--gallery {
  background: var(--bg-warm);
}

.section--tickets {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.section--dark .section__tag {
  color: var(--gold-light);
}

.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: 0.03em;
}

.section__note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.about__text p { margin-bottom: 1.25rem; }
.about__text p:last-child { margin-bottom: 0; }

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about__image:hover img { transform: scale(1.03); }

.about__image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(20, 16, 12, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.about__facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.about__facts h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.about__facts dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.about__facts dl div:last-child { border-bottom: none; }

.about__facts dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__facts dd {
  font-weight: 500;
  text-align: right;
}

/* ===== Quote banner ===== */
.quote {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quote__bg {
  position: absolute;
  inset: 0;
}

.quote__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.88) 0%, rgba(107, 28, 28, 0.7) 100%);
}

.quote__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-light);
  padding: 4rem 5vw;
}

.quote__content p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.quote__content cite {
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.timeline__item {
  position: relative;
  padding: 2.5rem 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s;
}

.timeline__item:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.timeline__dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}

.timeline__item time {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.timeline__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.timeline__item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.65;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card:hover::before { transform: scaleX(1); }

.card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--burgundy);
  margin-bottom: 0.65rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery__item--wide {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery__item:not(.gallery__item--wide) {
  grid-column: span 5;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(20, 16, 12, 0.9));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(4px);
  transition: transform 0.4s var(--ease);
}

.gallery__item:hover figcaption { transform: translateY(0); }

.gallery__cat {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

/* ===== Tickets ===== */
.tickets {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.tickets__schedule {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.tickets__schedule h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.schedule { list-style: none; }

.schedule li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.schedule li:last-child { border-bottom: none; }

.schedule strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
}

.tickets__note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fff 0%, #fdf8ee 100%);
  box-shadow: var(--shadow);
}

.price-card__badge {
  position: absolute;
  top: -10px;
  right: 1.25rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.price-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.price-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.price-card__list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-card__list li {
  padding: 0.25rem 0;
}

.price-card__list li::before {
  content: "— ";
  color: var(--gold-dark);
}

/* ===== Visit ===== */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.visit__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visit__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.visit__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.visit__card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.visit__card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.visit__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
  background: #0c0a08;
  color: rgba(250, 247, 242, 0.55);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer__links h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links ul { list-style: none; }

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.88rem;
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

/* ===== Back to top ===== */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  color: var(--text-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--burgundy-light);
  transform: translateY(-3px);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 10, 8, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  animation: lbIn 0.4s var(--ease);
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.25s;
  line-height: 1;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.15); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about__side { max-width: 480px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .tickets { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-bottom: none; }
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery__item,
  .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__item img { min-height: 220px; aspect-ratio: 16/10; }
  .visit { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    background: var(--bg-dark);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav__links.is-open { transform: translateX(0); }

  .nav__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.8rem;
  }

  .hero__actions { flex-direction: column; align-items: center; }
  .timeline { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .visit__cards { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
