:root {
  --announcement-height: 38px;
  --header-height: 78px;
  --navy-950: #261735;
  --navy-900: #124f61;
  --navy-800: #1b6a74;
  --navy-700: #2b8a8b;
  --ocean-600: #159fa3;
  --ocean-500: #22c3bd;
  --ocean-300: #8ee8dc;
  --teal-200: #c4f3e7;
  --orange-600: #df5f25;
  --orange-500: #f47b2a;
  --sun-400: #ffd45c;
  --coral-500: #e85b77;
  --green-500: #66b64c;
  --purple-500: #8a5adf;
  --sand-100: #fff0ca;
  --sand-50: #fff8e8;
  --ink: #173440;
  --muted: #6f6b61;
  --white: #ffffff;
  --logo-cream: #fff3df;
  --logo-warm: #ffe29a;
  --logo-sunset: #ffb74e;
  --line: rgba(125, 83, 47, 0.16);
  --shadow-soft: 0 18px 44px rgba(113, 76, 44, 0.12);
  --shadow-deep: 0 28px 72px rgba(38, 23, 53, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--logo-cream), var(--sand-50) 46%, #fffaf0);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.animated-ocean {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 243, 223, 0.98), rgba(255, 248, 232, 0.98) 42%, rgba(255, 238, 196, 0.82));
}

.animated-ocean::before,
.animated-ocean::after {
  position: absolute;
  inset: auto -12% 3%;
  height: 35vh;
  min-height: 230px;
  opacity: 0.26;
  content: "";
  transform: rotate(-3deg);
}

.animated-ocean::before {
  background:
    repeating-linear-gradient(170deg, transparent 0 32px, rgba(34, 195, 189, 0.22) 33px 35px, transparent 36px 72px),
    linear-gradient(90deg, rgba(34, 195, 189, 0.14), rgba(255, 183, 78, 0.18), rgba(232, 91, 119, 0.08));
  animation: waveDrift 24s linear infinite;
}

.animated-ocean::after {
  bottom: -8%;
  background:
    repeating-linear-gradient(12deg, transparent 0 38px, rgba(223, 95, 37, 0.11) 39px 41px, transparent 42px 90px),
    linear-gradient(90deg, rgba(255, 212, 92, 0.2), rgba(34, 195, 189, 0.1));
  animation: waveDriftReverse 32s linear infinite;
}

.announcement {
  position: sticky;
  top: 0;
  z-index: 60;
  overflow: hidden;
  color: #2b1e27;
  background: linear-gradient(90deg, var(--sun-400), var(--logo-sunset) 42%, var(--coral-500));
  border-bottom: 1px solid rgba(125, 83, 47, 0.18);
  box-shadow: 0 8px 22px rgba(113, 76, 44, 0.1);
}

.announcement-track {
  display: flex;
  width: max-content;
  min-height: var(--announcement-height);
  align-items: center;
  animation: ticker 28s linear infinite;
}

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

.announcement-track span {
  padding-right: 56px;
  color: rgba(43, 30, 39, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 45;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-height);
  padding: 12px clamp(20px, 5vw, 70px);
  color: var(--ink);
  background: rgba(255, 248, 232, 0.94);
  border-bottom: 1px solid rgba(125, 83, 47, 0.14);
  box-shadow: 0 12px 34px rgba(113, 76, 44, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 230px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid rgba(38, 23, 53, 0.18);
  border-radius: 50%;
  background: var(--logo-cream);
  box-shadow: 0 0 0 4px rgba(255, 212, 92, 0.26);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 5px;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-text em {
  margin-top: 5px;
  color: var(--ocean-600);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  color: rgba(23, 52, 64, 0.78);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  gap: 6px;
}

.nav-trigger::after {
  color: currentColor;
  font-size: 0.72rem;
  content: "▾";
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 240px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 248, 232, 0.98);
  border: 1px solid rgba(125, 83, 47, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 42px;
  color: rgba(23, 52, 64, 0.82);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy-950);
  background: rgba(255, 212, 92, 0.28);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 212, 92, 0.22);
  border: 1px solid rgba(125, 83, 47, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.button,
.button-outline,
.button-ghost {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: #07141f;
  background: linear-gradient(135deg, var(--sun-400), var(--orange-500));
  box-shadow: 0 16px 34px rgba(223, 95, 37, 0.24);
}

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

.button:hover {
  box-shadow: 0 20px 42px rgba(223, 95, 37, 0.32);
}

.button-small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.button-ghost {
  color: var(--white);
  background: rgba(21, 159, 163, 0.24);
  border: 1px solid rgba(142, 232, 220, 0.38);
}

.site-header .button-ghost {
  color: var(--ink);
  background: rgba(34, 195, 189, 0.16);
  border-color: rgba(21, 159, 163, 0.22);
}

.button-dark,
.light-surface .button-outline {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  box-shadow: none;
}

.light-surface .button-outline {
  border-color: var(--navy-900);
}

.icon-pill {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: rgba(38, 23, 53, 0.18);
  border-radius: 50%;
  font-size: 0.8rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero {
  min-height: calc(100svh - 116px);
}

.page-hero {
  min-height: 58svh;
}

.hero-bg,
.section-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 23, 53, 0.82), rgba(223, 95, 37, 0.38) 48%, rgba(255, 212, 92, 0.14)),
    linear-gradient(135deg, var(--navy-950), var(--orange-600) 52%, var(--ocean-500));
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-bg::after,
.section-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 23, 53, 0.04), rgba(38, 23, 53, 0.7)),
    repeating-linear-gradient(172deg, transparent 0 44px, rgba(255, 212, 92, 0.16) 45px 47px, transparent 48px 96px);
  content: "";
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.62fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 78px 0 86px;
}

