:root {
  --ink: #102a22;
  --ink-soft: #36544a;
  --forest-950: #062c20;
  --forest-900: #07442f;
  --forest-800: #075c3b;
  --forest-700: #087a4d;
  --forest-500: #19a66a;
  --sun: #f5d649;
  --sun-bright: #ffe76b;
  --coral: #ef744b;
  --sky: #64c9d8;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(16, 42, 34, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 10px 30px rgba(6, 44, 32, 0.09);
  --shadow-md: 0 24px 65px rgba(6, 44, 32, 0.16);
  --shadow-lg: 0 35px 100px rgba(6, 44, 32, 0.25);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --header-height: 76px;
  --shell: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Quicksand", ui-rounded, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open,
body.drawer-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 10vw, 6.7rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.35rem, 7vw, 5rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: -0.035em;
}

::selection {
  color: var(--forest-950);
  background: var(--sun);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg:not(.icon-sprite) {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 10px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto 0;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sun), var(--coral));
  box-shadow: 0 0 18px rgba(245, 214, 73, .7);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s ease, color .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(.985);
}

.button svg {
  flex: 0 0 auto;
}

.button--large {
  min-height: 56px;
  padding-inline: 24px;
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: .9rem;
}

.button--compact {
  min-height: 46px;
  padding: 10px 16px;
  white-space: nowrap;
}

.button--full {
  width: 100%;
}

.button--sun {
  color: var(--forest-950);
  background: var(--sun);
  box-shadow: 0 12px 30px rgba(245, 214, 73, .22);
}

.button--sun:hover {
  background: var(--sun-bright);
  box-shadow: 0 16px 40px rgba(245, 214, 73, .3);
}

.button--green {
  color: var(--white);
  background: var(--forest-800);
  box-shadow: 0 12px 30px rgba(7, 92, 59, .18);
}

.button--green:hover {
  background: var(--forest-700);
  box-shadow: 0 16px 40px rgba(7, 92, 59, .24);
}

.button--ink {
  color: var(--white);
  background: var(--ink);
}

.button--glass {
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .28);
  backdrop-filter: blur(14px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .42);
}

.button--ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .3);
}

.button--outline {
  color: var(--forest-800);
  background: transparent;
  border-color: rgba(7, 92, 59, .3);
}

.button--outline:hover {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row--centre {
  justify-content: center;
}

.text-button,
.link-button,
.text-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.text-button,
.text-link,
.whatsapp-link {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: text-decoration-color .2s ease, opacity .2s ease;
}

.text-button:hover,
.text-link:hover,
.whatsapp-link:hover {
  text-decoration-color: currentColor;
}

.link-button {
  color: var(--forest-800);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-button--danger {
  color: #a23c2a;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--sun);
  border-radius: 999px;
}

.eyebrow--dark {
  color: var(--forest-800);
}

.section {
  position: relative;
  padding-block: clamp(76px, 10vw, 144px);
}

.section--cream {
  background: var(--cream);
}

.section--sun {
  background: var(--sun);
}

.section-heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2,
.music-heading h2,
.faq-heading h2,
.split-copy h2,
.help-card h2,
.programme-copy h2 {
  margin-bottom: 0;
}

.section-heading > p,
.music-heading > p,
.faq-heading > p,
.split-copy > p,
.help-card > p,
.programme-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(6, 44, 32, .83);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 44, 32, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 155px;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-year {
  position: absolute;
  top: 50%;
  right: -16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest-950);
  background: var(--sun);
  border: 3px solid var(--forest-950);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  transform: translateY(-44%) rotate(8deg);
}

.desktop-nav {
  display: none;
}

.desktop-nav ul,
.mobile-menu ul,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  display: block;
  padding: 10px 10px;
  color: rgba(255, 255, 255, .78);
  border-radius: 999px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-register,
.plan-button--header {
  display: none;
}

.plan-button {
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 11px 8px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 700;
  cursor: pointer;
}

.plan-count {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  padding-inline: 6px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 999px;
  font-size: .75rem;
  line-height: 1;
}

.menu-toggle,
.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg,
.icon-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: var(--header-height) 0 auto 0;
  max-height: calc(100svh - var(--header-height));
  padding: 24px 16px calc(30px + env(safe-area-inset-bottom));
  overflow-y: auto;
  color: var(--white);
  background: var(--forest-950);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu li + li {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.14rem;
  font-weight: 700;
}

.mobile-menu nav a::after {
  content: "?";
  color: var(--sun);
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(25, 166, 106, .38), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(100, 201, 216, .22), transparent 28%),
    linear-gradient(150deg, var(--forest-950), var(--forest-900) 58%, #03251a);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-orb {
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .55;
  pointer-events: none;
}

.hero-orb--one {
  top: 22%;
  right: -150px;
  background: var(--sun);
}

.hero-orb--two {
  bottom: 14%;
  left: -190px;
  width: 360px;
  background: var(--coral);
  opacity: .18;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-logo-wrap {
  position: relative;
  width: min(580px, 90%);
  margin-bottom: 28px;
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .22));
}

