:root {
  --yellow: #FBAF33;
  --grey: #1D1D1A;
  --black: #000000;
  --white: #FFFFFF;
  --cream: #F8F5EE;
  --muted: #68665F;
  --border: #E3DED2;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(0,0,0,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--grey);
  background: var(--cream);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.58;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }

h1, h2, h3 {
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.9rem, 7vw, 6.25rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(2.15rem, 4.8vw, 4rem); font-weight: 800; }
h3 { font-size: 1.24rem; font-weight: 700; letter-spacing: .01em; }
p { margin: .65rem 0 0; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: var(--grey);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-logo { display: inline-flex; align-items: center; padding: 10px 0; }
.brand-logo img { width: min(350px, 46vw); max-height: 62px; object-fit: contain; object-position: left center; }
.nav { display: flex; gap: 1.25rem; align-items: center; color: white; font-weight: 700; font-size: .93rem; }
.nav a { text-decoration: none; }
.nav a:hover, .nav a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta { background: var(--yellow); color: var(--grey)!important; padding: .7rem 1rem; border-radius: 999px; }

.hero {
  min-height: 660px;
  position: relative;
  display: grid;
  align-items: end;
  color: white;
  background: var(--black) url('../images/2026/hero-fireworks.jpg') center 42% / cover no-repeat;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.53) 50%, rgba(0,0,0,.14) 100%), linear-gradient(0deg, rgba(0,0,0,.52), transparent 48%); }
.hero-inner { position: relative; z-index: 2; padding: clamp(74px, 10vw, 130px) 0 64px; }
.hero .kicker { color: var(--yellow); font-size: clamp(.98rem, 1.35vw, 1.12rem); letter-spacing: .12em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(3.1rem, 5.15vw, 4.8rem); line-height: .98; max-width: 1040px; }
.hero-location { font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.48rem); margin-top: 1rem; }
.hero-copy { max-width: 780px; font-size: clamp(1.08rem, 2vw, 1.34rem); margin-top: 1rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; max-width: 880px; }
.hero-facts span { display: inline-flex; gap: 5px; align-items: baseline; padding: .5rem .72rem; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(0,0,0,.26); backdrop-filter: blur(5px); font-size: .9rem; }
.hero-facts b { color: var(--yellow); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.6rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--yellow); color: var(--grey); }
.button-dark { background: var(--grey); color: white; }
.button-ghost { border-color: rgba(255,255,255,.72); color: white; background: rgba(0,0,0,.18); }
.button-outline { border-color: var(--grey); color: var(--grey); }
.text-link { font-weight: 800; text-underline-offset: 4px; }

.right-wotton { background: var(--yellow); }
.right-wotton-inner { min-height: 68px; display: flex; align-items: center; gap: 12px 22px; flex-wrap: wrap; }
.right-wotton strong { font-family: "Open Sans", Arial, sans-serif; font-weight: 800; text-transform: uppercase; }

