/* Enchanted Holiday Experience — premium Christmas circus
   Palette: deep red, dark evergreen, cream, antique gold, soft snow
   Fonts: Cormorant Garamond (display) + Source Sans 3 (body) */

:root {
  --red: #8f1a1a;
  --red-deep: #6b1212;
  --red-bright: #b42323;
  --evergreen: #0a2f1f;
  --evergreen-mid: #0f3d2a;
  --evergreen-soft: #164a34;
  --cream: #f7f0e4;
  --cream-deep: #ebe2d0;
  --ivory: #faf6ee;
  --gold: #c4a35a;
  --gold-bright: #d4b86a;
  --gold-dim: #a8883f;
  --snow: #f5f7f8;
  --ink: #1a1814;
  --ink-muted: #4a453c;
  --ink-on-dark: #f7f0e4;
  --ink-muted-dark: rgba(247, 240, 228, 0.72);
  --focus: var(--gold);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --max: 72rem;
  --narrow: 38rem;
  --header-h: 4.25rem;
  --radius: 0.35rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 48px rgba(10, 47, 31, 0.12);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .snowfall { display: none !important; }
  .mobile-float-cta { display: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--evergreen); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  background: rgba(196, 163, 90, 0.35);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

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

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-lg { padding: 1rem 1.75rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--red);
  color: var(--snow);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--snow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(247, 240, 228, 0.45);
}
.btn-ghost:hover {
  background: rgba(247, 240, 228, 0.1);
  color: var(--ivory);
  border-color: var(--gold);
}
.section .btn-ghost,
.notify-success .btn-ghost {
  color: var(--evergreen);
  border-color: rgba(10, 47, 31, 0.3);
}
.section .btn-ghost:hover,
.notify-success .btn-ghost:hover {
  color: var(--red);
  border-color: var(--red);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 47, 31, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
}
.header-garland {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    var(--gold) 25%,
    var(--evergreen-soft) 50%,
    var(--gold) 75%,
    var(--red) 100%
  );
  opacity: 0.85;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
  margin-right: auto;
}
.logo-img {
  width: 2.5rem;
  height: auto;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}


.header-cta {
  margin-left: auto;
  margin-right: 0.5rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.7rem;
  white-space: nowrap;
}
.header-inner .nav-toggle { flex-shrink: 0; }
@media (min-width: 880px) {
  .header-cta { display: none; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--cream);
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--evergreen);
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s var(--ease), opacity 0.25s;
}
.site-nav.is-open {
  max-height: 24rem;
  opacity: 1;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.site-nav a:hover { background: rgba(247, 240, 228, 0.08); color: var(--gold-bright); }
.site-nav .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 700;
}

.mobile-float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  padding: 0.85rem 1.25rem;
  background: var(--red);
  color: var(--snow);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(143, 26, 26, 0.45);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.mobile-float-cta:hover {
  background: var(--red-deep);
  color: var(--snow);
  transform: translateY(-2px);
}
.mobile-float-cta.is-hidden { opacity: 0; pointer-events: none; }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    max-height: none;
    opacity: 1;
    overflow: visible;
    background: transparent;
    border: 0;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.15rem;
  }
  .site-nav a { padding: 0.45rem 0.7rem; font-size: 0.875rem; }
  .site-nav .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.65rem 1.15rem;
  }
  .mobile-float-cta { display: none; }
  .logo-img { width: 2.75rem; }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(100vh, 52rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink-on-dark);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 47, 31, 0.45) 0%, rgba(10, 47, 31, 0.55) 40%, rgba(10, 20, 16, 0.88) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(196, 163, 90, 0.18), transparent 55%);
}
.snowfall {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -10%;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  animation: fall linear infinite;
  opacity: 0.55;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}