.hero-year {
  position: absolute;
  right: -8px;
  bottom: -20px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--forest-950);
  background: var(--sun);
  border: 6px solid var(--forest-950);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  font-size: 1.55rem;
  font-weight: 700;
  transform: rotate(7deg);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-facts > span,
.hero-facts > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  text-decoration: none;
  font-size: .87rem;
  backdrop-filter: blur(10px);
}

.hero-facts svg {
  color: var(--sun);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 460px;
}

.hero-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--paper);
  border: 5px solid rgba(255, 255, 255, .9);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(4, 31, 22, .86));
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  left: 14px;
  color: var(--white);
  font-weight: 700;
}

.hero-card--one {
  transform: rotate(-3deg) translateY(18px);
}

.hero-card--one img {
  object-position: 50% 56%;
}

.hero-card--two {
  transform: rotate(3deg);
}

.hero-card--two img {
  object-position: 50% 60%;
}

.hero-card--three {
  grid-column: 1 / -1;
  min-height: 190px;
  margin-inline: 34px;
  transform: rotate(-1.5deg) translateY(-6px);
}

.hero-card--three img {
  object-position: 50% 64%;
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hero-sticker--price {
  top: 39%;
  left: 50%;
  width: 138px;
  min-height: 138px;
  padding: 14px;
  color: var(--forest-950);
  background: var(--sun);
  border: 5px solid var(--forest-950);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.hero-sticker--price img {
  width: 70px;
  margin-bottom: -4px;
  mix-blend-mode: multiply;
}

.hero-sticker--price strong,
.hero-sticker--price span {
  display: block;
  line-height: 1.05;
}

.hero-sticker--price strong {
  font-size: .72rem;
}

.hero-sticker--price span {
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-sticker--kids {
  right: -4px;
  bottom: 78px;
  width: 108px;
  min-height: 108px;
  padding: 10px;
  color: var(--white);
  background: var(--coral);
  border: 4px solid var(--white);
  border-radius: 28% 72% 63% 37% / 42% 36% 64% 58%;
  transform: rotate(8deg);
}

.hero-sticker--kids span,
.hero-sticker--kids strong {
  display: block;
  line-height: 1.05;
}

.hero-sticker--kids span {
  font-size: .72rem;
}

.hero-sticker--kids strong {
  font-size: 1.42rem;
}

.countdown-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-top: 48px;
  padding: 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.countdown-label {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown > div {
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--sun);
  font-size: clamp(1.55rem, 6vw, 3rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .65);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-ticker {
  position: relative;
  z-index: 3;
  margin-top: 54px;
  color: var(--forest-950);
  background: var(--sun);
  border-block: 1px solid rgba(16, 42, 34, .14);
  overflow: hidden;
  transform: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 20px;
  padding-block: 12px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker-track i {
  color: var(--forest-700);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Essentials */
.essentials {
  position: relative;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.essentials-grid {
  display: grid;
}

.quick-fact {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
}

.quick-fact + .quick-fact {
  border-top: 1px solid var(--line);
}

.quick-fact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest-800);
  background: var(--cream);
  border-radius: 16px;
}

.quick-fact span,
.quick-fact strong {
  display: block;
}

.quick-fact span {
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-fact strong {
  margin-top: 1px;
  font-size: .98rem;
}

/* Explore */
.attractions-section {
  overflow: clip;
}

.attractions-section::before {
  content: "";
  position: absolute;
  top: 110px;
  right: -130px;
  width: 300px;
  aspect-ratio: 1;
  background: var(--sky);
  border-radius: 50%;
  opacity: .2;
}

.explore-toolbar {
  position: relative;
  z-index: 30;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.search-box {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
}

.search-box svg {
  position: absolute;
  left: 15px;
  color: var(--forest-700);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 10px 15px 10px 46px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  outline: 0;
}

.search-box input:focus {
  background: var(--white);
  border-color: var(--forest-500);
  box-shadow: 0 0 0 4px rgba(25, 166, 106, .13);
}

.filter-scroller {
  display: flex;
  gap: 8px;
  padding-bottom: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-scroller::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 15px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.filter-button:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 92, 59, .4);
}

.filter-button.is-active {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.results-line {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: .87rem;
}

.attraction-grid {
  display: grid;
  gap: 18px;
}

.attraction-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 8px 28px rgba(6, 44, 32, .07);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .2s ease;
  transform-style: preserve-3d;
}

.attraction-card:hover {
  border-color: rgba(7, 92, 59, .24);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.attraction-card.is-highlighted {
  animation: cardPulse 1.25s var(--ease);
}

@keyframes cardPulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  25%, 70% { box-shadow: 0 0 0 7px rgba(245, 214, 73, .58), var(--shadow-lg); transform: translateY(-8px) scale(1.015); }
}

.attraction-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest-900);
}

.attraction-media::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(4, 31, 22, .45));
  pointer-events: none;
}

.attraction-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .4s ease;
}

.attraction-card:hover .attraction-media img {
  transform: scale(1.055);
}

.attraction-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  max-width: calc(100% - 74px);
  padding: 7px 11px;
  color: var(--forest-950);
  background: var(--sun);
  border: 2px solid rgba(6, 44, 32, .16);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.1;
}

