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

:root {
  --navy: #1a2b40;
  --navy-deep: #0e1a2a;
  --cream: #faf0e0;
  --gold: #f0b840;
  --gold-bright: #ffc85a;
  --rose: #e88070;
  --body: #3d4a5c;
  --eyebrow: #c99a2e;
  --muted: #b89a5e;
  --divider: #e7d8bc;
  --card-border: #ecdcbc;
  --footer-muted: #7c8799;
  --column: 600px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: 'Barlow Condensed', sans-serif;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--gold);
  color: var(--navy);
}

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

.container {
  width: min(100%, var(--column));
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 40;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: top 0.14s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 62px;
  background: var(--navy);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-lockup__mark {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand-lockup__words {
  line-height: 0.78;
  text-transform: uppercase;
}

.brand-lockup__words span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.brand-lockup__words span:first-child {
  color: var(--cream);
  font-weight: 600;
}

.brand-lockup__words span:last-child {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.14s ease, transform 0.14s ease;
}

.pill-button:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.pill-button:active {
  transform: scale(0.96);
}

.ticker {
  overflow: hidden;
  border-bottom: 3px solid var(--navy);
  background: var(--rose);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee var(--ticker-speed, 24s) linear infinite;
}

.ticker__set {
  display: flex;
  flex: none;
  align-items: center;
  gap: 18px;
  padding-block: 9px;
}

.ticker__set span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__set span:first-child {
  padding-left: 18px;
}

.ticker__set .ticker__dot {
  color: var(--cream);
  font-size: 13px;
}

.brand-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.brand-hero__sun {
  position: absolute;
  top: -90px;
  left: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.14;
  transform: translateX(-50%);
}

.brand-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 54px 56px;
  text-align: center;
}

.brand-hero__mark {
  width: 92px;
  height: 92px;
  animation: mark-bob 5s ease-in-out infinite;
}

.brand-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(48px, 15vw, 76px);
  letter-spacing: -0.01em;
  line-height: 0.84;
  text-transform: uppercase;
}

.brand-hero h1 span {
  display: block;
}

.brand-hero h1 span:first-child {
  color: var(--cream);
  font-weight: 600;
}

.brand-hero h1 span:last-child {
  color: var(--gold);
  font-weight: 900;
}

.brand-hero p {
  max-width: 34ch;
  margin: 20px 0 0;
  color: #b9c2cf;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
}

