/* ============================================
   The Great British Curry Festival 2026
   Unified Design System — Clean Rebuild
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');


/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
  /* Brand Palette */
  --green:      #0a4f33;
  --green-dark: #083d28;
  --orange:     #E0551F;
  --teal:       #2D9296;
  --purple:     #6B2F7C;
  --red:        #D32F2F;
  --gold:       #D4A03C;
  --cream:      #FFF8EE;
  --white:      #ffffff;
  --black:      #1a1a1a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width:     1100px;
  --section-py:    clamp(64px, 8vw, 96px);
  --section-py-sm: clamp(48px, 6vw, 64px);
  --gutter:        24px;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-pill:   100px;

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}


/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul, ol { list-style: none; }

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
}


/* ============================================
   3. ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================
   4. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1, .h1 { font-size: clamp(2.75rem, 2rem + 3.5vw, 5rem); }
h2, .h2 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem); }
h3, .h3 { font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2rem); }
h4, .h4 { font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem); }

p + p { margin-top: 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.section--cream .eyebrow,
.section--white .eyebrow { color: var(--orange); }

.section--green .eyebrow,
.section--green-dark .eyebrow,
.section--teal .eyebrow,
.section--purple .eyebrow,
.section--orange .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn:active { transform: translateY(0); }

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

/* Primary — gradient orange */
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224, 85, 31, 0.3);
  position: relative;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ff6b35 0%, var(--orange) 100%);
  box-shadow: 0 12px 40px rgba(224, 85, 31, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Primary glow (links only) */
a.btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange), var(--gold), var(--orange));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s var(--ease);
}

a.btn--primary:hover::before { opacity: 0.6; }

/* Arrow on CTA link buttons */
a.btn--primary::after,
.cta-band .btn--secondary::after {
  content: '\2192';
  display: inline-block;
  font-size: 1.2em;
  transition: transform 0.3s var(--ease);
}

a.btn--primary:hover::after,
.cta-band .btn--secondary:hover::after {
  transform: translateX(4px);
}

/* Secondary — white outline */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* Green */
.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--green:hover { background: var(--green-dark); }

/* Teal */
.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover { background: #247a7d; }

/* Small */
.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}


/* ============================================
   6. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 79, 51, 0.15);
  border-bottom: 3px solid transparent;
  transition: background var(--duration) var(--ease),
              border-bottom-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(10, 79, 51, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--orange);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  white-space: nowrap;
}

.nav__logo img {
  height: 42px;
  width: auto;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Animated underlines */
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA button in nav — no underline */
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(224, 85, 31, 0.3);
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav__cta:hover {
  background: linear-gradient(135deg, #ff6b35, var(--orange));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 85, 31, 0.4);
}

.nav__links .nav__cta::after { display: none; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) { opacity: 0; }

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — smooth slide */
.nav__mobile {
  display: block;
  overflow: hidden;
  max-height: 0;
  background: var(--green-dark);
  padding: 0 var(--gutter);
  transition: max-height 0.45s var(--ease),
              padding 0.45s var(--ease);
}

.nav__mobile.open {
  max-height: 500px;
  padding: 24px var(--gutter);
}

.nav__mobile a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__mobile a:last-child { border-bottom: none; }

.nav__mobile .nav__cta {
  display: block;
  text-align: center;
  margin-top: 16px;
}


/* ============================================
   7. HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px var(--gutter) 80px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero colour fallbacks */
.hero--green  { background-color: var(--green); }
.hero--orange { background-color: var(--orange); }
.hero--teal   { background-color: var(--teal); }
.hero--purple { background-color: var(--purple); }
.hero--cream  { background-color: var(--cream); color: var(--black); }

/* Overlays */
.hero--green .hero__bg::after,
.hero .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 79, 51, 0.82) 0%, rgba(8, 61, 40, 0.92) 100%);
}

.hero--orange .hero__bg::after {
  background: linear-gradient(180deg, rgba(224, 85, 31, 0.82) 0%, rgba(180, 68, 25, 0.92) 100%);
}

.hero--teal .hero__bg::after {
  background: linear-gradient(180deg, rgba(45, 146, 150, 0.82) 0%, rgba(36, 117, 120, 0.92) 100%);
}

.hero--purple .hero__bg::after {
  background: linear-gradient(180deg, rgba(107, 47, 124, 0.82) 0%, rgba(86, 38, 99, 0.92) 100%);
}

.hero--cream .hero__bg::after {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.88) 0%, rgba(255, 248, 238, 0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-fade-up 0.8s ease-out 0.3s forwards;
}

.hero__title {
  font-size: clamp(3rem, 2.25rem + 4vw, 5.5rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: hero-fade-up 0.8s ease-out 0.5s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  text-shadow: 0 0 40px rgba(212, 160, 60, 0.3);
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0.02em;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(212, 160, 60, 0.6), var(--gold), rgba(212, 160, 60, 0.6));
  border-radius: 2px;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: hero-fade-up 0.8s ease-out 0.7s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: hero-fade-up 0.8s ease-out 0.9s forwards;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Legal page hero (no bg image) */
.hero--legal {
  min-height: 40vh;
  padding: 140px var(--gutter) 80px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '\2304';
  font-size: 2rem;
  line-height: 1;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.4; }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}


/* ============================================
   8. TICKER / MARQUEE
   ============================================ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ticker--green  { background: var(--green);  color: var(--white); }
.ticker--orange { background: var(--orange); color: var(--white); }
.ticker--teal   { background: var(--teal);   color: var(--white); }
.ticker--purple { background: var(--purple); color: var(--white); }

.ticker__track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  animation: ticker-scroll var(--ticker-duration, 30s) linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ticker__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}


/* ============================================
   9. SECTIONS
   ============================================ */