.card-save-mini {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(6, 44, 32, .72);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s var(--ease);
}

.card-save-mini:hover {
  transform: scale(1.08);
}

.card-save-mini.is-saved {
  color: var(--forest-950);
  background: var(--sun);
}

.card-save-mini svg {
  width: 20px;
  height: 20px;
}

.attraction-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.attraction-kicker {
  margin-bottom: 7px;
  color: var(--forest-700);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.attraction-body h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.attraction-description {
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .92rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.attraction-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.detail-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--forest-800);
  background: transparent;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
}

.detail-button svg {
  transition: transform .2s ease;
}

.detail-button:hover svg {
  transform: translateX(3px);
}

.card-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 700;
}

.empty-state {
  padding: 64px 24px;
  text-align: center;
  background: var(--paper);
  border: 1px dashed rgba(7, 92, 59, .32);
  border-radius: var(--radius-lg);
}

.empty-state span {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
}

.empty-state p {
  color: var(--ink-soft);
}

/* Programme */
.programme-section {
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(239, 116, 75, .24), transparent 30%),
    linear-gradient(145deg, var(--forest-950), var(--forest-800));
  overflow: hidden;
}

.programme-section::after {
  content: "26";
  position: absolute;
  right: -4vw;
  bottom: -11vw;
  color: rgba(255, 255, 255, .035);
  font-size: min(46vw, 650px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.programme-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 50px;
}

.programme-copy {
  align-self: start;
}

.programme-copy > p {
  color: rgba(255, 255, 255, .72);
}

.programme-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.programme-note {
  margin-top: 16px !important;
  font-size: .79rem !important;
}

.timeline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 58px;
  width: 2px;
  background: linear-gradient(var(--sun), rgba(245, 214, 73, .08));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 28px;
  padding-block: 13px;
}