.page-hero-inner {
  min-height: 58svh;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--ocean-300);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5rem);
}

.hero h1 span,
.page-hero h1 span {
  color: var(--orange-500);
}

.hero-lede,
.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
}

.hero-card .media-fill {
  position: absolute;
  inset: 0;
}

.campaign-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  color: var(--white);
}

.campaign-card .media-frame {
  min-height: 360px;
}

.campaign-card strong {
  display: block;
  color: var(--orange-500);
  font-size: 1.25rem;
}

.campaign-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  position: relative;
  padding: 96px clamp(18px, 5vw, 70px);
  scroll-margin-top: calc(var(--announcement-height) + var(--header-height) + 22px);
}

.section-tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.light-surface {
  background: rgba(255, 250, 240, 0.9);
}

.sand-surface {
  background: rgba(255, 240, 202, 0.72);
}

.dark-surface {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(38, 23, 53, 0.98), rgba(18, 79, 97, 0.94)),
    var(--navy-950);
}

.ocean-surface {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 23, 53, 0.95), rgba(223, 95, 37, 0.64), rgba(21, 159, 163, 0.78)),
    var(--navy-900);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.56fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-header.compact {
  grid-template-columns: minmax(0, 780px);
}

.section-kicker {
  color: var(--orange-600);
}

.dark-surface .section-kicker,
.ocean-surface .section-kicker {
  color: var(--sun-400);
}

.section-header h2,
.solo-heading {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.1vw, 3.25rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.section-header p,
.muted {
  color: var(--muted);
}

.dark-surface .section-header p,
.ocean-surface .section-header p,
.dark-surface .muted,
.ocean-surface .muted {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.feature-card,
.experience-card,
.faq-card,
.contact-card,
.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card {
  padding: 28px;
}

.feature-card,
.faq-card,
.contact-card,
.program-card {
  padding: 26px;
}

.dark-surface .card,
.dark-surface .feature-card,
.dark-surface .experience-card,
.dark-surface .faq-card,
.dark-surface .contact-card,
.dark-surface .program-card,
.ocean-surface .card,
.ocean-surface .feature-card,
.ocean-surface .experience-card,
.ocean-surface .faq-card,
.ocean-surface .contact-card,
.ocean-surface .program-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.feature-card:hover,
.experience-card:hover,
.program-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(8, 31, 48, 0.14);
}

.dark-surface .feature-card:hover,
.dark-surface .experience-card:hover,
.ocean-surface .feature-card:hover,
.ocean-surface .experience-card:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--accent, var(--ocean-500));
  border-radius: 8px;
  font-weight: 950;
}

.feature-card h3,
.experience-card h3,
.faq-card h3,
.contact-card h3,
.program-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.13;
}

.feature-card p,
.experience-card p,
.faq-card p,
.contact-card p,
.program-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-surface .feature-card p,
.dark-surface .experience-card p,
.dark-surface .faq-card p,
.dark-surface .contact-card p,
.dark-surface .program-card p,
.ocean-surface .feature-card p,
.ocean-surface .experience-card p,
.ocean-surface .faq-card p,
.ocean-surface .contact-card p,
.ocean-surface .program-card p {
  color: rgba(255, 255, 255, 0.74);
}

.experience-card {
  display: grid;
  min-height: 100%;
}

.experience-card .media-frame {
  height: 260px;
  border-radius: 8px 8px 0 0;
}

.experience-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.experience-card-body .button,
.experience-card-body .button-outline {
  justify-self: start;
  margin-top: 4px;
}

.media-frame,
.media-fill {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(38, 23, 53, 0.86), rgba(244, 123, 42, 0.44), rgba(34, 195, 189, 0.36)),
    var(--navy-900);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.media-fill {
  min-height: 100%;
  border-radius: inherit;
}

.media-frame::after,
.media-fill::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(38, 23, 53, 0.62));
  content: "";
}

.image-zoom {
  transition: transform 360ms ease, filter 360ms ease;
}

.image-zoom:hover {
  transform: scale(1.015);
  filter: saturate(1.05);
}

.caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--white);
}

.caption strong {
  display: block;
  font-size: 1.08rem;
}