.section {
  padding: var(--section-py) var(--gutter);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__header h2 {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
  letter-spacing: -0.02em;
}

.section__header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin: 24px auto 0;
  border-radius: 4px;
}

.section--green .section__header h2::after,
.section--green-dark .section__header h2::after,
.section--teal .section__header h2::after,
.section--purple .section__header h2::after,
.section--orange .section__header h2::after {
  background: var(--gold);
}

.section__header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65;
  opacity: 0.85;
}

/* Section colour variants */
.section--cream      { background: var(--cream);      color: var(--black); }
.section--white      { background: var(--white);      color: var(--black); }
.section--green      { background: var(--green);      color: var(--white); }
.section--green-dark { background: var(--green-dark); color: var(--white); }
.section--teal       { background: var(--teal);       color: var(--white); }
.section--purple     { background: var(--purple);     color: var(--white); }
.section--orange     { background: var(--orange);     color: var(--white); }


/* ============================================
   10. PHOTO LAYOUTS
   ============================================ */

/* Full-width banner */
.photo-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.photo-banner:hover img { transform: scale(1.03); }

.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 79, 51, 0.2);
  pointer-events: none;
}

/* Photo grid */
.photo-grid {
  display: grid;
  gap: 24px;
  width: 100%;
}

.photo-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.photo-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.photo-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.photo-grid__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.photo-grid__item:hover img { transform: scale(1.04); }

/* Bottom vignette on hover */
.photo-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 79, 51, 0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.photo-grid__item:hover::after { opacity: 1; }

/* Warm overlay on photo grid images */
.photo-grid__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212, 160, 60, 0.06) 0%, transparent 40%, rgba(10, 79, 51, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}


/* ============================================
   11. EDITORIAL SPLITS
   ============================================ */
.editorial-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
}

.editorial-split--reverse {
  grid-template-columns: 1fr 1.2fr;
  direction: rtl;
}

.editorial-split--reverse > * { direction: ltr; }

.editorial-split__image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.editorial-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.editorial-split__image:hover img { transform: scale(1.05); }

/* Subtle warm overlay on editorial images */
.editorial-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 79, 51, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

.editorial-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
}

.editorial-split__content .eyebrow {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 12px;
}

.editorial-split__content .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.editorial-split__content h2,
.editorial-split__content h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.editorial-split__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
}

/* Mosaic grid — 3 images, 1 large + 2 stacked */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.photo-mosaic .photo-grid__item:first-child {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.photo-mosaic .photo-grid__item:nth-child(2),
.photo-mosaic .photo-grid__item:nth-child(3) {
  aspect-ratio: 16 / 9;
}

/* Photo card with caption */
.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s var(--ease);
}

.photo-card:hover img { transform: scale(1.04); }

.photo-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--white);
  z-index: 2;
}

.photo-card__caption h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.photo-card__caption p {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Immersive banner */
.photo-banner--immersive {
  aspect-ratio: 21 / 9;
  position: relative;
  z-index: 2;
}

.photo-banner--immersive::before,
.photo-banner--immersive::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.photo-banner--immersive::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(8, 61, 40, 0.5), transparent);
}

.photo-banner--immersive::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(8, 61, 40, 0.5), transparent);
}


/* ============================================
   12. FEATURES GRID
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 0 16px;
}

.feature { text-align: center; }

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(212, 160, 60, 0.15);
  border: 2px solid rgba(212, 160, 60, 0.25);
  color: var(--gold);
  margin-bottom: 28px;
  font-size: 2rem;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.feature__icon svg { stroke: var(--gold); }

.feature__icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(212, 160, 60, 0.15);
}

.section--cream .feature__icon,
.section--white .feature__icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--gold);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(10, 79, 51, 0.3);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.feature__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}


/* ============================================
   13. PRICING BANNER
   ============================================ */
.pricing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 60px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 160, 60, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15) inset;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.pricing-banner:hover {
  box-shadow: 0 0 40px rgba(212, 160, 60, 0.15),
              0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Shine sweep */
.pricing-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 60, 0.08), transparent);
  animation: pricing-shine 4s ease-in-out infinite;
}

@keyframes pricing-shine {
  0%   { left: -50%; }
  100% { left: 150%; }
}

.pricing-banner__text { flex: 1; }

.pricing-banner__text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-banner__text p {
  opacity: 0.85;
  font-size: 0.9375rem;
}

.pricing-banner__price {
  font-family: var(--font-display);
  font-size: 1.1em;
  font-weight: 900;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-shadow: 0 0 30px rgba(212, 160, 60, 0.4);
}

.pricing-banner__price span {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 900;
}

.pricing-banner__price small {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.05em;
}


/* ============================================
   14. CTA BAND
   ============================================ */
.cta-band {
  text-align: center;
  padding: 80px var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe pattern */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.03) 40px,
    rgba(255, 255, 255, 0.03) 42px
  );
  pointer-events: none;
  z-index: 0;
}

.cta-band__inner,
.cta-band .section__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 32px;
  opacity: 0.9;
}


/* ============================================
   15. TICKET CARDS
   ============================================ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.ticket-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border-top: 3px solid transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-top-color var(--duration) var(--ease);
}

.ticket-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14),
              0 4px 12px rgba(0, 0, 0, 0.06);
}

.ticket-card__head {
  padding: 28px 28px 20px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Glass highlight on card head */
