:root {
  --gold: #e0c15a;
  --gold-bright: #f3d77a;
  --gold-deep: #b8922a;
  --gold-ink: #8a6c14;
  --champagne: #f6ecd0;
  --ivory: #f7f1e4;
  --paper: #fffdf8;
  --black: #0b0b0d;
  --black-soft: #141417;
  --black-card: #1c1c20;
  --line: rgba(224, 193, 90, 0.28);
  --line-strong: rgba(224, 193, 90, 0.55);
  --muted: #c9c0aa;
  --muted-dark: #5c5648;
  --danger: #c45c4a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --header-h: 84px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ivory);
  background: var(--black);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--champagne);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

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

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

.display {
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 40rem;
}

.muted {
  color: var(--muted);
}

.note {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-goldline {
  height: 3px;
  background: linear-gradient(90deg, #8a6c14, var(--gold-bright), #8a6c14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid var(--line-strong);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav ul {
  display: flex;
  gap: 0.35rem 1.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--black);
}

.btn-gold:hover {
  color: var(--black);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ivory);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--gold-bright);
}

.section-ivory .btn-ghost {
  color: var(--black);
  border-color: rgba(11, 11, 13, 0.28);
}

.section-ivory .btn-ghost:hover {
  color: var(--gold-ink);
}

.btn-dark {
  background: var(--black);
  color: var(--gold-bright);
  border-color: var(--black);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6.5rem) 0 4rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 193, 90, 0.14), transparent 42%),
    linear-gradient(180deg, #101014 0%, var(--black) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background:
    linear-gradient(to bottom, transparent, var(--black)),
    repeating-conic-gradient(#16161a 0% 25%, #0e0e11 0% 50%) 0 0 / 36px 36px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 1.4rem 1.2rem 1rem;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.kicker {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-ivory {
  background: var(--ivory);
  color: var(--black);
}

.section-ivory .lede,
.section-ivory .muted,
.section-ivory p {
  color: #3d3a33;
}

.section-ivory h2,
.section-ivory h3 {
  color: var(--black);
}

.section-soft {
  background: var(--black-soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.index {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.grid-3,
.grid-2,
.grid-4,
.product-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.section-ivory .card {
  background: var(--paper);
  border-color: rgba(138, 108, 20, 0.18);
}

.card-gold {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(224, 193, 90, 0.12), transparent 40%),
    var(--black-card);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-bright);
}

/* Tiers */
.tier {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tier .price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--gold-bright);
  margin: 0.4rem 0 0.2rem;
}

.section-ivory .tier .price {
  color: var(--gold-ink);
}

.price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
}

.tier ul {
  margin: 1rem 0 1.4rem;
  padding-left: 1.1rem;
  flex: 1;
}

.tier li + li {
  margin-top: 0.45rem;
}

.featured {
  position: relative;
}

.featured::before {
  content: "Most requested";
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.compare th,
.compare td {
  text-align: left;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare th {
  font-family: var(--font-display);
  font-weight: 600;
}

/* Events / products */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  font: inherit;
}

.filter-btn[aria-pressed="true"],
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.section-ivory .filter-btn {
  color: var(--black);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-visual {
  height: 190px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(224, 193, 90, 0.2), transparent 50%),
    repeating-conic-gradient(#1a1a1e 0% 25%, #121214 0% 50%) 50% 50% / 28px 28px;
  border: 1px solid var(--line);
}

.product-visual svg {
  width: 86px;
  height: 86px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.7rem 0 1rem;
}

/* Forms */
form {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

#franchise-inquiry {
  margin-top: 1.2rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #101013;
  color: var(--ivory);
  font: inherit;
}

.section-ivory input,
.section-ivory select,
.section-ivory textarea {
  background: #fff;
  color: var(--black);
  border-color: rgba(138, 108, 20, 0.28);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
}

.form-status.ok {
  color: #8fd18f;
}

.form-status.err {
  color: #f0a29a;
}

.section-ivory .form-status.ok {
  color: #2d6a2d;
}

.section-ivory .form-status.err {
  color: #a33b32;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.schedule th,
.schedule td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.schedule th {
  background: rgba(224, 193, 90, 0.08);
  font-family: var(--font-display);
}

/* Locations */
.city {
  min-height: 100%;
}

.pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--gold);
}

.pill.open {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Page hero */
.page-hero {
  padding: 3.2rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224, 193, 90, 0.12), transparent 40%),
    var(--black);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: #080809;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  width: 92px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 22rem;
}

.site-footer h2 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.site-footer a {
  color: var(--ivory);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Results */
.result-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.6rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

/* Hidden filter state */
.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .product-grid,
  .footer-grid,
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #101013;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.3rem;
  }

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

  .site-nav ul {
    flex-direction: column;
  }

  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .product-grid,
  .footer-grid,
  .stat-row,
  .result-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.2rem;
  }
}