.snowflake:nth-child(3n) { width: 3px; height: 3px; opacity: 0.35; }
.snowflake:nth-child(5n) { width: 5px; height: 5px; opacity: 0.7; }
@keyframes fall {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(110vh) translateX(20px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 3.5rem;
  text-align: center;
}
.hero-logo {
  width: 5.5rem;
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: 0.25rem;
  box-shadow:
    0 0 0 2px rgba(196, 163, 90, 0.55),
    0 12px 40px rgba(0, 0, 0, 0.35);
}
.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero h1 {
  margin: 0 auto 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 7vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ivory);
}
.hero-dates {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.hero-venue {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--ink-muted-dark);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero-ornament {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem 1.5rem;
}
.ornament-line {
  display: block;
  width: min(28vw, 8rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
}

/* —— Magic story —— */
.magic {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 163, 90, 0.12), transparent 50%),
    var(--cream);
  text-align: center;
}
.magic h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--evergreen);
  line-height: 1.15;
}
.magic-lede {
  margin: 0;
  font-size: 1.125rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* —— Large experience blocks —— */
.experience-block {
  padding: 0 0 3.5rem;
}
.experience-dark {
  background: var(--evergreen);
  color: var(--ink-on-dark);
}
.experience-cream {
  background: var(--cream);
  color: var(--ink);
}
.experience-visual {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}
.experience-visual > img:first-child {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.experience-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.experience-visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 7rem;
  max-height: 11rem;
  object-fit: cover;
}
.experience-visual-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.experience-visual-grid-3 img { max-height: 10rem; }
.experience-visual-grid-2 { grid-template-columns: 1fr 1fr; }
.experience-visual-grid-2 img { max-height: 14rem; min-height: 10rem; }

.experience-copy { padding-top: 0.25rem; }
.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.experience-cream .section-kicker { color: var(--red); }
.experience-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
}
.experience-dark .experience-copy h2 { color: var(--ivory); }
.experience-cream .experience-copy h2 { color: var(--evergreen); }
.experience-copy p {
  margin: 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.experience-dark .experience-copy p { color: var(--ink-muted-dark); }
.experience-cream .experience-copy p { color: var(--ink-muted); }

@media (min-width: 768px) {
  .experience-visual > img:first-child {
    max-height: 36rem;
    aspect-ratio: 21 / 9;
  }
  .experience-visual-grid img { max-height: 14rem; min-height: 10rem; }
  .experience-block { padding-bottom: 4.5rem; }
}

/* —— Family beat —— */
.family {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  color: var(--ink-on-dark);
  overflow: hidden;
}
.family-media {
  position: absolute;
  inset: 0;
}
.family-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.family-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 47, 31, 0.25), rgba(10, 20, 16, 0.88));
}
.family-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
  max-width: 36rem;
}
.family h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
}
.family p {
  margin: 0;
  color: var(--ink-muted-dark);
  font-size: 1.0625rem;
}

/* —— CTA band —— */
.cta-band {
  background:
    linear-gradient(135deg, var(--red-deep), var(--red) 45%, var(--red-deep));
  color: var(--snow);
  padding: 3rem 0;
  text-align: center;
  border-block: 1px solid rgba(196, 163, 90, 0.35);
}
.cta-band-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
}
.cta-band-meta {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.cta-band .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.cta-band .btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
}

/* —— Sections shared —— */
.section { padding: 4rem 0; }
.section-header {
  margin-bottom: 2rem;
  text-align: center;
}
.section-header h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--evergreen);
  line-height: 1.15;
}
.section-intro {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--ink-muted);
}
.section-cta {
  margin-top: 2.25rem;
  text-align: center;
}

/* —— Info —— */
.info { background: var(--ivory); }
.info-grid {
  display: grid;
  gap: 1rem;
}
.info-card {
  padding: 1.5rem 1.35rem;
  background: var(--cream);
  border: 1px solid rgba(10, 47, 31, 0.08);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}