.ticket-card__head::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ticket-card__head h3 {
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.ticket-card__head .ticket-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.ticket-card__body { padding: 28px; }

.ticket-card__body ul { list-style: none; }

.ticket-card__body li {
  padding: 10px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ticket-card__body li:last-child { border-bottom: none; }

.ticket-card__body li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.ticket-card__foot {
  padding: 0 28px 28px;
  text-align: center;
}

.ticket-card__foot .btn { width: 100%; }

/* Featured variant */
.ticket-card--featured {
  border: 3px solid var(--gold);
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08),
              0 0 0 1px rgba(212, 160, 60, 0.2);
}

.ticket-card--featured .ticket-card__head {
  background: var(--gold);
  color: var(--black);
}

.ticket-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.ticket-card--featured:hover {
  box-shadow: 0 20px 60px rgba(212, 160, 60, 0.25),
              0 0 40px rgba(212, 160, 60, 0.1);
}


/* ============================================
   16. FORMS
   ============================================ */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  border-top: 4px solid var(--green);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.04);
  max-width: 720px;
  margin: 0 auto;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.form-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
  text-align: center;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--black);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 146, 150, 0.15);
  background: var(--white);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1a1a' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-actions {
  text-align: center;
  margin-top: 32px;
}

.form-actions .btn { min-width: 200px; }

.form-group .form-hint {
  display: block;
  font-size: 0.8125rem;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 6px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}


/* ============================================
   17. FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border-left: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--duration) var(--ease),
              border-left-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.faq-item.open { border-left: 3px solid var(--teal); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  cursor: pointer;
  gap: 16px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.faq-item.open .faq-question { color: var(--teal); }

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer__inner {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.75);
}

.faq-item.open .faq-answer { max-height: 600px; }


/* ============================================
   18. PROGRAMME BLOCKS
   ============================================ */
.programme-group { margin-bottom: 48px; }
.programme-group:last-child { margin-bottom: 0; }

.programme-group__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.programme-group__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.programme-group__dot--green  { background: var(--green); }
.programme-group__dot--orange { background: var(--orange); }
.programme-group__dot--teal   { background: var(--teal); }
.programme-group__dot--purple { background: var(--purple); }
.programme-group__dot--gold   { background: var(--gold); }

.programme-group__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
}

.programme-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  margin: 0 -16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: background var(--duration) var(--ease);
}

.programme-item:hover { background: rgba(10, 79, 51, 0.04); }

.section--green .programme-item,
.section--green-dark .programme-item,
.section--teal .programme-item,
.section--purple .programme-item,
.section--orange .programme-item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.programme-item:last-child { border-bottom: none; }

.programme-item__name {
  font-weight: 700;
  min-width: 200px;
  flex-shrink: 0;
}

.programme-item__desc {
  font-size: 0.9375rem;
  opacity: 0.8;
  line-height: 1.6;
}


/* ============================================
   19. TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.section--cream .timeline::before,
.section--white .timeline::before {
  background: rgba(0, 0, 0, 0.1);
}

.timeline__item {
  position: relative;
  padding-bottom: 36px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--green);
}

.section--cream .timeline__dot,
.section--white .timeline__dot { border-color: var(--cream); }
.section--teal .timeline__dot   { border-color: var(--teal); }
.section--purple .timeline__dot { border-color: var(--purple); }

.timeline__dot--teal   { background: var(--teal); }
.timeline__dot--orange { background: var(--orange); }
.timeline__dot--green  { background: var(--green); }
.timeline__dot--purple { background: var(--purple); }
.timeline__dot--gold   { background: var(--gold); }

.timeline__time {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-bottom: 4px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.timeline__desc {
  font-size: 0.9375rem;
  opacity: 0.8;
  line-height: 1.6;
}


/* ============================================
   20. FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--green-dark) 0%, #041f14 100%);
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* Gold gradient top border */
.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(212, 160, 60, 0.3) 50%, transparent 90%);
  margin: 0 var(--gutter);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px var(--gutter) 48px;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-top: 16px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.125rem;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer__social a:focus-visible,
.footer__links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 160, 60, 0.2);
}

.footer__links {
  display: flex;
  flex-direction: column;
}

.footer__links a {
  display: block;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.footer__links a:last-child { border-bottom: none; }

.footer__links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  padding: 20px var(--gutter);
  text-align: center;
}

.footer__bottom p {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8125rem;
  opacity: 0.5;
}


/* ============================================
   21. DECORATIVE ELEMENTS
   ============================================ */

/* Stripe divider */
.stripe-divider {
  display: flex;
  height: 6px;
  position: relative;
  z-index: 2;
}

.stripe-divider span { flex: 1; }

.stripe-divider .stripe--green  { background: var(--green); }
.stripe-divider .stripe--orange { background: var(--orange); }
.stripe-divider .stripe--teal   { background: var(--teal); }
.stripe-divider .stripe--purple { background: var(--purple); }
.stripe-divider .stripe--gold   { background: var(--gold); }
.stripe-divider .stripe--red    { background: var(--red); }

/* Gold divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  max-width: 240px;
  gap: 16px;
  opacity: 0.85;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  border-radius: 2px;
}

.gold-divider::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.gold-divider::after  { background: linear-gradient(90deg, var(--gold), transparent); }

.gold-divider span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================
   22. BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 79, 51, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(224, 85, 31, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--duration) var(--ease),
              visibility var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              background var(--duration) var(--ease);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  box-shadow: 0 8px 28px rgba(224, 85, 31, 0.5);
  transform: translateY(-3px);
}


/* ============================================
   23. NOTICES
   ============================================ */
.notice {
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--teal);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.notice h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.notice p + p { margin-top: 12px; }

.notice--orange {
  border-left-color: var(--orange);
  background: rgba(224, 85, 31, 0.06);
  padding: 24px 28px 24px 24px;
}