.brand-hero .pill-button {
  margin-top: 28px;
  padding: 14px 26px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.wave-divider {
  height: 40px;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

.day-section {
  margin-bottom: -2px;
}

.wave-divider--flip {
  transform: rotate(180deg);
}

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

.section__inner {
  padding-block: 40px 44px;
}

.eyebrow {
  margin: 0;
  color: var(--eyebrow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--muted {
  color: var(--muted);
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(34px, 9vw, 50px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-copy {
  max-width: 40ch;
  margin: 12px 0 0;
  color: var(--body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.featured-card {
  display: block;
  overflow: hidden;
  margin-top: 24px;
  border: 3px solid var(--navy);
  border-radius: 20px;
  background: white;
  box-shadow: 8px 8px 0 var(--gold);
  text-decoration: none;
  transition: box-shadow 0.16s ease, transform 0.16s ease;
}

.featured-card:hover {
  box-shadow: 12px 12px 0 var(--gold);
  transform: translate(-2px, -2px);
}

.featured-card:active {
  box-shadow: 5px 5px 0 var(--gold);
  transform: translate(2px, 2px);
}

.featured-card__image {
  position: relative;
}

.featured-card__image img {
  width: 100%;
  height: auto;
}

.status-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.featured-card__body {
  padding: 20px 20px 18px;
  border-top: 3px solid var(--navy);
}

.featured-card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.featured-card__meta {
  margin: 10px 0 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 600;
}

.chip-row,
.vibe-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row {
  margin-top: 14px;
}

.chip {
  border: 2px solid var(--navy);
  border-radius: 9999px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  text-transform: uppercase;
}

.featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--cream);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-card__arrow {
  color: var(--gold);
  font-size: 20px;
}

.programme {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.programme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--card-border);
  border-radius: 16px;
  background: white;
}

.programme-row--active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
}

.programme-row__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.programme-row__tag {
  flex: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programme-row--active .programme-row__tag {
  border-radius: 9999px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 12px;
}

.signup {
  background: var(--rose);
}

.signup__inner {
  padding-block: 46px 50px;
}

.signup h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 8.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.signup__copy {
  max-width: 36ch;
  margin: 14px 0 0;
  color: #5a2b25;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.signup__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signup__form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.signup__form input {
  flex: 1 1 200px;
  min-width: 0;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 16px;
}

.signup__form input::placeholder {
  color: #7a8490;
}

.signup__form button {
  flex: none;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  text-transform: uppercase;
  transition: background 0.14s ease, transform 0.14s ease;
}

.signup__form button:hover {
  background: var(--navy-deep);
}

.signup__form button:active {
  transform: scale(0.96);
}

.signup__note {
  min-height: 20px;
  margin: 12px 0 0;
  color: #6b332b;
  font-size: 15px;
  font-weight: 600;
}

.site-footer {
  background: var(--navy);
  color: var(--cream);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-block: 44px 50px;
  text-align: center;
}

.site-footer__mark {
  width: 46px;
  height: 46px;
}

.site-footer__words {
  line-height: 0.78;
  text-transform: uppercase;
}

.site-footer__words span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.site-footer__words span:first-child {
  font-weight: 600;
}

.site-footer__words span:last-child {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer__event-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__location {
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-footer__social {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__link {
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.14s ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current] {
  opacity: 1;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.site-footer__nav-link {
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.14s ease;
}

.site-footer__nav-link:hover {
  opacity: 0.9;
}

@media (max-width: 380px) {
  .site-nav { display: none; }
}

.event-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.event-hero__sun {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.22;
}

.event-hero__inner {
  position: relative;
  padding-block: 38px 10px;
}

.event-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(64px, 19vw, 104px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.8;
  text-transform: uppercase;
}

.text-rose {
  color: var(--rose);
}

.event-hero__intro {
  max-width: 30ch;
  margin: 18px 0 0;
  color: var(--body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.poster-wrap {
  position: relative;
  margin-top: 28px;
}

.framed-poster {
  overflow: hidden;
  border: 3px solid var(--navy);
  border-radius: 20px;
  background: white;
  box-shadow: 8px 8px 0 var(--gold);
  padding: 12px;
}

.framed-poster img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.event-stamp {
  position: absolute;
  right: -6px;
  bottom: -22px;
  width: 104px;
  height: 104px;
  animation: stamp-bob 5s ease-in-out infinite;
}

.event-stamp__ring {
  position: absolute;
  inset: 0;
  animation: spin 18s linear infinite;
}

.event-stamp__disc {
  position: absolute;
  inset: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  line-height: 0.82;
}

.event-stamp__disc strong {
  font-size: 21px;
  font-weight: 900;
}

.event-stamp__disc span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.facts {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
}

.fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 2px;
}

.fact:not(:last-child) {
  border-bottom: 2px solid var(--divider);
}

.fact__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(240 184 64 / 24%);
}

.fact:nth-child(2) .fact__icon {
  background: rgb(232 128 112 / 22%);
}

.fact__icon svg {
  width: 22px;
  height: 22px;
}

.fact__label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact__value {
  margin-top: 3px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.event-wave {
  margin-top: 34px;
}

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

.day-section__inner {
  padding-block: 30px 50px;
}

.day-section .section-title {
  margin-top: 10px;
}

.day-section .eyebrow {
  color: var(--gold);
}

.vibe-pills {
  gap: 10px;
  margin-top: 26px;
}

.vibe-pill {
  border: 1.5px solid rgb(250 240 224 / 20%);
  border-radius: 9999px;
  background: rgb(250 240 224 / 8%);
  color: var(--cream);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}

.vibe-pill--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.vibe-pill--rose {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--navy);
}

.day-section__copy {
  max-width: 42ch;
  margin: 26px 0 0;
  color: #b9c2cf;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.about__inner {
  padding-block: 46px;
}

.brand-lockup--light .brand-lockup__mark {
  width: 40px;
  height: 40px;
}

.brand-lockup--light .brand-lockup__words span {
  color: var(--navy);
  font-size: 20px;
}

.about__copy {
  max-width: 40ch;
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.38;
}

/* Homepage event card section */
#whats-on {
  position: relative;
  overflow: hidden;
}

#whats-on .section__inner {
  position: relative;
}

/* Deco positions scoped to the container (not full viewport) */
#whats-on .deco--star-orange {
  left: auto;
  right: -20px;
  bottom: 130px;
  top: auto;
}

#whats-on .deco--star-blue {
  left: -14px;
  right: auto;
  top: auto;
  bottom: 60px;
}

#whats-on .deco--note-1 {
  left: auto;
  right: 16px;
  top: 30px;
}

#whats-on .deco--note-2 {
  left: 16px;
  right: auto;
  bottom: 210px;
}

/* Floating decorative elements */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.event-hero__inner {
  position: relative;
}

.deco--star-orange {
  width: 58px;
  left: -20px;
  bottom: 160px;
  animation: deco-spin 14s linear infinite;
}

.deco--star-blue {
  width: 46px;
  right: -16px;
  top: 110px;
  animation: deco-spin 20s linear infinite reverse;
}

.deco--note-1 {
  width: 26px;
  right: 56px;
  top: 22px;
  opacity: 0.7;
  animation: mark-bob 6s ease-in-out infinite;
}

.deco--note-2 {
  width: 32px;
  right: 20px;
  bottom: 220px;
  opacity: 0.65;
  animation: mark-bob 8s ease-in-out infinite 1.5s;
}

/* Sponsor strip */
.sponsor-strip {
  background: var(--cream);
  border-top: 2px solid var(--divider);
  padding: 20px 0;
}

.sponsor-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sponsor-strip__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
}

.sponsor-strip__logo {
  height: 30px;
  width: auto;
}

.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.event-link {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--navy);
  border-radius: 9999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.14s ease;
}

.event-link:hover {
  background: rgb(240 184 64 / 30%);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.footer-legal a {
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.14s ease;
}

.footer-legal a:hover {
  opacity: 0.9;
}

@keyframes deco-spin {
  to { transform: rotate(360deg); }
}

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

@keyframes mark-bob {
  50% { transform: translateY(-9px); }
}

@keyframes stamp-bob {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-7px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 420px) {
  .brand-lockup__words span {
    font-size: 14px;
  }

  .fact__value {
    font-size: 19px;
  }

  .programme-row__title {
    font-size: 20px;
  }

  .signup__form button {
    flex: 1 1 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