.info-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--evergreen);
}
.info-highlight {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--red);
}
.info-card p { margin: 0; color: var(--ink-muted); font-size: 0.98rem; }
.info-card .address { margin-bottom: 0.65rem; }
.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.info-note {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: rgba(10, 47, 31, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.35rem 0.35rem 0;
}
.info-note p { margin: 0; color: var(--ink-muted); font-size: 0.98rem; }

@media (min-width: 700px) {
  .info-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

/* —— Tickets —— */
.tickets {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 163, 90, 0.1), transparent 45%),
    var(--cream);
}
.tickets-status {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  padding: 1.25rem 1.35rem;
  text-align: center;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: 0.5rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
}
.tickets-status-label {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.tickets-status-copy {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted-dark);
}

.price-layout {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.price-card,
.price-aside {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--ivory);
  border: 1px solid rgba(10, 47, 31, 0.1);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}
.price-card h3,
.price-aside h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--evergreen);
}
.price { margin: 0 0 1rem; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.price-unit {
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.price-details {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-details li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(10, 47, 31, 0.08);
}
.price-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.price-details em { font-style: italic; color: var(--ink); }
.price-card-vip {
  border-color: rgba(196, 163, 90, 0.55);
  background:
    linear-gradient(180deg, rgba(196, 163, 90, 0.12), transparent 40%),
    var(--ivory);
}
.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  padding: 0.25rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
}
.price-aside .price-amount { color: var(--evergreen); }

@media (min-width: 800px) {
  .price-layout {
    grid-template-columns: 1.15fr 1fr 0.9fr;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.notify-panel {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: 0.5rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
}
.notify-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  text-align: center;
  color: var(--ivory);
}
.notify-intro {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-muted-dark);
}
.notify-intro a { color: var(--gold-bright); }
.notify-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.notify-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid transparent;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}
.notify-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.form-hint {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--ink-muted-dark);
}
.form-error {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #ffb4b4;
}
.notify-success {
  text-align: center;
}
.notify-success h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.notify-success p {
  margin: 0 0 1.25rem;
  color: var(--ink-muted-dark);
  font-size: 0.95rem;
}
.notify-success a { color: var(--gold-bright); }
.notify-success .btn-ghost {
  color: var(--cream);
  border-color: rgba(247, 240, 228, 0.4);
}

/* —— FAQ —— */
.faq { background: var(--ivory); }
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(10, 47, 31, 0.1);
  border-radius: 0.45rem;
  padding: 0 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.5rem 1.05rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--evergreen);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}
.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}
.faq-item a { font-weight: 600; }

/* —— Final CTA —— */
.final-cta {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-on-dark);
  overflow: hidden;
}
.final-cta-media { position: absolute; inset: 0; }
.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.final-cta-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 47, 31, 0.55), rgba(10, 20, 16, 0.9)),
    radial-gradient(ellipse at 50% 40%, rgba(196, 163, 90, 0.2), transparent 55%);
}
.final-cta-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}
.final-cta h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
}
.final-dates {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}
.final-venue {
  margin: 0 0 1.5rem;
  color: var(--ink-muted-dark);
  font-size: 1rem;
}

/* —— Footer —— */
.site-footer {
  background: #061a12;
  color: var(--ink-muted-dark);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.25);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-logo {
  width: 3.25rem;
  height: auto;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.4);
}
.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tag {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.footer-meta p { margin: 0 0 0.4rem; font-size: 0.9rem; }
.footer-meta a { color: var(--gold-bright); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 240, 228, 0.1);
  font-size: 0.8rem;
}

@media (min-width: 700px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem 3rem;
  }
  .footer-copy { grid-column: 1 / -1; }
}

/* —— Candy-cane / string-light accents (subtle) —— */
.experience-dark .experience-copy::before,
.cta-band-inner::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--cream));
  border-radius: 2px;
}
.cta-band-inner::before { margin-inline: auto; }
.experience-cream .experience-copy::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--evergreen), var(--gold), var(--red));
  border-radius: 2px;
}


.hero-media .hero-photo {
  object-fit: cover;
  object-position: center 35%;
}