.notice--green { border-left-color: var(--green); }
.notice--red   { border-left-color: var(--red); }


/* ============================================
   24. CONTACT INFO
   ============================================ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-info__item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(10, 79, 51, 0.06);
  border: 1px solid rgba(212, 160, 60, 0.1);
  border-radius: var(--radius);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.contact-info__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.section--cream .contact-info__item,
.section--white .contact-info__item {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.contact-info__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 6px;
}

.contact-info__value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
}

.contact-info__value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================
   25. MAP & EVENTBRITE
   ============================================ */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 160, 60, 0.15);
  aspect-ratio: 16 / 9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.eb-widget-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.eb-widget-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.eb-widget-placeholder p {
  font-size: 0.9375rem;
  opacity: 0.6;
}


/* ============================================
   26. SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}


/* ============================================
   27. DISPLAY QUOTE
   ============================================ */
.display-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-top: 48px;
}

.display-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  font-style: normal;
  pointer-events: none;
}


/* ============================================
   28. LEGAL PAGE LISTS
   ============================================ */
.section__inner > ul,
.section__inner > .reveal > ul,
.section__inner > ul.reveal {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}

.section__inner > ul li,
.section__inner > .reveal > ul li,
.section__inner > ul.reveal li {
  padding: 4px 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444;
}

.section__inner > ul li::marker,
.section__inner > .reveal > ul li::marker,
.section__inner > ul.reveal li::marker {
  color: var(--orange);
}

/* Legal page heading spacing */
.section__inner > h3 + p,
.section__inner > h3.reveal + p.reveal { margin-top: 8px; }

.section__inner > p + h3,
.section__inner > ul + h3,
.section__inner > p.reveal + h3.reveal,
.section__inner > ul.reveal + h3.reveal { margin-top: 40px; }

.section__inner > h3,
.section__inner > h3.reveal { color: var(--green); }


/* ============================================
   29. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-narrow { max-width: 640px; }


/* ============================================
   30. RESPONSIVE — TABLET (max-width: 900px)
   ============================================ */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

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

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

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

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand { grid-column: 1 / -1; }

  .contact-info { grid-template-columns: 1fr 1fr; }

  .pricing-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .programme-item {
    flex-direction: column;
    gap: 4px;
  }

  .programme-item__name { min-width: unset; }
}


/* Sticky CTA — hidden on desktop */
.sticky-cta { display: none; }


