/* ==========================================================================
   Mountain Village Oktoberfest — shared stylesheet
   ========================================================================== */

:root {
  --navy-deep:   #142544;
  --navy:        #203a73;
  --navy-mid:    #2c4d94;
  --blue:        #3a90d2;
  --gold:        #e9823b;
  --gold-light:  #f0a463;
  --gold-pale:   #e5d9c3;
  --green:       #31452b;
  --teal:        #3a90d2;
  --teal-dark:   #1f5f96;
  --cream:       #f8f4eb;
  --white:       #ffffff;
  --ink:         #1a2440;
  --ink-soft:    #445;
  --radius:      14px;
  --shadow:      0 14px 34px rgba(11, 21, 51, 0.16);
  --shadow-sm:   0 6px 16px rgba(11, 21, 51, 0.12);
  --maxw:        1180px;
  --font-display: "Maltiner Display", "Georgia", serif;
  --font-head:   "Dealers Solid", "Arial Narrow", sans-serif;
  --font-body:   "Manrope", "Segoe UI", Arial, sans-serif;
}

@font-face {
  font-family: "Maltiner Display";
  src: url("../fonts/MaltinerDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dealers Solid";
  src: url("../fonts/Dealers-Solid.woff2") format("woff2"),
       url("../fonts/Dealers-Solid.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.02;
  font-weight: 400;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--teal-dark);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.eyebrow.on-dark {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  border-color: rgba(246, 217, 153, 0.55);
}

/* ---------------------------- Buttons ---------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--gold-light); }

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(246, 217, 153, 0.12); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ---------------------------- Header ---------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 56px; width: auto; }

.brand-text {
  color: var(--white);
  font-family: var(--font-head);
  line-height: 1.05;
}
.brand-text .line1 { font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold-light); text-transform: uppercase; }
.brand-text .line2 { font-size: 1.35rem; letter-spacing: 0.03em; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  color: var(--gold-pale);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.main-nav a.active { color: var(--navy-deep); background: var(--gold); }

.main-nav a.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  margin-left: 6px;
}
.main-nav a.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------------------------- Hero ---------------------------- */

.hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 78px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(232,180,74,0.16) 25%, transparent 25%),
    linear-gradient(225deg, rgba(232,180,74,0.16) 25%, transparent 25%),
    linear-gradient(45deg, rgba(232,180,74,0.16) 25%, transparent 25%),
    linear-gradient(315deg, rgba(232,180,74,0.16) 25%, transparent 25%);
  background-position: 40px 0, 40px 0, 0 0, 0 0;
  background-size: 80px 80px;
  background-repeat: repeat;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-eventdate {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }

.hero p.lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 46ch;
}

.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-art { position: relative; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; border-radius: 20px; box-shadow: var(--shadow); border: 4px solid rgba(246,217,153,0.35); }

/* ---------------------------- Line-art icon graphics (replace photography) ---------------------------- */
/* Boxless, oversized monoline icons in the brand's outline style. Color is set purely by section
   context (navy on light backgrounds, gold on dark) via currentColor, no container/background box. */

.icon-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
  color: var(--navy);
}
.section-navy .icon-graphic,
.hero .icon-graphic,
.icon-graphic.on-dark { color: var(--gold); }

.icon-graphic svg {
  width: 100%;
  max-width: 230px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(11,21,51,0.12));
}
.section-navy .icon-graphic svg,
.hero .icon-graphic svg { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25)); }

.icon-graphic .icon-label {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  text-align: center;
}

/* Compact variant for grid/card thumbnails */
.icon-graphic.compact { gap: 0; padding: 30px 0 6px; }
.icon-graphic.compact svg { max-width: 96px; }
.card .icon-graphic.compact { color: var(--navy); }

.hero-art.icon-graphic svg { max-width: 190px; }

/* Photo-illustration variant (PNG line art instead of inline SVG) */
.icon-graphic.photo-graphic img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 16px rgba(11,21,51,0.12));
}
.section-navy .icon-graphic.photo-graphic img,
.hero .icon-graphic.photo-graphic img { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25)); }

.icon-graphic.photo-graphic.compact { gap: 0; padding: 24px 0 6px; }
.icon-graphic.photo-graphic.compact img { max-width: 118px; filter: drop-shadow(0 4px 10px rgba(11,21,51,0.10)); }

/* Standalone badge illustration (image already includes its own circular frame) */
.icon-badge-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto;
}
.icon-badge-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

.hero.hero-compact { padding: 56px 0 64px; }
.hero.hero-compact .container { grid-template-columns: 1fr; text-align: left; }
.hero.hero-compact p.lede { max-width: 70ch; }

/* ---------------------------- Hero photo slider ---------------------------- */

.hero.hero-photo {
  padding: 0;
  width: 100%;
  aspect-ratio: 1.72;
  max-height: 760px;
  min-height: 320px;
}
.hero.hero-photo::before { display: none; }

.hero.hero-intro { padding: 52px 0 60px; }

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(11,21,51,0.45) 0%, rgba(11,21,51,0) 20%, rgba(11,21,51,0) 75%, rgba(11,21,51,0.35) 100%);
  pointer-events: none;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(11,21,51,0.35);
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-slider__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.hero-slider__arrow--prev { left: 20px; }
.hero-slider__arrow--next { right: 20px; }

.hero-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-slider__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.hero-slider__dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

@media (max-width: 720px) {
  .hero.hero-photo { aspect-ratio: 1.1; min-height: 320px; }
  .hero-slider__arrow { display: none; }
}

/* ---------------------------- Sections ---------------------------- */