.caption span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.placeholder-visual {
  background:
    radial-gradient(circle at 24% 18%, rgba(247, 198, 75, 0.46), transparent 23%),
    repeating-linear-gradient(168deg, transparent 0 28px, rgba(255, 255, 255, 0.13) 29px 31px, transparent 32px 64px),
    linear-gradient(135deg, var(--navy-950), var(--orange-600), var(--ocean-500));
}

.placeholder-visual::before {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 4.5rem;
  font-weight: 950;
  content: attr(data-icon);
}

.fact-strip,
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  background: rgba(223, 95, 37, 0.12);
  box-shadow: var(--shadow-soft);
}

.fact,
.program-fact {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.fact span,
.program-fact span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fact strong,
.program-fact strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.12;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.04em;
  left: 0;
  color: var(--ocean-500);
  font-weight: 950;
  content: "✓";
}

.plain-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  content: "";
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.timeline-step {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--navy-950);
  background: var(--sun-400);
  border-radius: 8px;
  font-weight: 950;
}

.timeline-item h3 {
  margin-bottom: 6px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.house-rules-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.rules-poster {
  position: sticky;
  top: calc(var(--announcement-height) + var(--header-height) + 22px);
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.rules-poster img {
  width: 100%;
  border-radius: 6px;
}

.rules-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(113, 76, 44, 0.08);
}

.rule-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--ocean-600), var(--navy-900));
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.rule-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
  line-height: 1.16;
}

.rule-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-grid .media-frame {
  min-height: 100%;
}

.gallery-grid .large {
  grid-row: span 2;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 23, 53, 0.94), rgba(223, 95, 37, 0.7), rgba(18, 79, 97, 0.78)),
    var(--navy-950);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(172deg, transparent 0 48px, rgba(255, 212, 92, 0.24) 49px 51px, transparent 52px 102px);
  content: "";
  animation: waveDrift 24s linear infinite;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(8, 31, 48, 0.08);
}

.faq-item summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

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

.faq-item summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 50%;
  text-align: center;
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(125, 83, 47, 0.18);
  border-radius: 8px;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 4px rgba(34, 195, 189, 0.16);
}

.note {
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 212, 92, 0.18);
  border: 1px solid rgba(223, 95, 37, 0.16);
  border-radius: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, var(--navy-950), #1f2937);
}

.site-footer::before {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  opacity: 0.22;
  background: repeating-linear-gradient(172deg, transparent 0 42px, rgba(255, 212, 92, 0.25) 43px 45px, transparent 46px 88px);
  content: "";
  animation: waveDriftReverse 30s linear infinite;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(160px, 0.6fr));
  gap: 30px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 58px 0;
}

.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-inner h2,
.footer-inner h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-inner h2 {
  font-size: 1.45rem;
}

.footer-inner ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@keyframes waveDrift {
  from {
    transform: translateX(0) rotate(-3deg);
  }
  to {
    transform: translateX(-120px) rotate(-3deg);
  }
}

@keyframes waveDriftReverse {
  from {
    transform: translateX(-120px) rotate(-3deg);
  }
  to {
    transform: translateX(0) rotate(-3deg);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: calc(var(--announcement-height) + var(--header-height)) 0 auto;
    display: grid;
    gap: 0;
    justify-self: stretch;
    max-height: calc(100svh - var(--announcement-height) - var(--header-height));
    overflow-y: auto;
    padding: 14px 5vw 18px;
    background: rgba(255, 248, 232, 0.98);
    border-bottom: 1px solid rgba(125, 83, 47, 0.14);
    box-shadow: 0 18px 34px rgba(113, 76, 44, 0.12);
  }

  body.nav-open .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(125, 83, 47, 0.1);
  }

  body.nav-open .nav-item {
    display: grid;
  }

  body.nav-open .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 14px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  body.nav-open .dropdown-menu a {
    min-height: 44px;
    font-size: 0.84rem;
  }
}

@media (max-width: 940px) {
  .hero-inner,
  .page-hero-inner,
  .section-header,
  .split,
  .split.reverse,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 360px;
  }

  .fact-strip,
  .program-grid,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .house-rules-layout {
    grid-template-columns: 1fr;
  }

  .rules-poster {
    position: relative;
    top: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --announcement-height: 34px;
    --header-height: 72px;
  }

  .announcement-track {
    min-height: var(--announcement-height);
  }

  .announcement-track span {
    padding-right: 34px;
    font-size: 0.7rem;
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 16px;
  }

  body.nav-open .site-nav {
    inset: calc(var(--announcement-height) + var(--header-height)) 0 auto;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-text small,
  .brand-text em {
    display: none;
  }

  .hero-inner,
  .page-hero-inner {
    width: min(92vw, 100%);
    padding: 58px 0 64px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .button-outline,
  .button-ghost {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .section {
    padding: 62px 4vw;
  }

  .fact-strip,
  .program-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .fact,
  .program-fact {
    min-height: auto;
  }

  .media-frame {
    min-height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid .large {
    grid-row: span 1;
  }

  .rules-list {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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