.timeline-time {
  padding-top: 3px;
  color: var(--sun);
  font-size: .75rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.timeline-content {
  position: relative;
  padding: 18px 18px 18px 20px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -22px;
  width: 10px;
  height: 10px;
  background: var(--sun);
  border: 4px solid var(--forest-900);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 214, 73, .15);
}

.timeline-content h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.timeline-content p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
}

.timeline-save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 0;
  color: var(--sun);
  background: transparent;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}

.timeline-save.is-saved {
  color: #8fe3b9;
}

/* Competitions */
.competitions-section {
  overflow: hidden;
}

.competitions-section::before,
.competitions-section::after {
  content: "";
  position: absolute;
  border: 4px solid rgba(16, 42, 34, .11);
  border-radius: 50%;
}

.competitions-section::before {
  top: -110px;
  left: -90px;
  width: 240px;
  height: 240px;
}

.competitions-section::after {
  right: -90px;
  bottom: -130px;
  width: 300px;
  height: 300px;
}

.competition-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.competition-card {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 26px;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(16, 42, 34, .14);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.competition-card:nth-child(2n) {
  color: var(--forest-950);
  background: var(--paper);
}

.competition-card:nth-child(3n) {
  color: var(--forest-950);
  background: var(--coral);
}

.competition-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px) rotate(-.5deg);
}

.competition-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 17px;
  transform: rotate(-5deg);
}

.competition-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.competition-card p {
  margin-bottom: 20px;
  color: currentColor;
  font-size: .88rem;
  opacity: .76;
}

.competition-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 700;
  opacity: .72;
}

.competition-meta svg {
  transition: transform .2s ease;
}

.competition-card:hover .competition-meta svg {
  transform: translateX(4px);
}

/* High street */
.split-feature {
  display: grid;
  gap: 42px;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 55%;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(6, 44, 32, .72));
}

.split-media-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(6, 44, 32, .72);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.split-copy > p {
  margin-top: 22px;
}

.feature-points {
  display: grid;
  gap: 12px;
  margin-block: 26px;
}

.feature-points > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.feature-points strong {
  color: var(--forest-800);
}

.feature-points span {
  color: var(--ink-soft);
}

/* Music */
.music-section {
  color: var(--white);
  background: #111b18;
  overflow: hidden;
}

.music-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background: repeating-radial-gradient(circle at 85% 50%, transparent 0 38px, rgba(255,255,255,.15) 39px 41px);
}

.music-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-bottom: 42px;
}

.music-heading > p {
  color: rgba(255, 255, 255, .68);
}

.music-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
  gap: clamp(20px, 3vw, 32px);
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.music-card {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 7 / 10;
  overflow: hidden;
  background: #111b18;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.music-card::after {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
}

.music-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  background: #111b18;
  transition: transform .8s var(--ease);
}

.music-card:hover img {
  transform: none;
}

.music-card--radio img {
  object-position: 50% 50%;
}

.music-card--live img,
.music-card--dj img {
  object-position: center center;
}

.music-card > div {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.music-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--sun);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.music-card h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.music-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

/* Help */
.help-layout {
  display: grid;
  gap: 18px;
}

.help-card {
  padding: clamp(28px, 6vw, 56px);
  border-radius: var(--radius-lg);
}

.help-card--main {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.help-card--interest {
  color: var(--white);
  background: linear-gradient(145deg, var(--forest-900), var(--forest-700));
  box-shadow: var(--shadow-md);
}

.help-card--interest > p {
  color: rgba(255, 255, 255, .7);
}

.help-card h3 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.help-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 22px;
  transform: rotate(-5deg);
}

.help-icon svg {
  width: 34px;
  height: 34px;
}

.whatsapp-link {
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  color: rgba(255, 255, 255, .75);
  font-size: .86rem;
}

