:root {
  --navy: #14324a;
  --navy-2: #1e4d6e;
  --sun: #f4b942;
  --sun-2: #e59a14;
  --coral: #e07a5f;
  --sky: #e8f4f8;
  --paper: #fff8ee;
  --cream: #fff1d6;
  --sand: #f3e0b8;
  --ink: #1a1714;
  --muted: #5d574c;
  --line: rgba(20, 50, 74, 0.12);
  --shadow: 0 18px 50px rgba(20, 50, 74, 0.12);
  --radius: 28px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 50; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; gap: 18px;
  padding: 4px 0;
}
.brand {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
  min-width: 0;
}
.brand img.lockup {
  width: auto;
  height: 74px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}
.brand small {
  display: block;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.25;
  text-align: center;
}
.foot-lockup {
  width: min(280px, 100%);
  height: auto;
  border-radius: 14px;
  margin-bottom: 12px;
}
nav.primary { margin-left: auto; display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
nav.primary a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 999px;
}
nav.primary a:hover, nav.primary a[aria-current="page"] { background: var(--cream); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; text-decoration: none; font-weight: 600;
  padding: 12px 18px; border: 2px solid transparent; cursor: pointer;
  font-family: inherit; font-size: 0.95rem;
}
.btn-sun { background: var(--sun); color: var(--navy); }
.btn-sun:hover { background: var(--sun-2); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-line { border-color: var(--navy); color: var(--navy); background: transparent; }
.menu-toggle {
  display: none; margin-left: auto;
  background: var(--navy); color: #fff; border: 0; border-radius: 999px;
  padding: 8px 14px; font: inherit;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,50,74,.15) 0%, rgba(20,50,74,.28) 40%, rgba(20,50,74,.82) 100%);
}
.hero .copy { position: relative; z-index: 1; padding: 48px 0 56px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sun); color: var(--navy);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--sun); }
.hero p.lede {
  font-size: 1.15rem; max-width: 38ch; color: rgba(255,255,255,.92); margin: 0 0 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.ticket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}
.ticket div {
  background: #fff;
  padding: 22px 20px;
}
.ticket strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
}
.ticket span { color: var(--muted); font-size: 0.92rem; }

/* Sections */
section { padding: 72px 0; }
.sec-head { max-width: 40rem; margin-bottom: 32px; }
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--navy);
}
.sec-head p { margin: 0; color: var(--muted); }
.sky { background: var(--sky); }
.sand { background: var(--cream); }

.cards-2, .cards-3 { display: grid; gap: 22px; }
.cards-2 { grid-template-columns: 1.1fr 1fr; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  display: flex; flex-direction: column;
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card .pad { padding: 22px 22px 26px; }
.card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.card p { margin: 0 0 14px; color: var(--muted); }
.chip {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.split img { border-radius: var(--radius); height: 420px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.prose h2, .prose h1 {
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.prose ul { padding-left: 1.1em; }
.prose li { margin: 0.4em 0; }

.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}
.map-grid iframe {
  width: 100%; height: 100%; min-height: 420px; border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hours-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--sun);
  opacity: 0.9;
}
.hours-card h2 { font-family: var(--display); margin: 0 0 8px; position: relative; }
.hours-card p, .hours-card address { position: relative; font-style: normal; }
.hours-card a { color: var(--sun); }
.hours-card a.btn {
  color: var(--navy);
}
.hours-card a.btn-sun:hover {
  color: var(--navy);
}

.quiet-sales {
  border: 2px dashed var(--sand);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  background: #fff;
}
.faq-list details {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  margin: 0 0 10px;
  border: 1px solid var(--line);
}
.faq-list summary { font-weight: 650; cursor: pointer; color: var(--navy); }
.faq-list p { margin: 10px 0 0; color: var(--muted); }

.page-hero {
  padding: 48px 0 24px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 8px 0 10px;
}
.crumbs { font-size: 0.85rem; color: var(--muted); }
.crumbs a { color: inherit; }

form.contact {
  display: grid; gap: 12px;
  background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow);
}
form.contact label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
form.contact input, form.contact textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; font: inherit; background: var(--paper);
}
.note { font-size: 0.9rem; color: var(--muted); }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.86);
  padding: 48px 0 28px;
}
.site-footer a { color: var(--sun); text-decoration: none; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.site-footer h3 { font-family: var(--display); color: #fff; margin: 0 0 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 6px 0; }
.tiny { margin-top: 28px; font-size: 0.8rem; opacity: 0.75; }

.es { font-style: italic; color: var(--coral); }

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  nav.primary {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper);
    padding: 12px 20px 20px;
    flex-direction: column; align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  nav.primary.open { display: flex; }
  .ticket, .cards-2, .cards-3, .split, .map-grid, .foot-grid, .quiet-sales {
    grid-template-columns: 1fr;
  }
  .split img, .card img { height: 220px; }
  .hero { min-height: 78vh; }
}
