:root {
  --ink: #21100c;
  --ink-soft: #5f4b43;
  --night: #180805;
  --night-2: #2b1009;
  --cream: #fff8ef;
  --sand: #f5e4cf;
  --white: #ffffff;
  --orange: #ef5b16;
  --orange-deep: #c73c08;
  --amber: #f5a623;
  --gold: #d88b17;
  --line: rgba(70, 29, 15, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 32px rgba(68, 26, 8, 0.10);
  --shadow-lg: 0 28px 70px rgba(53, 15, 4, 0.24);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

::selection { background: rgba(239, 91, 22, 0.25); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-sand { background: linear-gradient(180deg, #f9eddf 0%, #f4dfc5 100%); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(239, 91, 22, 0.17), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.10), transparent 28%),
    linear-gradient(135deg, #160704 0%, #2b0e07 55%, #180805 100%);
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 8, 3, 0.82), rgba(31, 8, 3, 0));
  pointer-events: none;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(28, 8, 4, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(14, 3, 0, 0.25);
}
.site-header.scrolled::after { opacity: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); min-width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 0 0 5px rgba(255, 147, 40, 0.12), 0 8px 22px rgba(239, 91, 22, 0.35);
}
.brand-mark::before, .brand-mark::after, .brand-mark span::before, .brand-mark span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 228, 176, 0.8);
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.brand-mark::after { transform: translate(-50%, -50%) rotate(45deg); }
.brand-mark span::before { transform: translate(-50%, -50%) rotate(90deg); }
.brand-mark span::after { transform: translate(-50%, -50%) rotate(135deg); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-copy em { color: var(--amber); font-style: normal; }
.brand-copy small { margin-top: 5px; font-size: 0.61rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }

.primary-nav { display: flex; align-items: center; gap: 25px; color: var(--white); }
.primary-nav > a:not(.button) {
  position: relative;
  font-size: 0.91rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--amber);
  transition: right 180ms ease;
}
.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { right: 0; }
.primary-nav > a:not(.button):hover { color: var(--white); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  place-content: center;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; background: currentColor; border-radius: 3px; transition: transform 200ms ease, opacity 200ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff7b20, var(--orange));
  box-shadow: 0 12px 28px rgba(239, 91, 22, 0.30);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(239, 91, 22, 0.42); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(25, 7, 3, 0.18);
  backdrop-filter: blur(8px);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 0.88rem; }
.button-outline-dark { color: var(--ink); border-color: rgba(52, 20, 9, 0.24); background: transparent; }
.button-outline-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-deep); font-weight: 700; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #ffd6a1; }

.hero {
  min-height: min(840px, 96vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}
.hero-media, .hero-media picture, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 50%; filter: saturate(1.04) contrast(1.02); transform: scale(1.005); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(23, 6, 2, 0.94) 0%,
      rgba(28, 8, 3, 0.86) 28%,
      rgba(27, 8, 3, 0.64) 46%,
      rgba(24, 7, 3, 0.28) 66%,
      rgba(18, 5, 2, 0.08) 82%),
    linear-gradient(180deg,
      rgba(16, 4, 1, 0.48) 0%,
      rgba(16, 4, 1, 0.05) 42%,
      rgba(16, 4, 1, 0.48) 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.hero-glow-one { width: 430px; height: 430px; left: -180px; bottom: -120px; background: rgba(239, 91, 22, 0.24); }
.hero-glow-two { width: 280px; height: 280px; left: 42%; top: 20%; background: rgba(245, 166, 35, 0.10); }
.hero-layout {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 625px; color: var(--white); }
.eyebrow, .kicker, .mini-label {
  margin: 0 0 16px;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #ffe0b5; }
.eyebrow span { width: 28px; height: 1px; background: var(--amber); }
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 6.9vw, 6.9rem);
  line-height: 0.83;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 5px 28px rgba(30, 6, 1, 0.35);
}
.hero h1 span { color: #ff9b34; }
.hero-tagline {
  margin: 22px 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-style: italic;
  color: #ffd69c;
}
.hero-intro { max-width: 590px; margin: 0; font-size: 1.07rem; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-details { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.hero-details span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(22,6,2,.28);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}

.countdown-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(22, 6, 2, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(8, 2, 0, 0.38);
  color: var(--white);
}
.countdown-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 196, 120, 0.55), rgba(239, 91, 22, 0.18) 45%, transparent 75%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.countdown-heading {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 224, 181, 0.82);
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
.count-box {
  padding: 14px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}
.count-box b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  color: #ffd69c;
}
.count-box span {
  display: block;
  margin-top: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.countdown-meta {
  list-style: none;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 14px;
}
.countdown-meta li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
}
.countdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffc279;
  font-size: 0.85rem;
}
.countdown-meta small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 224, 181, 0.7);
}
.countdown-meta strong {
  display: block;
  margin-top: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}