/* Supporters */
.supporters-section {
  padding-block: 70px;
  color: var(--white);
  background: var(--forest-950);
  overflow: hidden;
}

.supporters-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.supporters-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 3.8rem);
}

.supporters-heading > p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, .6);
}

.supporters-marquee {
  position: relative;
  overflow: hidden;
}

.supporters-marquee::before,
.supporters-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.supporters-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--forest-950), transparent);
}

.supporters-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--forest-950), transparent);
}

.supporter-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: supporterTicker 52s linear infinite;
}

.supporter-track:hover {
  animation-play-state: paused;
}

.supporter-pill {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 12px 18px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.supporter-pill::before {
  content: "?";
  margin-right: 10px;
  color: var(--sun);
}

@keyframes supporterTicker {
  to { transform: translateX(-50%); }
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 40px;
}

.faq-heading {
  align-self: start;
}

.faq-heading > p {
  margin-top: 20px;
}

.faq-heading .text-link {
  margin-top: 20px;
  color: var(--forest-800);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: rgba(7, 92, 59, .35);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  flex: 0 0 auto;
  color: var(--forest-700);
  transition: transform .2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: .92rem;
}

.faq-answer p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding-block: clamp(90px, 14vw, 180px);
  color: var(--white);
  background: var(--forest-800);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(245, 214, 73, .2), transparent 36%);
}

.final-cta-art {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: space-between;
  padding: 20px;
  color: rgba(255, 255, 255, .045);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .75;
  pointer-events: none;
}

.final-cta-art span:nth-child(even) {
  text-align: right;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta-inner img {
  width: min(620px, 88%);
  margin: 0 auto 34px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

.final-cta-inner h2 {
  margin-bottom: 34px;
  font-size: clamp(2.5rem, 8vw, 6rem);
}

/* Footer */
.site-footer {
  padding: 62px 0 calc(100px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, .75);
  background: #061f17;
}

.footer-grid {
  display: grid;
  gap: 42px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 480px;
  margin: 0;
  font-size: .9rem;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .04em;
}

.site-footer li + li {
  margin-top: 9px;
}

.site-footer a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: .88rem;
}

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

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-list svg {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

/* Mobile actions */
.mobile-action-bar {
  position: fixed;
  z-index: 800;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 7px;
  color: var(--white);
  background: rgba(6, 44, 32, .94);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .3);
  backdrop-filter: blur(16px);
}

.mobile-action-bar a,
.mobile-action-bar button {
  position: relative;
  display: grid;
  min-height: 52px;
  place-items: center;
  gap: 1px;
  padding: 5px;
  color: rgba(255, 255, 255, .82);
  background: transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-action-bar svg {
  width: 21px;
  height: 21px;
  color: var(--sun);
}

.mobile-plan-icon {
  position: relative;
}

.mobile-plan-icon i {
  position: absolute;
  top: -8px;
  right: -13px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 4px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 999px;
  font-size: .62rem;
  font-style: normal;
}

.back-to-top {
  position: fixed;
  z-index: 700;
  right: 18px;
  bottom: calc(90px + env(safe-area-inset-bottom));
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--forest-800);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Drawer */
.drawer-backdrop {
  position: fixed;
  z-index: 1400;
  inset: 0;
  background: rgba(3, 25, 18, .65);
  backdrop-filter: blur(5px);
}

.drawer-backdrop[hidden] {
  display: none;
}

.plan-drawer {
  position: fixed;
  z-index: 1500;
  inset: 0 0 0 auto;
  display: grid;
  width: min(100%, 480px);
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -30px 0 90px rgba(0, 0, 0, .24);
  transform: translateX(105%);
  transition: transform .38s var(--ease);
}

.plan-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 8px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.drawer-header .icon-button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--cream);
  border-color: var(--line);
}

.drawer-body {
  padding: 20px;
  overflow-y: auto;
}

.plan-empty {
  display: grid;
  min-height: 100%;
  place-content: center;
  justify-items: center;
  padding: 32px 14px;
  text-align: center;
}