/* ============================================
   31. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-sm);
    --gutter: 20px;
    --mobile-gutter: 20px;
  }


  /* ============================================================
     M-1. GLOBAL MOBILE MARGINS & TEXT PROTECTION
     ============================================================ */
  .hero {
    min-height: 85vh;
    padding: 100px var(--mobile-gutter) 60px;
  }

  .hero--legal {
    min-height: 32vh;
    padding: 110px var(--mobile-gutter) 60px;
  }

  .hero__title {
    font-size: clamp(2rem, 1.6rem + 3vw, 2.2rem);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .hero__subtitle { font-size: 1rem; }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .section__header { margin-bottom: 44px; }

  .section__header h2 {
    font-size: clamp(1.6rem, 1.3rem + 2vw, 2rem);
  }

  .section { padding: var(--section-py-sm) var(--mobile-gutter); }

  .cta-band { padding: 56px var(--mobile-gutter); }

  .cta-band h2 {
    font-size: clamp(1.5rem, 1.2rem + 2vw, 1.9rem);
  }

  .legal-content h3 {
    font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  }


  /* ============================================================
     M-2. TOUCH-SWIPE HORIZONTAL GALLERIES
     ============================================================ */
  .photo-grid--2,
  .photo-grid--3,
  .photo-grid--4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 var(--mobile-gutter) 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .photo-grid--2::-webkit-scrollbar,
  .photo-grid--3::-webkit-scrollbar,
  .photo-grid--4::-webkit-scrollbar {
    display: none;
  }

  .photo-grid--2 > .photo-grid__item,
  .photo-grid--3 > .photo-grid__item,
  .photo-grid--4 > .photo-grid__item {
    flex: 0 0 82%;
    min-width: 0;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }

  /* Disable hover-only effects on touch */
  .photo-grid__item:hover img { transform: none; }
  .photo-grid__item:hover::after { opacity: 0; }
  .photo-grid__item::after { display: none; }

  /* Option B: Compact 2-Column Tile Grid (add .photo-grid--tiles) */
  .photo-grid--tiles {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
  }

  .photo-grid--tiles > .photo-grid__item {
    flex: unset !important;
    min-width: unset !important;
    scroll-snap-align: unset !important;
    aspect-ratio: 1 / 1 !important;
  }


  /* ============================================================
     M-3. STICKY BOTTOM TICKET CTA — "THUMB-ZONE" BAR
     ============================================================ */
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 12px var(--mobile-gutter) calc(12px + env(safe-area-inset-bottom));
    background: rgba(8, 61, 40, 0.88);
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    border-top: 1px solid rgba(212, 160, 60, 0.25);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }

  .sticky-cta__btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.0625rem;
    text-align: center;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(224, 85, 31, 0.35);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
  }

  .sticky-cta__btn:hover,
  .sticky-cta__btn:active {
    background: linear-gradient(135deg, #ff6b35, var(--orange));
    box-shadow: 0 6px 24px rgba(224, 85, 31, 0.45);
  }

  /* Push back-to-top above the sticky bar */
  .back-to-top {
    bottom: 82px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  /* Add bottom padding to body so footer isn't hidden behind bar */
  body:has(.sticky-cta) { padding-bottom: 72px; }


  /* ============================================================
     M-4. PINNED LEFT-ALIGNED TIMELINE (whats-on.html)
     ============================================================ */
  .timeline {
    padding-left: 36px;
    max-width: 100%;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline__dot {
    left: -30px;
    width: 12px;
    height: 12px;
  }

  .timeline__item {
    text-align: left;
  }

  .timeline__title {
    font-size: 1.1rem;
  }

  .timeline__time {
    font-size: 0.75rem;
  }


  /* ============================================================
     M-5. HIGH-CONTRAST COMBO CARDS & FAQ MOTION
     ============================================================ */

  /* Pricing / £10 combo card — deep glass with gold hairline + floating depth */
  .pricing-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 36px 28px;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1.5px solid rgba(212, 160, 60, 0.5);
    box-shadow:
      0 0 40px rgba(212, 160, 60, 0.1) inset,
      0 12px 32px -4px rgba(0, 0, 0, 0.25),
      0 4px 12px -2px rgba(0, 0, 0, 0.15);
  }

  .pricing-banner__price span {
    font-size: 2.75rem;
    text-shadow: 0 2px 8px rgba(212, 160, 60, 0.25);
  }

  .pricing-banner__text h3 {
    font-size: 1.35rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  /* FAQ accordion — smooth motion with teal accent */
  .faq-item {
    border-left-width: 3px;
    transition: box-shadow 0.35s var(--ease),
                border-left-color 0.35s var(--ease);
  }

  .faq-item:hover {
    transform: none;
  }

  .faq-item.open {
    border-left: 4px solid var(--teal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
    min-height: 48px;
  }

  .faq-answer {
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .faq-answer__inner {
    padding: 0 20px 20px;
    font-size: 0.9375rem;
  }


  /* ============================================================
     M-6. MOBILE MENU & NAVIGATION TOUCH TARGETS
     ============================================================ */
  .nav__mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8999;
    max-height: 0;
    background: rgba(8, 42, 28, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 var(--mobile-gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s var(--ease),
                padding 0.5s var(--ease);
  }

  .nav__mobile.open {
    max-height: 100vh;
    max-height: 100dvh;
    opacity: 1;
    pointer-events: auto;
    padding: 100px var(--mobile-gutter) 60px;
  }

  .nav__mobile a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 8px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--duration) var(--ease),
                padding-left var(--duration) var(--ease);
  }

  .nav__mobile a:active {
    color: var(--gold);
    padding-left: 16px;
  }

  .nav__mobile a:last-child { border-bottom: none; }

  .nav__mobile .nav__cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    min-height: 52px;
    font-size: 1.125rem;
    border-radius: var(--radius-pill);
    border-bottom: none;
  }

  .nav__hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    z-index: 9001;
    position: relative;
  }


  /* ============================================================
     M-7. REMAINING LAYOUT COMPONENTS
     ============================================================ */
  .features {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .feature__icon {
    width: 72px;
    height: 72px;
  }

  .ticket-grid {
    grid-template-columns: 1fr;
    max-width: 88%;
    margin: 0 auto;
    gap: 40px;
  }

  .photo-banner { aspect-ratio: 16 / 9; }
  .photo-banner--immersive { aspect-ratio: 16 / 9; }

  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split--reverse { direction: ltr; }
  .editorial-split__content { padding: 36px var(--mobile-gutter); }
  .editorial-split__content .eyebrow::after { width: 32px; }
  .editorial-split__image { min-height: 300px; }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-mosaic .photo-grid__item:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .photo-mosaic .photo-grid__item:nth-child(2),
  .photo-mosaic .photo-grid__item:nth-child(3) {
    aspect-ratio: 16 / 10;
  }

  .form-card { padding: 28px var(--mobile-gutter); }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--mobile-gutter);
  }

  .footer__brand { grid-column: auto; }

  .notice { padding: 24px; }
  .btn { padding: 14px 28px; min-height: 48px; }

  .programme-item {
    margin: 0;
    padding: 12px 0;
  }
}


/* ============================================
   32. PATTERN BACKGROUND — EDITORIAL CARD LAYOUT
   ============================================ */

/* Pattern covers the entire viewport */
body {
  background: var(--green) url('assets/bg-desktop.jpg') center top / cover fixed no-repeat;
}

/* Subtle dark overlay to soften pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 79, 51, 0.12) 0%,
    rgba(8, 45, 28, 0.30) 100%
  );
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1200px) {
  body { background-image: url('assets/bg-tablet.jpg'); }
}

@media (max-width: 768px) {
  body {
    background-color: #0C311E !important;
    background-image: url('assets/bg-mobile.jpg') !important;
    background-size: 100% auto !important;
    background-repeat: repeat-y !important;
    background-position: top center !important;
    background-attachment: scroll !important;
    -webkit-font-smoothing: antialiased;
  }
}


/* ---- Main content column — flex layout with explicit gaps ---- */
main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}


/* ---- Card treatment — clean, minimal shadows ---- */
main .hero {
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

main .section,
main .cta-band {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s var(--ease);
}

main .section:hover,
main .cta-band:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.18);
}

main .editorial-split {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 60, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

main .editorial-split:hover {
  border-color: rgba(212, 160, 60, 0.22);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.18);
}