section { padding: 76px 0; }
section.tight { padding: 48px 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-gold { background: linear-gradient(180deg, var(--gold-pale), var(--gold-light)); }

.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-navy .section-head p { color: rgba(255,255,255,0.82); }

.divider-wave {
  height: 46px;
  background: var(--gold);
  clip-path: polygon(0 40%, 5% 55%, 10% 40%, 15% 55%, 20% 40%, 25% 55%, 30% 40%, 35% 55%, 40% 40%, 45% 55%, 50% 40%, 55% 55%, 60% 40%, 65% 55%, 70% 40%, 75% 55%, 80% 40%, 85% 55%, 90% 40%, 95% 55%, 100% 40%, 100% 100%, 0 100%);
}

/* ---------------------------- Cards / grids ---------------------------- */

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.25rem; color: var(--navy); }
.card-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card-tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--gold-pale);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.card-nophoto { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); color: var(--white); }
.card-nophoto h3 { color: var(--white); }
.card-nophoto p { color: rgba(255,255,255,0.82); }
.card-nophoto .card-tag { background: rgba(255,255,255,0.12); color: var(--gold-light); }
.card-nophoto .icon-badge { margin: 24px 24px 0; }
.card-nophoto .icon-graphic,
.card-nophoto .icon-graphic.compact { color: var(--gold-light); margin-top: 6px; }
.card-nophoto .icon-graphic svg { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25)); }

.icon-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.icon-badge svg { width: 30px; height: 30px; }

/* ---------------------------- Feature (photo + text) rows ---------------------------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature.reverse .feature-media { order: 2; }
.feature.reverse .feature-copy { order: 1; }

.feature-media img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  object-fit: cover;
  width: 100%;
}

.feature-copy h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.feature-copy p { color: var(--ink-soft); }
.section-navy .feature-copy p { color: rgba(255,255,255,0.85); }

.feature + .feature { margin-top: 90px; }

.feature.feature-stacked {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 34px;
}
.feature.feature-stacked .feature-media {
  width: 100%;
  max-width: 620px;
}
.feature.feature-stacked .feature-media img {
  aspect-ratio: auto;
  filter: drop-shadow(0 18px 28px rgba(20, 30, 60, 0.22));
}
.feature.feature-stacked .feature-copy { max-width: 68ch; }
.feature.feature-stacked .feature-copy p { text-align: left; }
.feature.feature-stacked .hero-actions { justify-content: center; margin-top: 6px; }

/* ---------------------------- Anchor sub-nav (in-page section jump) ---------------------------- */

.subnav {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--gold);
  position: sticky;
  top: 77px;
  z-index: 90;
}
.subnav .container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.subnav a {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.subnav a:hover { background: rgba(20,35,92,0.1); }
.subnav a.is-active { background: var(--navy); color: var(--white); }

/* ---------------------------- Schedule page ---------------------------- */

.day-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.day-tab {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.day-tab.is-active, .day-tab:hover { background: var(--navy); color: var(--white); }

.day-panel { display: none; }
.day-panel.is-active { display: block; }

.timeline { max-width: 880px; margin: 0 auto; }
.timeline-day-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  color: var(--teal-dark);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin: 34px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.timeline-day-title:first-child { margin-top: 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(20,35,92,0.18);
  align-items: baseline;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.timeline-event { font-size: 1rem; color: var(--ink); font-weight: 600; }
.timeline-event .venue { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.9rem; margin-top: 2px; }

.note-box {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 880px;
  margin: 40px auto 0;
}

/* ---------------------------- Beverage grid ---------------------------- */

.bev-card { text-align: center; }
.bev-card img { border-radius: 12px; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.bev-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; }
.section-navy .bev-card h4 { color: var(--gold-light); }
.bev-card ul { list-style: none; padding: 0; margin: 8px 0 0; color: var(--ink-soft); font-size: 0.92rem; }
.section-navy .bev-card ul { color: rgba(255,255,255,0.78); }
.bev-card li { padding: 2px 0; }

/* ---------------------------- Tickets page ---------------------------- */

.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.ticket-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.ticket-card.featured { border-color: var(--gold); transform: scale(1.03); box-shadow: var(--shadow); position: relative; }
.ticket-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.ticket-name { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; color: var(--teal-dark); letter-spacing: 0.08em; font-size: 0.95rem; margin-bottom: 6px; }
.ticket-price { font-family: var(--font-body); font-weight: 800; font-size: 2.6rem; color: var(--navy); margin-bottom: 4px; }
.ticket-price small { font-size: 1rem; color: var(--ink-soft); font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.ticket-desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }
.ticket-list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.ticket-list li { padding: 7px 0; border-top: 1px solid rgba(20,35,92,0.08); font-size: 0.94rem; color: var(--ink); }
.ticket-list li::before { content: "✓ "; color: var(--teal-dark); font-weight: 700; }
.ticket-list li:first-child { border-top: none; }

.placeholder-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,180,74,0.16);
  border: 1px dashed var(--gold);
  color: var(--navy);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-top: 26px;
}

/* ---------------------------- Footer ---------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 54px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { height: 60px; }
.footer-brand h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------------------------- CTA band ---------------------------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------------------------- Responsive ---------------------------- */

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .ticket-grid { grid-template-columns: 1fr; }
  .ticket-card.featured { transform: none; }
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero-art { max-width: 520px; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 77px; left: 0; right: 0; background: var(--navy); flex-direction: column; align-items: stretch; padding: 10px 16px 20px; box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all 0.18s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 12px 10px; }
  .main-nav a.nav-cta { margin-left: 0; text-align: center; margin-top: 6px; }
  .nav-toggle { display: inline-flex; }
  .subnav { top: 68px; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature.reverse .feature-media { order: 1; }
  .feature.reverse .feature-copy { order: 2; }
  .feature + .feature { margin-top: 54px; }
  section { padding: 56px 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .footer-brand { flex-direction: column; }
}