.countdown-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 194, 121, 0.45);
  text-underline-offset: 3px;
}
.countdown-meta a:hover { color: #ffd69c; }

.sponsor-strip {
  padding: 28px 0 32px;
  background: linear-gradient(180deg, #fffaf4 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.sponsor-logo-line {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}
.sponsor-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.sponsor-group-key .sponsor-tier-label {
  font-size: .72rem;
  color: var(--orange);
}
.sponsor-tier-label {
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.sponsor-logo-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.sponsor-logo {
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.sponsor-group-key .sponsor-logo {
  box-sizing: border-box;
  width: 200px;
  height: 176px;
  min-width: 200px;
  min-height: 176px;
  padding: 16px;
  border-color: rgba(239, 91, 22, .28);
  box-shadow: 0 10px 28px rgba(73, 25, 8, .1);
}
.sponsor-group-co .sponsor-logo {
  box-sizing: border-box;
  padding: 8px 12px;
  height: 76px;
  min-height: 76px;
  opacity: .96;
}
.sponsor-logo-dark {
  background: #141414;
  border-color: rgba(0, 0, 0, .35);
}
.sponsor-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
.sponsor-group-key .sponsor-logo img {
  width: auto;
  height: auto;
  max-width: 168px;
  max-height: 144px;
  object-fit: contain;
}
.sponsor-group-co .sponsor-logo img {
  max-height: 58px;
  max-width: 168px;
}
.sponsor-group-co .sponsor-logo-wide img {
  max-width: 220px;
}

.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.section-copy h2, .section-heading h2, .partner-copy h2, .contact-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section-copy h2 span, .section-heading h2 span, .partner-copy h2 span, .contact-copy h2 span { color: var(--orange); font-style: italic; }
.section-copy .lead { font-size: 1.15rem; color: var(--ink); }
.section-copy > p:not(.kicker) { color: var(--ink-soft); max-width: 720px; }
.principles { display: grid; gap: 12px; margin-top: 30px; }
.principles article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 19px;
  border: 1px solid rgba(93, 34, 12, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,.66);
}
.principles h3 { margin: 0 0 5px; font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); }
.principles p { margin: 0; font-size: .93rem; color: var(--ink-soft); }
.line-icon, .impact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(239, 91, 22, .10);
  border: 1px solid rgba(239, 91, 22, .22);
  font-size: 1.35rem;
  font-weight: 700;
}
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.impact-card {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(95, 39, 15, .15);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.impact-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: -65px;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,91,22,.16), transparent 70%);
}
.impact-card.featured { color: var(--white); background: linear-gradient(145deg, #3a1209, #6b1e08); border-color: rgba(255, 151, 54, .38); }
.impact-card.featured .impact-icon { color: #ffd99f; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.impact-card strong { margin-top: 34px; font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.impact-card p { margin: 8px 0 0; color: var(--ink-soft); font-size: .9rem; }
.impact-card.featured p { color: rgba(255,255,255,.68); }

.partner-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 164, 79, .24);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
}
.partner-image { position: relative; min-height: 460px; overflow: hidden; }
.partner-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22,6,2,.92), transparent 45%); }
.partner-image img { width: 100%; height: 100%; object-fit: cover; }
.partner-image span { position: absolute; z-index: 2; left: 28px; bottom: 24px; font-family: var(--serif); font-size: 1.2rem; }
.partner-copy { padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.partner-copy h2 { font-size: clamp(2.7rem, 5vw, 4.4rem); }
.partner-copy > p:not(.kicker) { color: rgba(255,255,255,.72); }
.kicker.light { color: #f7b451; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; margin: 24px 0; }
.service-grid span { position: relative; padding-left: 22px; color: rgba(255,255,255,.86); font-size: .9rem; }
.service-grid span::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 800; }
.partner-copy blockquote {
  margin: 8px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.055);
  color: #ffe1b7;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading > p:not(.kicker) { color: var(--ink-soft); margin: 0; }
.section-heading.light { color: var(--white); }
.section-heading.light > p:not(.kicker) { color: rgba(255,255,255,.68); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  box-shadow: 0 18px 45px rgba(81, 31, 11, .07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.info-card:hover { transform: translateY(-5px); border-color: rgba(239,91,22,.28); box-shadow: 0 24px 50px rgba(81,31,11,.12); }
.info-card.highlight { color: var(--white); background: linear-gradient(145deg, #5b1a08, #9f3009); }
.info-card .number { font-family: var(--serif); font-size: 4.3rem; line-height: 1; color: rgba(239, 91, 22, .15); position: absolute; right: 20px; top: 12px; }
.info-card.highlight .number { color: rgba(255,255,255,.13); }
.info-card h3 { margin: 64px 0 12px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep); }
.info-card.highlight h3 { color: #ffc47c; }
.info-card p { margin: 0; color: var(--ink-soft); }
.info-card.highlight p { color: rgba(255,255,255,.75); }
.info-card strong { color: var(--ink); }
.info-card.highlight strong { color: var(--white); }
.info-card .text-link { margin-top: 18px; font-size: .88rem; }

.tickets-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px 48px;
  align-items: center;
  padding: 34px 36px;
  border: 1px solid rgba(70, 29, 15, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(239, 91, 22, 0.06), transparent 42%),
    linear-gradient(180deg, #fffaf4, #fff3e6);
  box-shadow: var(--shadow-sm);
}
.tickets-copy .kicker { margin-bottom: 10px; }
.tickets-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  color: var(--ink);
}
.tickets-copy h3 span { color: var(--orange-deep); }
.tickets-impact {
  margin: 0;
  max-width: 34ch;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--orange-deep);
}
.tickets-note {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.tickets-contacts {
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(70, 29, 15, 0.10);
  background: rgba(255, 255, 255, 0.72);
}
.tickets-contacts-label {
  margin: 0 0 14px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tickets-contacts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.tickets-contacts li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(70, 29, 15, 0.10);
}
.tickets-contacts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.tickets-contacts span {
  font-weight: 700;
  color: var(--ink);
}
.tickets-contacts a {
  font-weight: 600;
  color: var(--orange-deep);
}
.tickets-contacts a:hover { color: var(--orange); }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: stretch; }
.pricing-custom { grid-column: 1 / -1; min-height: 0; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(88, 38, 16, .15);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 50px rgba(73, 25, 8, .08);
}
.price-card.popular {
  color: var(--white);
  background: linear-gradient(155deg, #4d1508 0%, #8c2908 58%, #c9470d 120%);
  border-color: rgba(236, 137, 47, .5);
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(111, 31, 5, .26);
}
.price-card.compact { min-height: 355px; }
.popular-label {
  position: absolute;
  top: 15px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffd89e;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tier { margin: 0; font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep); }
.price-card.popular .tier { color: #ffc77f; }
.price-card h3 { margin: 10px 0 20px; font-family: var(--serif); font-size: 2.45rem; line-height: 1; }
.price-card.custom h3 { font-size: 2rem; line-height: 1.08; }
.price-card > p:not(.tier) { color: var(--ink-soft); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.price-card li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: .91rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.price-card.popular li { color: rgba(255,255,255,.78); }
.price-card.popular li::before { color: #ffd18f; }
.price-card .button, .price-card .text-link { margin-top: auto; }
.price-card.popular .button-primary { background: linear-gradient(135deg, #ffad45, #ff6c16); }

.gallery-section { overflow: hidden; }
.gallery-section::before { content: ""; position: absolute; width: 500px; height: 500px; right: -220px; top: 100px; border: 1px solid rgba(255, 166, 80, .18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.015), 0 0 0 160px rgba(255,255,255,.01); }
.gallery-grid { display: grid; grid-template-columns: 1.45fr .72fr .72fr; grid-template-rows: 270px 270px; gap: 14px; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.14); background: #2d1009; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-main { grid-row: 1 / 3; }
.gallery-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,5,2,.9), transparent 55%); }
.gallery-main figcaption { position: absolute; z-index: 2; left: 28px; bottom: 24px; font-family: var(--serif); font-size: 1.5rem; }
.crop-wheel { grid-column: 2 / 4; }
.crop-wheel img { object-position: center 35%; }
.crop-food img { object-position: center 30%; }
.crop-stage img { object-position: center 45%; }

.involve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.involve-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fffaf4; transition: transform 180ms ease, box-shadow 180ms ease; }
.involve-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.involve-card > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: var(--orange); background: rgba(239,91,22,.1); font-size: 1.45rem; }
.involve-card h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 1.55rem; }
.involve-card p { color: var(--ink-soft); }
.involve-card .text-link { margin-top: 10px; }

.contact-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24,7,3,.96), rgba(67,17,6,.92)),
    url("assets/sundownbash-carnival-clean-20260725-v3.webp?v=20260725-v3") center 62% / cover no-repeat;
}
.contact-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 70px; align-items: center; }
.contact-copy > p:not(.kicker) { color: rgba(255,255,255,.72); max-width: 520px; }
.contact-list { margin: 34px 0 0; display: grid; gap: 18px; }
.contact-list div { padding-left: 18px; border-left: 2px solid var(--orange); }
.contact-list dt { font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #ffc077; }
.contact-list dd { margin: 3px 0 0; color: rgba(255,255,255,.86); }
.contact-list a:hover { color: #ffd39a; }
.contact-form {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; }
.contact-form label > span { font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.78); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(20,5,2,.42);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.contact-form select option { color: var(--ink); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 135px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.42); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(255, 168, 87, .8); background: rgba(20,5,2,.58); box-shadow: 0 0 0 4px rgba(239,91,22,.13); }
.contact-form .button { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 10px 0 0; text-align: center; font-size: .86rem; color: #ffd9a5; }

.site-footer { color: rgba(255,255,255,.72); background: #110503; }
.footer-grid { padding: 58px 0 38px; display: grid; grid-template-columns: 1.4fr .55fr .85fr .55fr; gap: 48px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child p { max-width: 450px; }
.footer-grid h3 { margin: 0 0 14px; color: var(--white); font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(:first-child):not(.footer-social) a { display: block; margin: 7px 0; }
.footer-grid a:hover { color: #ffc279; }
.footer-social .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.footer-social .social-link:hover {
  color: #ffd69c;
  border-color: rgba(255, 194, 121, .45);
  background: rgba(239, 91, 22, .18);
}
.footer-social .social-link svg { flex-shrink: 0; display: block; }
.footer-social .social-link-facebook:hover .social-icon-facebook path {
  fill: #3b8af0;
}
.organiser-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.organiser-brand img {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 194, 121, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  background: #1a1a1a;
}
.organiser-copy {
  display: grid;
  gap: 4px;
}
.organiser-copy strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.organiser-copy span {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffd69c;
}
.footer-bottom { padding: 18px 0 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.10); font-size: .84rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid #ffb65c; outline-offset: 3px; }

@media (max-width: 1080px) {
  .primary-nav { gap: 17px; }
  .primary-nav > a:not(.button) { font-size: .82rem; }
  .hero-layout { gap: 36px; grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); }
  .split-layout { gap: 42px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .sponsor-logo-row { justify-content: flex-start; }
  .sponsor-logo-line { gap: 18px; }
}

@media (max-width: 920px) {
  :root { --shell: min(calc(100% - 32px), 720px); }
  .section { padding: 84px 0; }
  .menu-toggle { display: grid; }
  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    background: rgba(28,8,4,.97);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 80px rgba(0,0,0,.38);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > a:not(.button) { padding: 14px 10px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 12px; }
  .hero { min-height: 760px; }
  .hero-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero-media img { object-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(22,5,2,.94) 0%, rgba(24,6,2,.78) 55%, rgba(24,6,2,.30) 100%), linear-gradient(180deg, rgba(18,5,2,.38), rgba(18,5,2,.16) 50%, rgba(18,5,2,.50)); }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: clamp(4rem, 12vw, 6.2rem); }
  .countdown-card { max-width: 420px; }
  .split-layout, .partner-card, .contact-layout { grid-template-columns: 1fr; }
  .impact-grid { max-width: none; }
  .partner-card { min-height: 0; }
  .partner-image { min-height: 420px; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets-band { grid-template-columns: 1fr; padding: 28px 24px; gap: 22px; }
  .gallery-grid { grid-template-columns: 1.2fr 1fr; grid-template-rows: 320px 240px 240px; }
  .gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .crop-wheel { grid-column: auto; }
  .involve-grid { grid-template-columns: 1fr; }
  .contact-layout { gap: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 70px 0; }
  .site-header { padding: 12px 0; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark::before, .brand-mark::after, .brand-mark span::before, .brand-mark span::after { height: 45px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: .5rem; }
  .hero { min-height: auto; align-items: flex-end; padding-bottom: 55px; }
  .hero-layout { padding-top: 130px; gap: 28px; }
  .hero-media img { object-position: 58% center; transform: scale(1.04); }
  .hero-shade { background: linear-gradient(180deg, rgba(19,5,2,.48) 0%, rgba(20,5,2,.64) 34%, rgba(20,5,2,.96) 72%); }
  .eyebrow { font-size: .67rem; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 5.3rem); }
  .hero-tagline { font-size: 1.35rem; }
  .hero-intro { font-size: .98rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-details { gap: 7px; }
  .hero-details span { font-size: .7rem; }
  .countdown-card { max-width: none; padding: 22px 18px; }
  .countdown { gap: 8px; }
  .count-box { padding: 12px 4px 10px; }
  .count-box b { font-size: 1.45rem; }
  .countdown-meta strong { font-size: .86rem; }
  .split-layout { gap: 36px; }
  .section-copy h2, .section-heading h2, .partner-copy h2, .contact-copy h2 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .impact-card { min-height: 175px; padding: 20px; }
  .impact-card strong { font-size: 1.75rem; }
  .impact-card p { font-size: .79rem; }
  .partner-image { min-height: 320px; }
  .partner-copy { padding: 28px 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .event-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-custom { grid-column: auto; }
  .sponsor-strip { padding: 22px 0 26px; }
  .sponsor-logo-line {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .sponsor-logo-row { gap: 10px; }
  .sponsor-group-key .sponsor-logo-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .sponsor-group-key .sponsor-logo-row > li {
    width: 100%;
  }
  .sponsor-logo img { max-height: 48px; }
  .sponsor-group-key .sponsor-logo {
    width: 100%;
    min-width: 0;
    height: 168px;
    min-height: 168px;
    padding: 18px;
  }
  .sponsor-group-key .sponsor-logo img {
    max-width: min(240px, 72vw);
    max-height: 132px;
  }
  .sponsor-group-co .sponsor-logo-row {
    justify-content: flex-start;
  }
  .sponsor-group-co .sponsor-logo {
    height: 68px;
    min-height: 68px;
    padding: 6px 8px;
  }
  .sponsor-group-co .sponsor-logo img {
    max-height: 52px;
    max-width: 140px;
  }
  .info-card { min-height: 220px; }
  .price-card { padding: 26px 22px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 320px 210px 210px 210px; }
  .gallery-main, .crop-wheel { grid-column: auto; grid-row: auto; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