main .ticker {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

main .photo-banner {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

main .photo-grid {
  padding: 0 8px;
}

main .photo-grid__item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

main .photo-grid__item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

main .photo-mosaic .photo-grid__item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

main .gold-divider {
  margin: -8px auto;
  padding: 0;
  position: relative;
  z-index: 2;
}


/* ---- Frosted glass for light sections ---- */
main .section--cream {
  background: rgba(255, 248, 238, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(212, 160, 60, 0.08);
}

main .section--white {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}


/* ---- Dark sections — solid with gradient depth ---- */
main .section--green      { background: linear-gradient(180deg, var(--green) 0%, #073d27 100%); }
main .section--green-dark { background: linear-gradient(180deg, var(--green-dark) 0%, #062e1e 100%); }
main .section--teal       { background: linear-gradient(180deg, var(--teal) 0%, #1f7174 100%); }
main .section--purple     { background: linear-gradient(180deg, var(--purple) 0%, #52235f 100%); }
main .section--orange     { background: linear-gradient(180deg, var(--orange) 0%, #c04719 100%); }

main .cta-band.section--green      { background: linear-gradient(180deg, var(--green) 0%, #073d27 100%); }
main .cta-band.section--green-dark { background: linear-gradient(180deg, var(--green-dark) 0%, #062e1e 100%); }
main .cta-band.section--teal       { background: linear-gradient(180deg, var(--teal) 0%, #1f7174 100%); }
main .cta-band.section--purple     { background: linear-gradient(180deg, var(--purple) 0%, #52235f 100%); }
main .cta-band.section--orange     { background: linear-gradient(180deg, var(--orange) 0%, #c04719 100%); }


/* ---- Tablet column ---- */
@media (min-width: 769px) and (max-width: 1200px) {
  main {
    max-width: 100%;
    margin-left: 48px;
    margin-right: 48px;
  }
}

/* ---- Mobile: Feast On Floating Island Engine v8 ---- */
@media (max-width: 768px) {

  /* ============================================================
     1. CANVAS LOCK
     Body owns the continuous bg-mobile.jpg canvas.
     Sections are transparent windows. Text lives in solid cards.
     ============================================================ */
  body::before {
    display: none !important;
  }

  main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }


  /* ============================================================
     2. TRANSPARENT SECTION WINDOWS
     All outer sections are clear — the body canvas shows through.
     ============================================================ */
  main .hero,
  main .section,
  main .cta-band,
  main .editorial-split,
  main .photo-banner,
  main .ticker,
  main .photo-grid__item {
    border-radius: 0 !important;
  }

  main .section,
  main .cta-band {
    background-image: none !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 56px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  main .section:hover,
  main .cta-band:hover {
    box-shadow: none !important;
    transform: none !important;
  }


  /* ============================================================
     2b. PREMIUM HERO COLOR GRADING
     Gradient + photo blend on hero wrappers + .hero__bg overrides
     to bypass inline HTML background-image styles.
     ============================================================ */

  /* — Green Theme → img4.jpg — */
  .hero--green {
    background-image: linear-gradient(rgba(12, 49, 30, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img4.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero--green .hero__bg {
    background-image: linear-gradient(rgba(12, 49, 30, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img4.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* — Orange Theme → img2.jpg — */
  .hero--orange {
    background-image: linear-gradient(rgba(196, 67, 18, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img2.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero--orange .hero__bg {
    background-image: linear-gradient(rgba(196, 67, 18, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img2.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* — Teal Theme → img1.jpg — */
  .hero--teal {
    background-image: linear-gradient(rgba(12, 49, 30, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img1.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero--teal .hero__bg {
    background-image: linear-gradient(rgba(12, 49, 30, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img1.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* — Purple Theme → img3.jpg — */
  .hero--purple {
    background-image: linear-gradient(rgba(74, 20, 140, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img3.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero--purple .hero__bg {
    background-image: linear-gradient(rgba(74, 20, 140, 0.25), rgba(12, 49, 30, 0.35)),
                       url('assets/img3.jpg') !important;
    background-blend-mode: multiply !important;
    background-size: cover !important;
    background-position: center !important;
  }


  /* ============================================================
     2c. TICKER — KILL ANIMATION, VAPORIZE DUPLICATE CLONES
     ticker.js duplicates .ticker__track children for infinite
     scroll. With animation killed, clones stack visibly.
     Solution: hide all tracks after the first, let the first
     track display fully with natural wrapping.
     ============================================================ */

  /* Container: static, no scroll, no mask clipping */
  .ticker {
    animation: none !important;
    transform: none !important;
    white-space: normal !important;
    overflow: hidden !important;
    max-height: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* First track: static centered layout showing all unique items */
  .ticker__track {
    animation: none !important;
    transform: none !important;
    white-space: normal !important;
    overflow: visible !important;
    max-height: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 2px 0 !important;
  }

  /* Hide ALL duplicate cloned items beyond the unique set.
     HTML ships items doubled (e.g. 9 unique + 9 clones = 18).
     ticker.js may add even more. We hide from item 7 onward
     (covers the smallest unique set of 6 on tickets.html)
     and then show items 7-9 specifically for the 9-item tickers. */
  .ticker__track > .ticker__item:nth-child(n+7) {
    display: none !important;
  }

  /* Index page has 9 unique items — show items 7-9 */
  .ticker--orange > .ticker__track > .ticker__item:nth-child(7),
  .ticker--orange > .ticker__track > .ticker__item:nth-child(8),
  .ticker--orange > .ticker__track > .ticker__item:nth-child(9) {
    display: inline-flex !important;
  }

  /* Typography: elegant, spaced, editorial */
  .ticker__item {
    font-size: 0.8rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    line-height: 1.4 !important;
    padding: 3px 10px !important;
    flex-shrink: 0 !important;
  }

  .ticker__item::before {
    width: 4px !important;
    height: 4px !important;
  }


  /* ============================================================
     2d. PHOTO CONTAINERS
     ============================================================ */
  main .photo-banner {
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  main .photo-grid {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }


  /* ============================================================
     3. SOLID LEGIBILITY ISLAND CARDS
     Every .section__inner is an opaque, centered floating card.
     Text NEVER touches raw background graphics.
     ============================================================ */
  .section__inner,
  .section > .section__inner,
  .cta-band > .section__inner {
    width: 88% !important;
    max-width: 400px !important;
    margin: 24px auto !important;
    box-sizing: border-box !important;
    float: none !important;
    border-radius: 6px !important;
    position: relative !important;
    z-index: 2 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  }

  /* --- LIGHT CARDS (cream/white sections) --- */
  .section--cream > .section__inner,
  .section--white > .section__inner {
    background: #FFF8EE !important;
    color: #0C311E !important;
    padding: 32px 20px !important;
  }

  /* --- DARK CARDS (green sections) --- */
  .section--green > .section__inner,
  .section--green-dark > .section__inner,
  .cta-band.section--green > .section__inner {
    background: #0C311E !important;
    color: #FFF8EE !important;
    padding: 32px 20px !important;
  }

  .section--teal > .section__inner,
  .cta-band.section--teal > .section__inner {
    background: var(--teal) !important;
    color: #FFF8EE !important;
    padding: 32px 20px !important;
  }

  .section--purple > .section__inner,
  .cta-band.section--purple > .section__inner {
    background: var(--purple) !important;
    color: #FFF8EE !important;
    padding: 32px 20px !important;
  }

  .section--orange > .section__inner,
  .cta-band.section--orange > .section__inner {
    background: var(--orange) !important;
    color: #FFF8EE !important;
    padding: 32px 20px !important;
  }


  /* ============================================================
     4. TEXT CONTRAST ENFORCEMENT
     ============================================================ */
  .section--cream h2, .section--cream h3,
  .section--white h2, .section--white h3 {
    color: #0C311E !important;
    text-shadow: none !important;
  }

  .section--cream p, .section--cream li,
  .section--white p, .section--white li {
    color: #0C311E !important;
    line-height: 1.7 !important;
  }

  .section--green h2, .section--green h3,
  .section--green-dark h2, .section--green-dark h3,
  .section--teal h2, .section--teal h3,
  .section--purple h2, .section--purple h3,
  .section--orange h2, .section--orange h3,
  .cta-band h2 {
    color: #FFF8EE !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .section--green p, .section--green li,
  .section--green-dark p, .section--green-dark li,
  .section--teal p, .section--teal li,
  .section--purple p, .section--purple li,
  .section--orange p, .section--orange li,
  .cta-band p {
    color: rgba(255, 248, 238, 0.95) !important;
    line-height: 1.7 !important;
  }

  .eyebrow,
  .hero__eyebrow,
  .section__header .eyebrow {
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
  }

  .gold-divider {
    border: none !important;
    border-top: 2px dotted var(--gold) !important;
    margin: 24px auto !important;
    width: 80% !important;
    opacity: 0.7;
  }


  /* ============================================================
     5. TICKET CARDS — symmetric heights, flush buttons
     ============================================================ */
  .ticket-grid {
    grid-template-columns: 1fr !important;
    max-width: 88% !important;
    margin: 0 auto !important;
    gap: 32px !important;
  }

  .ticket-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 400px !important;
    min-height: 480px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    background: #FFF8EE !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(212, 160, 60, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    opacity: 1 !important;
  }

  .ticket-card__head {
    padding: 28px 24px 20px !important;
  }

  .ticket-card__head h3 {
    letter-spacing: 0.04em;
    color: #FFF8EE !important;
  }

  .ticket-card__head .ticket-card__price {
    font-size: 2.25rem !important;
    color: #FFF8EE !important;
  }

  .ticket-card__body {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 24px !important;
    background: #FFF8EE !important;
  }

  .ticket-card__body li {
    padding: 10px 0 !important;
    line-height: 1.7;
    color: #0C311E !important;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(212, 160, 60, 0.12);
  }

  .ticket-card__body li:last-child {
    border-bottom: none !important;
  }

  .ticket-card__body li::before {
    color: var(--gold) !important;
  }

  .ticket-card__foot {
    margin-top: auto !important;
    padding: 0 24px 28px !important;
    background: #FFF8EE !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ticket-card__foot .btn,
  .ticket-card__foot a {
    display: block !important;
    width: 100% !important;
    padding: 14px 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .ticket-card:hover,
  .ticket-card--featured:hover {
    transform: none !important;
  }

  .ticket-card--featured {
    border: 2px solid var(--gold) !important;
    box-shadow: 0 10px 25px rgba(212, 160, 60, 0.15),
                0 8px 20px rgba(0, 0, 0, 0.1) !important;
  }


  /* ============================================================
     6. EDITORIAL SPLIT — full-bleed image + floating text island
     ============================================================ */
  .editorial-split {
    grid-template-columns: 1fr !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
  }

  .editorial-split__image {
    min-height: 280px !important;
    border-radius: 0 !important;
  }

  .editorial-split__content {
    width: 88% !important;
    max-width: 400px !important;
    margin: -40px auto 0 auto !important;
    background: #FFF8EE !important;
    color: #0C311E !important;
    padding: 32px 20px !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    z-index: 2 !important;
    opacity: 1 !important;
  }

  .editorial-split__content h2,
  .editorial-split__content h3 {
    color: #0C311E !important;
  }

  .editorial-split__content p {
    color: #0C311E !important;
  }


  /* ============================================================
     7. PHOTO GRIDS — full-bleed
     ============================================================ */
  main .photo-grid {
    padding: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
  }

  main .photo-grid__item {
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  main .photo-grid__item:hover {
    box-shadow: none !important;
    transform: none !important;
  }


  /* ============================================================
     8. PRICING BANNER
     ============================================================ */
  .pricing-banner {
    width: 88% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    border-radius: 6px !important;
    padding: 32px 20px !important;
    background: rgba(0, 0, 0, 0.85) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    opacity: 1 !important;
  }


  /* ============================================================
     9. BUTTONS — full-width, high-contrast
     ============================================================ */
  .section__inner .btn,
  .cta-band .btn,
  .ticket-card__foot .btn,
  .hero__actions .btn,
  .form-actions .btn {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    text-align: center !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-radius: 2px !important;
    box-sizing: border-box !important;
    margin-bottom: 12px !important;
  }

  .section--cream .btn,
  .section--white .btn,
  .ticket-card__foot .btn,
  .editorial-split__content .btn {
    background: var(--green) !important;
    color: #FFF8EE !important;
    border: none !important;
  }

  .section--cream .btn--primary,
  .ticket-card .btn--primary {
    background: var(--orange) !important;
    color: #FFF8EE !important;
  }

  .section--green .btn,
  .section--green-dark .btn,
  .cta-band.section--green .btn {
    background: var(--gold) !important;
    color: #0C311E !important;
    border: none !important;
  }

  .section--teal .btn,
  .cta-band.section--teal .btn {
    background: #FFF8EE !important;
    color: var(--teal) !important;
    border: none !important;
  }

  .section--orange .btn,
  .cta-band.section--orange .btn {
    background: #FFF8EE !important;
    color: var(--orange) !important;
    border: none !important;
  }

  .section--purple .btn,
  .cta-band.section--purple .btn {
    background: var(--gold) !important;
    color: var(--purple) !important;
    border: none !important;
  }

  .hero .btn--primary {
    background: var(--orange) !important;
    color: #FFF8EE !important;
    border: none !important;
  }

  .hero .btn--secondary {
    background: transparent !important;
    color: #FFF8EE !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
  }


  /* ============================================================
     10. EVENTBRITE CONTAINER
     ============================================================ */
  .eb-widget-container {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .eb-widget-container iframe {
    width: 100% !important;
    max-width: 100% !important;
  }


  /* ============================================================
     11. FORM FIELDS — 16px prevents iOS zoom
     ============================================================ */
  .form-card {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  .form-group {
    margin-bottom: 20px !important;
  }

  .form-group label {
    display: block !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="url"],
  .form-group input[type="number"],
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    background: #FFFFFF !important;
    color: #1A1A1A !important;
  }

  .form-group textarea {
    min-height: 120px !important;
    resize: vertical !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }


  /* ============================================================
     12. NAV HEADER & MOBILE MENU
     ============================================================ */
  .nav {
    background: #FFF8EE !important;
    border-bottom: 1px solid rgba(212, 160, 60, 0.15) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav__logo img {
    max-height: 36px !important;
    width: auto !important;
  }

  .nav__hamburger {
    width: 44px !important;
    height: 44px !important;
    z-index: 9001 !important;
  }

  .nav__hamburger span {
    background: var(--green) !important;
  }

  .nav__mobile {
    background: rgba(8, 42, 28, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }

  .nav__mobile a {
    min-height: 52px !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #FFF8EE !important;
  }


  /* ============================================================
     13. SPACING HARMONIZATION
     ============================================================ */
  .section__inner h2,
  .section__inner h3,
  .cta-band h2,
  .editorial-split__content h2 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    line-height: 1.3 !important;
  }

  .section__inner p,
  .cta-band p,
  .editorial-split__content p {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
  }

  .section__inner p:last-child,
  .cta-band p:last-child,
  .editorial-split__content p:last-child {
    margin-bottom: 0 !important;
  }

  .section__inner .eyebrow,
  .section__header .eyebrow {
    margin-bottom: 8px !important;
    display: block !important;
  }

  .section__inner li {
    margin-bottom: 8px !important;
    line-height: 1.6 !important;
  }

  .section__inner .gold-divider {
    margin: 20px auto !important;
  }


  /* ============================================================
     14. STACKING SAFETY
     ============================================================ */
  .section__inner,
  .editorial-split__content,
  .pricing-banner,
  .ticket-card {
    position: relative !important;
    z-index: 2 !important;
  }

  main .section,
  main .cta-band,
  main .photo-grid {
    position: relative;
    z-index: 1;
  }
}


/* ============================================
   33. REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions {
    opacity: 1;
    animation: none;
  }

  .scroll-indicator::after { animation: none; }

  .ticker {
    white-space: normal;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .ticker__track {
    animation: none !important;
    transform: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 4px 0;
  }

  .photo-banner img { transform: none; }
  .form-card:focus-within { transform: none; }

  .ticket-card:hover,
  .feature__icon:hover,
  .footer__links a:hover { transform: none; }
}


/* ============================================================
   ISOLATED TICKET BADGE FIX (Global — Desktop & Mobile)
   Real selectors: .ticket-card--featured, .ticket-card__head
   Badge is a ::before pseudo-element on .ticket-card--featured
   ============================================================ */

/* Push head content down to make room for the ::before badge */
.ticket-card--featured .ticket-card__head {
  position: relative !important;
  padding-top: 50px !important;
  height: auto !important;
  box-sizing: border-box !important;
}

/* Anchor the 'Most Popular' ::before badge to top of card */
.ticket-card--featured::before {
  position: absolute !important;
  top: 14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  white-space: nowrap !important;
  z-index: 5 !important;
}

/* Clean title wrapping inside ticket card heads */
.ticket-card__head h3 {
  line-height: 1.2 !important;
  text-align: center !important;
}