.section { padding: clamp(68px, 8vw, 104px) 0; }
.section-white { background: white; }
.section-dark { background: var(--grey); color: white; }
.section-yellow { background: var(--yellow); }
.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading > p:last-child { font-size: 1.07rem; max-width: 780px; }
.kicker { margin: 0 0 12px; font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; color: var(--yellow); }
.kicker-dark { color: #835B0F; }

/* WHAT'S ON: one strong image and the actual programme, not a row of generic cards */
.experience-section { background: var(--cream); }
.experience-heading { max-width: 900px; }
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 22px;
  align-items: stretch;
}
.experience-photo {
  margin: 0;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--black);
  box-shadow: var(--shadow);
}
.experience-photo > img:first-child { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: 54% center; }
.experience-photo::before { content: ""; position: absolute; top: 20px; right: 20px; width: 58px; aspect-ratio: 1; background: url('../images/2026/rtgbi-roundel-white.png') center / contain no-repeat; opacity: .82; pointer-events: none; z-index: 2; }
.experience-photo::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.74)); pointer-events: none; z-index: 1; }
.experience-photo figcaption { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 24px; color: white; font-weight: 700; font-size: 1.05rem; }
.programme-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 12px 34px rgba(0,0,0,.07);
}
.programme-panel::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  aspect-ratio: 1;
  background: url('../images/2026/rtgbi-roundel-tablegrey.png') center / contain no-repeat;
  opacity: 1;
  pointer-events: none;
}
.programme-panel > * { position: relative; z-index: 1; }
.highlight-list { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.highlight-list span { display: inline-flex; align-items: center; min-height: 34px; padding: .44rem .7rem; border-radius: 999px; background: #FFF0CF; font-size: .78rem; font-weight: 800; }
.programme-title { font-size: clamp(1.65rem, 2.5vw, 2.15rem); margin-bottom: 10px; }
.programme-list { list-style: none; margin: 0; padding: 0; }
.programme-list li { display: grid; grid-template-columns: 82px 1fr; gap: 16px; padding: 17px 0; border-top: 1px solid var(--border); }
.programme-list time { font-weight: 800; color: #8A5D0D; font-size: .95rem; }
.programme-list strong { display: block; font-size: 1rem; }
.programme-list span { display: block; margin-top: 3px; color: var(--muted); font-size: .91rem; line-height: 1.45; }

.booking-shell .section-heading { margin-bottom: 28px; }
.ticket-heading strong { color: var(--yellow); }
.location-check-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  margin: 20px 0 34px;
  background: #FFF3D7;
  color: var(--grey);
  border-radius: 14px;
  border: 2px solid var(--yellow);
}
.location-check-card > span { font-size: 1.4rem; }
.location-check-card p { color: #5D5547; }
.travel-intro { margin: 12px 0 16px; }
.travel-intro p { color: rgba(255,255,255,.72); }
.travel-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 30px; }
.travel-choice { position: relative; overflow: hidden; background: #292925; border: 1px solid #45453E; border-radius: 14px; padding: 18px 58px 18px 18px; }
.travel-choice::after { content: ""; position: absolute; top: 15px; right: 15px; width: 30px; aspect-ratio: 1; background: url('../images/2026/rtgbi-roundel-white.png') center / contain no-repeat; opacity: .72; pointer-events: none; }
.travel-choice > * { position: relative; z-index: 1; }
.travel-choice-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 7px; }
.travel-choice h3 { font-size: 1.1rem; }
.travel-choice strong { color: var(--yellow); font-size: 1.2rem; white-space: nowrap; }
.travel-choice p { color: rgba(255,255,255,.72); font-size: .9rem; }
.travel-label { display: inline-block; color: #CFCFC7; text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; font-weight: 800; }
.ticket-box { background: white; color: var(--grey); border-radius: var(--radius); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow); }
.ticket-placeholder { text-align: center; padding: 30px 10px; max-width: 760px; margin: 0 auto; }
.ticket-placeholder h3 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.ticket-placeholder > p:not(.ticket-status):not(.ticket-note) { color: var(--muted); font-size: 1.02rem; }
.ticket-status { display: inline-block; margin: 0 0 14px; background: #F1EBDD; border-radius: 999px; padding: .42rem .78rem; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.ticket-note { font-weight: 800; margin-top: 12px; }
.ticket-help { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: .92rem; color: var(--muted); }

.visit-heading { max-width: 920px; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.visit-card { position: relative; overflow: hidden; background: white; border: 1px solid var(--border); border-left: 5px solid var(--yellow); border-radius: 14px; padding: 24px 64px 24px 22px; min-height: 180px; }
.visit-card::after { content: ""; position: absolute; top: 18px; right: 18px; width: 32px; aspect-ratio: 1; background: url('../images/2026/rtgbi-roundel-tablegrey.png') center / contain no-repeat; opacity: 1; pointer-events: none; }
.visit-card > * { position: relative; z-index: 1; }
.visit-card h3 { font-size: 1.14rem; }
.visit-card p { color: var(--muted); font-size: .94rem; }
.entrance-callout { margin-top: 22px; background: var(--yellow); border-radius: 18px; padding: clamp(24px, 4vw, 34px); display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.entrance-copy { max-width: 760px; }
.entrance-copy h3 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.entrance-address { min-width: 235px; padding-left: 28px; border-left: 1px solid rgba(29,29,26,.24); line-height: 1.55; }

.faq-wrap { max-width: 980px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); padding: 0; }
.faq-list summary { cursor: pointer; list-style: none; font-weight: 800; font-size: 1.04rem; padding: 20px 46px 20px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: 17px; font-size: 1.45rem; color: #8B6217; }
.faq-list details[open] summary::after { content: '-'; }
.faq-list details p { color: var(--muted); margin: -4px 0 22px; max-width: 880px; }

.contact { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.contact p { max-width: 690px; }
footer { background: #11110F; color: #D8D7D0; padding: 28px 0 90px; font-size: .88rem; }
.footer-inner { display: flex; gap: 30px; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; }
.footer-brand-block { display: grid; gap: 12px; }
.footer-brand { width: min(320px, 72vw); max-height: 62px; object-fit: contain; object-position: left center; }
.sticky-ticket { display: none; }

@media (max-width: 980px) {
  .nav a:not(.nav-cta) { display: none; }
  .experience-layout { grid-template-columns: 1fr; }
  .experience-photo, .experience-photo > img:first-child { min-height: 500px; }
  .travel-strip { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  body { padding-bottom: 72px; }
  .wrap { width: min(calc(100% - 24px), var(--max)); }
  .header-inner { min-height: 70px; }
  .brand-logo img { width: min(270px, 68vw); max-height: 54px; }
  .nav-cta { padding: .62rem .85rem; font-size: .86rem; }
  .hero { min-height: 640px; background-position: 60% 45%; }
  .hero-overlay { background: linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.48) 72%, rgba(0,0,0,.18) 100%); }
  .hero-inner { padding-bottom: 48px; }
  .hero h1 { font-size: clamp(2.45rem, 11.8vw, 3.75rem); }
  .hero .actions .button { width: 100%; }
  .hero-facts { gap: 6px; }
  .hero-facts span { font-size: .78rem; }
  .right-wotton-inner { padding: 15px 0; align-items: flex-start; flex-direction: column; gap: 2px; }
  .section { padding: 58px 0; }
  .experience-photo, .experience-photo > img:first-child { min-height: 390px; }
  .experience-photo figcaption { left: 20px; right: 20px; bottom: 18px; font-size: .92rem; }
  .experience-photo::before { width: 46px; top: 16px; right: 16px; }
  .programme-panel { padding: 22px 20px; }
  .programme-panel::after { width: 34px; top: 14px; right: 14px; }
  .visit-card { padding-right: 58px; }
  .visit-card::after { width: 28px; top: 16px; right: 16px; }
  .programme-list li { grid-template-columns: 68px 1fr; gap: 12px; }
  .travel-strip, .visit-grid { grid-template-columns: 1fr; }
  .travel-choice { padding-right: 54px; }
  .travel-choice::after { width: 28px; top: 14px; right: 14px; }
  .travel-choice, .visit-card { min-height: auto; }
  .entrance-callout, .contact { grid-template-columns: 1fr; align-items: flex-start; }
  .entrance-address { min-width: 0; padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(29,29,26,.24); }
  .sticky-ticket { display: block; position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: rgba(29,29,26,.96); backdrop-filter: blur(8px); }
  .sticky-ticket .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none !important; }
  .button { transition: none; }
}

.footer-links { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-links a { text-underline-offset: 3px; }
.legal-main { background: var(--cream); padding: 72px 0 96px; }
.legal-wrap { max-width: 900px; }
.legal-wrap h1 { font-size: clamp(2.5rem, 7vw, 5rem); margin-bottom: 18px; }
.legal-wrap h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 42px; }
.legal-wrap p { max-width: 850px; }
.legal-intro { font-size: 1.14rem; color: var(--muted); }
.legal-wrap a { font-weight: 700; text-underline-offset: 3px; }

/* 2026 post-purchase and gate utilities */
.utility-page { background: #f3f0e9; min-height: 100vh; font-family: "Open Sans", sans-serif; }
.utility-main { padding: 52px 0 80px; }
.utility-wrap { max-width: 860px; }
.utility-card { background: #fff; border-radius: 18px; padding: clamp(24px, 5vw, 52px); box-shadow: 0 18px 50px rgba(0,0,0,.12); }
.utility-card h1 { margin: 0 0 18px; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.02; }
.utility-card p { font-size: 1.05rem; line-height: 1.7; }
.utility-progress { font-weight: 800; color: #665f52; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem !important; }
.utility-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button-outline-dark { border: 2px solid #1D1D1A; color: #1D1D1A; background: transparent; }
.button-outline-dark:hover { background: #1D1D1A; color: #fff; }
.gate-login input, .gate-search input { width: 100%; min-height: 52px; border: 2px solid #bdb7ab; border-radius: 10px; padding: 10px 14px; font: inherit; margin: 12px 0; }
.gate-topline { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.gate-count { text-align: center; min-width: 110px; background: #FBAF33; border-radius: 14px; padding: 16px; }
.gate-count strong { display: block; font-size: 2rem; }
.gate-count span { display: block; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.gate-warning { margin: 18px 0; padding: 14px 16px; border: 2px solid #8b1d1d; border-radius: 10px; background: #fff3f3; font-weight: 800; }
.gate-ticket-list { display: grid; gap: 8px; margin: 24px 0; }
.gate-ticket { display: flex; align-items: center; gap: 12px; border: 1px solid #d9d4ca; border-radius: 10px; padding: 12px 14px; cursor: pointer; }
.gate-ticket.is-checked { background: #edf7ec; }
.gate-ticket input { width: 22px; height: 22px; }
.gate-ticket span { display: grid; }
.gate-ticket small { color: #665f52; }
.gate-search-result { width: 100%; display: grid; text-align: left; gap: 2px; padding: 14px; margin: 8px 0; background: #fff; border: 1px solid #d9d4ca; border-radius: 10px; cursor: pointer; font: inherit; }
.gate-search-result:hover { border-color: #1D1D1A; }
@media (max-width: 640px) { .gate-topline { display: grid; } .gate-count { width: fit-content; } .utility-actions .button { width: 100%; } }