.plan-empty-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--forest-800);
  background: var(--cream);
  border-radius: 24px;
}

.plan-empty-icon svg {
  width: 34px;
  height: 34px;
}

.plan-empty h3 {
  margin-bottom: 8px;
}

.plan-empty p {
  max-width: 330px;
  color: var(--ink-soft);
}

.plan-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.plan-item img {
  width: 76px;
  height: 70px;
  object-fit: cover;
  border-radius: 11px;
}

.plan-item-time {
  display: block;
  color: var(--forest-700);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.plan-item strong {
  display: block;
  margin-top: 2px;
  line-height: 1.2;
}

.plan-remove {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #a23c2a;
  background: var(--paper);
  border-radius: 50%;
  cursor: pointer;
}

.drawer-footer {
  display: grid;
  gap: 12px;
  padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* Dialog */
.attraction-dialog {
  width: min(calc(100% - 24px), 880px);
  max-height: min(88svh, 800px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: auto;
}

.attraction-dialog::backdrop {
  background: rgba(3, 25, 18, .72);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: fixed;
  z-index: 3;
  top: max(18px, calc((100svh - min(88svh, 800px)) / 2 + 15px));
  right: max(18px, calc((100vw - min(calc(100% - 24px), 880px)) / 2 + 15px));
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(6, 44, 32, .82);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.dialog-close svg {
  width: 22px;
  height: 22px;
}

.dialog-layout {
  display: grid;
}

.dialog-media {
  min-height: 300px;
  background: var(--forest-900);
}

.dialog-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 460px;
  object-fit: cover;
}

.dialog-copy {
  padding: 28px;
}

.dialog-copy .attraction-kicker {
  margin-bottom: 9px;
}

.dialog-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 7vw, 3.8rem);
}

.dialog-copy > p {
  color: var(--ink-soft);
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 20px;
}

.dialog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--forest-800);
  background: var(--cream);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 2000;
  right: 16px;
  bottom: calc(94px + env(safe-area-inset-bottom));
  left: 16px;
  max-width: 430px;
  padding: 13px 16px;
  color: var(--white);
  background: var(--forest-950);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: .87rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript-message {
  position: fixed;
  z-index: 3000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 560px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

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

  .quick-fact:nth-child(2) {
    border-top: 0;
  }

  .quick-fact:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--line);
  }

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

  .music-cards {
    grid-template-columns: repeat(2, minmax(0, 460px));
    justify-content: center;
  }

  .music-card--radio {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .music-card--radio img {
    min-height: 330px;
  }

  .supporters-heading,
  .section-heading {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  }

  .toast {
    right: 22px;
    bottom: 22px;
    left: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 760px) {
  :root {
    --header-height: 82px;
  }

  .brand {
    width: 180px;
  }

  .plan-button--header {
    display: inline-flex;
  }

  .hero {
    padding-top: calc(var(--header-height) + 84px);
  }

  .hero-grid {
    gap: 70px;
  }

  .countdown-wrap {
    grid-template-columns: minmax(180px, .7fr) 1.3fr;
    align-items: center;
    padding: 22px 26px;
  }

  .countdown-label {
    font-size: .84rem;
  }

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

  .quick-fact,
  .quick-fact:nth-child(2) {
    padding: 26px 18px;
    border-top: 0;
  }

  .quick-fact + .quick-fact,
  .quick-fact:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .explore-toolbar {
    position: sticky;
    top: calc(var(--header-height) + 10px);
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr) auto;
    align-items: center;
  }

  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .programme-layout {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 70px;
  }

  .programme-copy {
    position: sticky;
    top: calc(var(--header-height) + 40px);
  }

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

  .timeline-item {
    grid-template-columns: 66px 1fr;
  }

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

  .split-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: clamp(48px, 7vw, 95px);
  }

  .split-media,
  .split-media img {
    min-height: 620px;
  }

  .help-layout {
    grid-template-columns: 1.25fr .75fr;
  }

  .supporters-heading {
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
  }

  .faq-layout {
    grid-template-columns: minmax(250px, .68fr) minmax(0, 1.32fr);
    gap: 80px;
  }

  .faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 40px);
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, .7fr);
  }

  .mobile-action-bar {
    display: none;
  }

  .back-to-top {
    bottom: 22px;
  }

  .site-footer {
    padding-bottom: 48px;
  }

  .toast {
    bottom: 24px;
  }

  .dialog-layout {
    grid-template-columns: .92fr 1.08fr;
  }

  .dialog-media,
  .dialog-media img {
    min-height: 560px;
    max-height: none;
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .header-register {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
    gap: 55px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-card--one,
  .hero-card--two {
    min-height: 330px;
  }

  .hero-card--three {
    min-height: 230px;
  }

  .countdown-wrap {
    width: min(calc(100% - 48px), 920px);
    margin-left: max(24px, calc((100vw - var(--shell)) / 2));
  }

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

  .music-cards {
    grid-template-columns: repeat(2, minmax(0, 460px));
    justify-content: center;
    max-width: 960px;
    margin-inline: auto;
  }

  .music-card--radio {
    grid-column: auto;
    min-height: 500px;
  }

  .music-card,
  .music-card img,
  .music-card--radio img {
    min-height: 0;
  }

  .music-card--live {
    transform: none;
  }
}

@media (min-width: 1180px) {
  .desktop-nav a {
    padding-inline: 13px;
    font-size: .89rem;
  }

  .attraction-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .attraction-card:nth-child(8n + 1),
  .attraction-card:nth-child(8n + 6) {
    grid-row: span 1;
  }

  .competition-card {
    min-height: 255px;
  }
}

@media (max-width: 420px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-card {
    min-height: 205px;
    border-width: 4px;
  }

  .hero-card--three {
    min-height: 165px;
    margin-inline: 20px;
  }

  .hero-sticker--price {
    width: 118px;
    min-height: 118px;
  }

  .hero-sticker--kids {
    right: -7px;
    bottom: 65px;
    width: 92px;
    min-height: 92px;
  }

  .countdown-wrap {
    padding: 16px 10px;
  }

  .countdown span {
    font-size: .57rem;
  }

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

  .timeline-item {
    grid-template-columns: 36px 1fr;
    gap: 22px;
  }

  .timeline-time {
    font-size: .67rem;
  }

  .timeline-content::before {
    left: -17px;
  }

  .feature-points > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-action-bar,
  .back-to-top,
  .scroll-progress,
  .hero,
  .essentials,
  .attractions-section,
  .competitions-section,
  .high-street-section,
  .music-section,
  .help-section,
  .supporters-section,
  .faq-section,
  .final-cta,
  .site-footer,
  .drawer-backdrop,
  .drawer-header,
  .drawer-footer {
    display: none !important;
  }

  body,
  .plan-drawer {
    background: #fff !important;
  }

  .plan-drawer {
    position: static;
    display: block;
    width: 100%;
    box-shadow: none;
    transform: none;
  }

  .drawer-body {
    overflow: visible;
  }

  .plan-item {
    break-inside: avoid;
  }

  .plan-remove {
    display: none;
  }
}

/* Final desktop fit-and-finish */
.music-card--radio {
  background: #203d4a;
}

.music-card--radio img {
  object-fit: contain;
  object-position: 50% 26%;
  padding: clamp(24px, 3vw, 46px) clamp(18px, 2vw, 34px) 125px;
  background: #203d4a;
}

.attraction-card[data-id="cotswolds-radio"] .attraction-media {
  background: #203d4a;
}

.attraction-card[data-id="cotswolds-radio"] .attraction-media img {
  object-fit: contain;
  padding: 18px 24px 34px;
}

@media (min-width: 1180px) {
  .explore-toolbar {
    grid-template-columns: 240px minmax(0, 1fr) auto;
  }

  .filter-scroller {
    overflow: visible;
  }

  .filter-button {
    padding-inline: 11px;
    font-size: .8rem;
  }
}