@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #fdfcff;
  --lavender-50: #f8f6ff;
  --lavender-100: #eee8ff;
  --lavender-200: #ddd3f5;
  --iris: #745ed0;
  --iris-dark: #5243a5;
  --teal: #78bac3;
  --teal-dark: #427983;
  --mint: #e4f3f4;
  --mint-strong: #cae7ea;
  --navy: #17233d;
  --navy-soft: #41506a;
  --sun: #f5bd4c;
  --white: #ffffff;
  --line: rgba(20, 36, 61, 0.14);
  --shadow: 0 28px 80px rgba(38, 30, 91, 0.14);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Onest", Arial, sans-serif;
  --utility: "IBM Plex Mono", Consolas, monospace;
  --page: min(1260px, calc(100% - 48px));
  --header-height: 82px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

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

::selection {
  color: var(--white);
  background: var(--iris);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
}

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

.motion-toggle {
  position: fixed;
  z-index: 95;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 91, 199, 0.18);
  border-radius: 999px;
  color: var(--iris-dark);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 34px rgba(43, 35, 104, 0.14);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.motion-ready .motion-toggle {
  display: inline-flex;
}

.motion-toggle:hover {
  background: rgba(244, 240, 255, 0.96);
}

@media (max-width: 680px) {
  .motion-toggle {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-bottom-color: var(--line);
  background: rgba(252, 251, 255, 0.91);
  box-shadow: 0 12px 38px rgba(20, 36, 61, 0.07);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 184px;
  align-items: center;
  gap: 24px;
}

.park-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.park-logo img {
  width: 136px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 32px);
}

.site-nav a {
  position: relative;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--iris);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  padding: 15px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(82, 67, 165, 0.08),
    0 14px 34px rgba(43, 35, 104, 0.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.26);
  backdrop-filter: blur(22px) saturate(1.26);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease-out, box-shadow 220ms ease-out, border-color 180ms ease-out, background 180ms ease-out, color 180ms ease-out, filter 180ms ease-out;
}

.button::before,
.menu-toggle::before,
.motion-toggle::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 12%, rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.14) 62%, transparent 84%);
  pointer-events: none;
  transform: translateX(-140%);
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.button::after,
.menu-toggle::after,
.motion-toggle::after {
  position: absolute;
  z-index: 0;
  inset: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 44%);
  pointer-events: none;
}

.button > *,
.menu-toggle > *,
.motion-toggle > * {
  position: relative;
  z-index: 2;
}

@media (hover: hover) {
  .button:hover,
  .menu-toggle:hover,
  .motion-toggle:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(82, 67, 165, 0.12),
      0 20px 44px rgba(82, 67, 165, 0.22),
      0 0 0 5px rgba(121, 185, 193, 0.1);
    filter: brightness(1.05) saturate(1.06);
  }

  .button:hover::before,
  .menu-toggle:hover::before,
  .motion-toggle:hover::before {
    transform: translateX(140%);
  }
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 11px;
  font-size: 13px;
}

.button-primary {
  border-color: rgba(109, 91, 199, 0.26);
  color: var(--navy);
  background: linear-gradient(135deg, rgba(178, 159, 234, 0.54), rgba(109, 91, 199, 0.34));
}

.button-primary:hover {
  background: linear-gradient(135deg, rgba(178, 159, 234, 0.68), rgba(109, 91, 199, 0.46));
}

.button-secondary {
  border-color: rgba(121, 185, 193, 0.32);
  color: var(--teal-dark);
  background: rgba(202, 231, 234, 0.42);
}

.button-secondary:hover {
  background: rgba(180, 220, 224, 0.58);
}

.button-light {
  border-color: rgba(109, 91, 199, 0.26);
  color: var(--navy);
  background: linear-gradient(135deg, rgba(178, 159, 234, 0.5), rgba(109, 91, 199, 0.32));
}

.button-dark {
  border-color: rgba(121, 185, 193, 0.54);
  color: var(--navy);
  background: rgba(180, 220, 224, 0.42);
}

.button-glass {
  border-color: rgba(121, 185, 193, 0.34);
  color: var(--teal-dark);
  background: rgba(202, 231, 234, 0.38);
}

.header-cta {
  min-width: 184px;
  padding: 8px 14px;
  flex-direction: column;
  gap: 1px;
  border-color: rgba(109, 91, 199, 0.28);
  color: var(--navy);
  background: linear-gradient(135deg, rgba(178, 159, 234, 0.54), rgba(109, 91, 199, 0.36));
  line-height: 1.08;
}

.header-cta-static {
  pointer-events: none;
  user-select: none;
}

.header-cta-call {
  display: none;
}

.header-phone-label {
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.74;
  text-transform: uppercase;
}

.header-phone-number {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  isolation: isolate;
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 28px rgba(43, 35, 104, 0.12);
  backdrop-filter: blur(16px) saturate(1.16);
  cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 220ms ease-out, border-color 180ms ease-out, filter 180ms ease-out;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  z-index: 2;
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .menu-toggle,
  .motion-toggle,
  .button::before,
  .menu-toggle::before,
  .motion-toggle::before {
    transition: none !important;
  }

  .button:hover,
  .menu-toggle:hover,
  .motion-toggle:hover,
  .button:hover::before,
  .menu-toggle:hover::before,
  .motion-toggle:hover::before {
    transform: none;
  }
}


.menu-toggle span:first-child {
  transform: translateY(-6px);
}

.menu-toggle span:last-child {
  transform: translateY(6px);
}


/* Social responsibility: one editorial block, not a stack of extra sections. */
.social-legacy {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 700px;
  padding: clamp(100px, 10vw, 148px) max(24px, calc((100% - 1260px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
  overflow: hidden;
  background: #dceff0;
}

.social-legacy::after {
  position: absolute;
  z-index: -1;
  right: -9vw;
  bottom: -21vw;
  width: 48vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(116, 94, 208, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.34),
    0 0 100px rgba(116, 94, 208, 0.08);
}

.social-legacy-intro h2 {
  max-width: 670px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.social-legacy-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--navy-soft);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
}

.social-legacy-lead strong {
  margin-top: 16px;
  display: block;
  color: var(--iris-dark);
  font-family: var(--utility);
  font-size: 0.72em;
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.social-legacy-facts {
  padding-left: clamp(34px, 4vw, 64px);
  border-left: 1px solid rgba(65, 80, 106, 0.2);
}

.social-legacy-scale {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(65, 80, 106, 0.2);
}

.social-legacy-scale .impact-value {
  display: block;
  color: var(--iris-dark);
  font-family: var(--display);
  font-size: clamp(64px, 7.2vw, 104px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.95;
  white-space: nowrap;
}

.social-legacy-scale .impact-value-suffix {
  color: var(--teal-dark);
  font-size: 0.46em;
}

.social-legacy-scale p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.social-legacy-copy {
  padding-top: 38px;
}

.social-legacy-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.7;
}

.social-legacy-copy p + p {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(65, 80, 106, 0.16);
}

.join-content .join-thanks {
  max-width: 720px;
  margin: 40px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(82, 67, 165, 0.22);
  color: var(--navy);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .social-legacy {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .social-legacy-facts {
    padding-top: 48px;
    padding-left: 0;
    border-top: 1px solid rgba(65, 80, 106, 0.2);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .social-legacy {
    padding: 88px 16px;
    gap: 52px;
  }

  .social-legacy::after {
    right: -42vw;
    bottom: -24vw;
    width: 110vw;
  }

  .social-legacy-intro h2 {
    font-size: 36px;
  }

  .social-legacy-lead {
    margin-top: 26px;
    font-size: 17px;
  }

  .social-legacy-lead strong {
    font-size: 0.7em;
  }

  .social-legacy-facts {
    padding-top: 38px;
  }

  .social-legacy-scale {
    padding-bottom: 32px;
  }

  .social-legacy-scale .impact-value {
    font-size: 64px;
  }

  .social-legacy-scale p,
  .social-legacy-copy p {
    font-size: 15px;
  }

  .social-legacy-copy {
    padding-top: 30px;
  }

  .join-content .join-thanks {
    margin-top: 32px;
    font-size: 12px;
  }
}


.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(1440px, calc(100% - 32px));
  min-height: 820px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 62px) clamp(24px, 4vw, 70px) 72px;
  display: grid;
  grid-template-columns: minmax(410px, 0.83fr) minmax(530px, 1.17fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  overflow: hidden;
  border: 1px solid rgba(109, 91, 199, 0.08);
  border-top: 0;
  border-radius: 0 0 72px 72px;
  background: linear-gradient(135deg, #fdfcff 0%, #f5f1ff 58%, #edf7f7 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--iris-dark);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.audience-copy h2,
.rules-intro h2,
.join-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(48px, 5.7vw, 88px);
}

.hero h1 em {
  position: relative;
  color: var(--iris);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  left: -0.01em;
  bottom: -0.09em;
  width: calc(100% + 0.02em);
  height: 0.16em;
  content: "";
  border-radius: 100%;
  background: var(--sun);
  transform: rotate(-3deg);
}

.hero-thesis {
  max-width: 550px;
  margin: 32px 0 15px;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: var(--navy-soft);
  font-size: 17px;
}

.hero-story {
  max-width: 560px;
  margin-top: 28px;
  padding: 15px 0 4px;
  border-top: 1px solid var(--line);
}

.story-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.story-heading span {
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-heading strong {
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 600;
}

.story-diagram {
  position: relative;
  margin-top: 13px;
}

.story-line {
  position: absolute;
  z-index: 1;
  top: 23px;
  right: 35px;
  left: 35px;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(121, 185, 193, 0.72) 0 7px, transparent 7px 12px);
}

.story-ticket {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(82, 67, 165, 0.3);
  border-radius: 5px;
  color: var(--iris-dark);
  background:
    radial-gradient(circle at 0 50%, var(--paper) 0 3px, transparent 3.5px),
    radial-gradient(circle at 100% 50%, var(--paper) 0 3px, transparent 3.5px),
    var(--white);
  box-shadow: 0 7px 18px rgba(82, 67, 165, 0.18);
  transform: translate(-50%, -50%) rotate(-2deg);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-stops {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.story-stops li {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.story-figure {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 5px solid var(--paper);
  color: var(--iris-dark);
  background: var(--lavender-100);
  box-shadow: 0 0 0 1px rgba(109, 91, 199, 0.22);
}

.story-figure svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-figure-fund {
  border-radius: 14px 14px 14px 4px;
}

.story-figure-park {
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  box-shadow: 0 0 0 1px rgba(121, 185, 193, 0.32);
}

.story-figure-child {
  border-radius: 50% 50% 8px 50%;
  color: #8c5b00;
  background: #fff1c9;
  box-shadow: 0 0 0 1px rgba(245, 189, 76, 0.42);
}

.story-label {
  display: grid;
  gap: 2px;
}

.story-label small {
  color: var(--navy-soft);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-label strong {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.motion-ready .story-ticket {
  animation: story-ticket-trip 4.4s cubic-bezier(0.48, 0.02, 0.2, 1) 0.35s 1 both;
}

.motion-ready .story-stops li {
  animation: story-stop-arrive 650ms ease-out both;
}

.motion-ready .story-stops li:nth-child(1) {
  animation-delay: 0.15s;
}

.motion-ready .story-stops li:nth-child(2) {
  animation-delay: 1.85s;
}

.motion-ready .story-stops li:nth-child(3) {
  animation-delay: 3.45s;
}

@keyframes story-ticket-trip {
  0% {
    left: 0;
    opacity: 0;
    transform: translate(-8%, -50%) rotate(-2deg);
  }

  10%,
  88% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 1;
    transform: translate(-92%, -50%) rotate(2deg);
  }
}

@keyframes story-stop-arrive {
  from {
    opacity: 0.58;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-contact {
  margin: 19px 0 0;
  color: var(--navy-soft);
  font-size: 13px;
}

.hero-contact a {
  color: var(--navy);
  font-family: var(--utility);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 650px;
  overflow: hidden;
  border-radius: 56px 18px 120px 18px;
  background: var(--lavender-100);
  box-shadow: var(--shadow);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual picture {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  object-fit: cover;
  object-position: 54% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(13, 25, 47, 0.55));
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  left: 30px;
  max-width: 370px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 15px;
  color: var(--white);
  background: rgba(20, 36, 61, 0.28);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  backdrop-filter: blur(16px);
}

.caption-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.hero-route {
  position: absolute;
  z-index: 2;
  right: -40px;
  bottom: 94px;
  width: min(82%, 560px);
  overflow: hidden;
  opacity: 0.92;
}

.hero-route path {
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
}

.hero-route circle {
  fill: var(--sun);
  stroke: var(--white);
  stroke-width: 3;
}

.visit-slot {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  min-height: 164px;
  margin: -18px auto 0;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 96px 1fr 1.45fr 0.65fr;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(102, 87, 197, 0.16);
  border-radius: 24px;
  background: rgba(241, 238, 255, 0.95);
  box-shadow: 0 24px 60px rgba(55, 43, 120, 0.12);
  backdrop-filter: blur(12px);
}

.slot-marker {
  width: 74px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 87, 197, 0.24);
  border-radius: 18px;
  color: var(--white);
  background: var(--iris);
  box-shadow: inset 0 -12px 28px rgba(48, 35, 136, 0.22);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
}

.micro-label,
.panel-label {
  margin: 0 0 8px;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.slot-time h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.slot-time h2 strong {
  display: block;
  color: var(--iris);
  font-family: var(--utility);
  font-size: 0.72em;
  letter-spacing: -0.03em;
}

.slot-copy,
.slot-note {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.55;
}

.slot-note {
  padding-left: 22px;
  border-left: 1px solid rgba(102, 87, 197, 0.24);
  font-size: 12px;
  font-weight: 600;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(100px, 11vw, 154px) 0;
}

.section-heading {
  max-width: 660px;
}

.section-heading-wide {
  max-width: 870px;
}

.section-heading h2,
.experience-copy h2,
.rules-intro h2 {
  font-size: clamp(38px, 4.7vw, 68px);
}

.section-heading > p:last-child,
.rules-intro > p,
.experience-copy .lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--navy-soft);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.intro {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.intro::before,
.experience::before,
.handoff::before {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 50%;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  border-top: 1px solid rgba(109, 91, 199, 0.1);
  border-bottom: 1px solid rgba(20, 36, 61, 0.07);
}

.intro::before {
  background: #eee8ff;
}

.intro > *,
.experience > *,
.handoff > * {
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.impact-number {
  min-height: 235px;
  padding: 36px 24px 32px 0;
  border-bottom: 1px solid var(--line);
}

.impact-number:nth-child(2) {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.impact-number strong {
  display: block;
  color: var(--iris);
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1;
}

.impact-value-digits {
  display: inline-block;
  min-width: 2ch;
  color: inherit;
  font-size: inherit;
  font-variant-numeric: tabular-nums;
}

.impact-value[data-count="35000"] .impact-value-digits {
  min-width: 5.15ch;
}

.impact-number strong .impact-value-suffix {
  color: var(--teal);
  font-size: 0.58em;
}

.impact-number p {
  max-width: 310px;
  margin: 22px 0 0;
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.5;
}

.impact-note {
  grid-column: 1 / -1;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: start;
  gap: 20px;
}

.impact-note span {
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-note p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 13px;
}

.experience {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(58px, 8vw, 120px);
}

.experience::before {
  background: #faf8ff;
}

.experience-gallery {
  position: relative;
  min-height: 720px;
}

.experience-main {
  position: absolute;
  inset: 0 10% 12% 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px 72px 18px 108px;
  box-shadow: var(--shadow);
}

.experience-main picture,
.experience-main img,
.experience-detail picture,
.experience-detail img {
  width: 100%;
  height: 100%;
}

.experience-main img,
.experience-detail img {
  object-fit: cover;
}

.experience-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 42%;
  margin: 0;
  overflow: hidden;
  border: 9px solid var(--paper);
  border-radius: 50% 50% 18px 50%;
  background: var(--lavender-100);
  box-shadow: 0 18px 54px rgba(20, 36, 61, 0.16);
}

.gallery-label {
  position: absolute;
  z-index: 2;
  bottom: 18%;
  left: -30px;
  padding: 13px 18px;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left bottom;
  color: var(--teal-dark);
  background: var(--paper);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-copy {
  max-width: 520px;
}

.route-list {
  position: relative;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 0 16px 57px;
  border-top: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 15px;
  font-weight: 600;
}

.route-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.route-list span {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--iris);
  font-family: var(--utility);
  font-size: 12px;
}

.route-list li::before {
  position: absolute;
  top: 23px;
  left: 34px;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid var(--iris);
  border-radius: 50%;
  background: var(--paper);
}

.route-list li:not(:last-child)::after {
  position: absolute;
  top: 31px;
  bottom: -23px;
  left: 37px;
  width: 2px;
  content: "";
  background: repeating-linear-gradient(to bottom, rgba(102, 87, 197, 0.36) 0 4px, transparent 4px 8px);
}

.route-list::after {
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 31px;
  width: 14px;
  height: 14px;
  content: "";
  border: 4px solid var(--paper);
  border-radius: 50%;
  opacity: 0;
  background: var(--sun);
  box-shadow: 0 0 0 1px rgba(217, 144, 0, 0.7), 0 7px 18px rgba(217, 144, 0, 0.28);
}

.motion-ready .experience-copy .route-list li {
  opacity: 0.34;
  transform: translateX(-8px);
}

.motion-ready .experience-copy.is-visible .route-list li {
  animation: visit-route-stop 700ms ease-out 1 both;
}

.motion-ready .experience-copy.is-visible .route-list li:nth-child(1) {
  animation-delay: 0.45s;
}

.motion-ready .experience-copy.is-visible .route-list li:nth-child(2) {
  animation-delay: 1.15s;
}

.motion-ready .experience-copy.is-visible .route-list li:nth-child(3) {
  animation-delay: 1.85s;
}

.motion-ready .experience-copy.is-visible .route-list li:nth-child(4) {
  animation-delay: 2.55s;
}

.motion-ready .experience-copy.is-visible .route-list::after {
  animation: visit-route-marker 3.25s cubic-bezier(0.3, 0.05, 0.2, 1) 0.35s 1 both;
}

@keyframes visit-route-stop {
  from {
    opacity: 0.34;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes visit-route-marker {
  0% {
    top: 21px;
    opacity: 0;
    transform: scale(0.84);
  }

  8% {
    opacity: 1;
  }

  100% {
    top: calc(100% - 36px);
    opacity: 1;
    transform: scale(1);
  }
}

.park-film {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: clamp(92px, 10vw, 142px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(109, 91, 199, 0.11);
  border-bottom: 1px solid rgba(121, 185, 193, 0.18);
  background: #e8e0f8;
}

.park-film::before {
  position: absolute;
  z-index: 0;
  top: -180px;
  right: 10%;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.62), rgba(224, 216, 245, 0.5) 52%, rgba(109, 91, 199, 0.1));
  box-shadow: 0 40px 100px rgba(82, 67, 165, 0.13);
}

.park-film-shell {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: clamp(58px, 7vw, 108px);
}

.park-film-copy {
  max-width: 500px;
}

.park-film-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.park-film-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--navy-soft);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.park-film-moments {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.park-film-moments li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.park-film-moments li:last-child {
  border-bottom: 1px solid var(--line);
}

.park-film-moments span {
  color: #d99000;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
}

.park-film-media {
  min-width: 0;
  margin: 0;
}

.park-film-frame {
  position: relative;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(109, 91, 199, 0.18);
  border-radius: 26px 26px 88px 26px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 34px 90px rgba(43, 35, 104, 0.2);
  backdrop-filter: blur(12px);
}

.park-film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px 20px 82px 20px;
  background: var(--navy);
  object-fit: cover;
}

.park-film-duration {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(245, 189, 76, 0.94);
  box-shadow: 0 10px 28px rgba(45, 35, 99, 0.18);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.park-film-media figcaption {
  max-width: 680px;
  margin: 18px 12px 0;
  color: var(--navy-soft);
  font-size: 13px;
  line-height: 1.55;
}

.preparation {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding-right: max(24px, calc((100% - 1260px) / 2));
  padding-left: max(24px, calc((100% - 1260px) / 2));
  background: #f6f3ff;
  overflow: hidden;
}

.preparation > .section-heading,
.preparation > .preparation-steps {
  position: relative;
  z-index: 2;
}

.preparation-steps {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.preparation-steps li {
  position: relative;
  padding: 36px 34px 10px 0;
  border-top: 2px solid rgba(102, 87, 197, 0.25);
}

.preparation-steps li:not(:last-child) {
  margin-right: 32px;
}

.preparation-steps li::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border: 3px solid var(--lavender-50);
  border-radius: 50%;
  background: var(--iris);
  box-shadow: 0 0 0 1px var(--iris);
}

.step-number {
  color: var(--iris);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 600;
}

.preparation-steps h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.preparation-steps p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.55;
}

.participation {
  width: 100%;
}

.audience-panel {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-copy {
  padding: clamp(76px, 8vw, 130px) max(24px, calc((100vw - 1260px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.audience-foundations .audience-copy {
  padding-right: clamp(44px, 6vw, 100px);
  padding-left: max(24px, calc((100vw - 1260px) / 2));
  color: var(--navy);
  background: #eee8ff;
}

.audience-companies .audience-copy {
  padding-right: max(24px, calc((100vw - 1260px) / 2));
  padding-left: clamp(44px, 6vw, 100px);
  color: var(--navy);
  background: #e4f3f4;
}

.audience-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.1vw, 60px);
}

.audience-copy > p:not(.panel-label) {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.65;
}

.audience-foundations .audience-copy > p:not(.panel-label) {
  color: var(--navy-soft);
}

.audience-copy .panel-rule {
  padding-top: 20px;
  border-top: 1px solid currentColor;
  opacity: 0.76;
  font-size: 13px !important;
}

.audience-copy .button {
  margin-top: 34px;
}

.panel-label {
  margin-bottom: 25px;
  opacity: 0.74;
}

.audience-photo,
.audience-photo picture,
.audience-photo img {
  width: 100%;
  height: 100%;
}

.audience-photo {
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--lavender-100);
}

.audience-photo img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.audience-panel:hover .audience-photo img {
  transform: scale(1.025);
}

.handoff {
  position: relative;
  isolation: isolate;
  padding-bottom: clamp(120px, 13vw, 180px);
}

.handoff::before {
  background: #ece5f8;
}

.handoff-route {
  position: relative;
  margin: 78px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.handoff-route::before {
  position: absolute;
  top: 23px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(to right, var(--teal) 0 8px, transparent 8px 14px);
}

.handoff-route li {
  position: relative;
  padding: 68px 26px 0;
  border-radius: 24px;
  text-align: center;
  transition: transform 220ms ease-out, background 180ms ease-out, box-shadow 220ms ease-out;
}

.handoff-route li::before {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: calc(50% - 18px);
  width: 36px;
  height: 36px;
  content: "";
  border: 9px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.handoff-route li::after {
  position: absolute;
  z-index: 1;
  top: -2px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  content: "";
  border: 1px solid rgba(121, 185, 193, 0.56);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
}

.handoff-route li:last-child::before {
  background: var(--sun);
  box-shadow: 0 0 0 1px #d99000;
}

.handoff-route span {
  display: block;
  color: var(--iris);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease-out, transform 180ms ease-out;
}

.handoff-route strong {
  max-width: 190px;
  margin: 8px auto 0;
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  transition: color 180ms ease-out, transform 220ms ease-out;
}

@media (hover: hover) {
  .motion-ready .handoff-route li:hover,
  .handoff-route li:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 20px 44px rgba(82, 67, 165, 0.12);
  }
}

.motion-ready .handoff-route li:focus,
.motion-ready .handoff-route li.is-active,
.handoff-route li:focus,
.handoff-route li.is-active {
  outline: 3px solid rgba(109, 91, 199, 0.34);
  outline-offset: 5px;
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 44px rgba(82, 67, 165, 0.12);
}

@media (hover: hover) {
  .handoff-route li:hover::before,
  .handoff-route li:hover strong,
  .handoff-route li:hover span {
    transform: translateY(-2px);
  }

  .handoff-route li:hover::before {
    box-shadow: 0 0 0 7px rgba(121, 185, 193, 0.16), 0 12px 26px rgba(82, 67, 165, 0.14);
  }

  .handoff-route li:hover::after {
    animation: handoff-node-pulse 760ms ease-out 1 both;
  }

  .handoff-route li:hover strong {
    color: var(--iris-dark);
  }

  .handoff-route li:hover span {
    color: var(--teal-dark);
  }
}

.handoff-route li:focus::before,
.handoff-route li.is-active::before {
  transform: translateY(-2px);
  box-shadow: 0 0 0 7px rgba(121, 185, 193, 0.16), 0 12px 26px rgba(82, 67, 165, 0.14);
}

.handoff-route li:focus::after,
.handoff-route li.is-active::after {
  animation: handoff-node-pulse 760ms ease-out 1 both;
}

.handoff-route li:focus strong,
.handoff-route li.is-active strong {
  color: var(--iris-dark);
  transform: translateY(-2px);
}

.handoff-route li:focus span,
.handoff-route li.is-active span {
  color: var(--teal-dark);
  transform: translateY(-2px);
}

@keyframes handoff-node-pulse {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  36% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .handoff-route li,
  .handoff-route li::before,
  .handoff-route li::after,
  .handoff-route span,
  .handoff-route strong {
    transition: none !important;
    animation: none !important;
  }

  .handoff-route li:hover,
  .handoff-route li:focus,
  .handoff-route li.is-active,
  .handoff-route li:hover::before,
  .handoff-route li:focus::before,
  .handoff-route li.is-active::before,
  .handoff-route li:hover span,
  .handoff-route li:focus span,
  .handoff-route li.is-active span,
  .handoff-route li:hover strong,
  .handoff-route li:focus strong,
  .handoff-route li.is-active strong {
    transform: none;
  }
}

.rules {
  width: 100%;
  padding-right: max(24px, calc((100% - 1260px) / 2));
  padding-left: max(24px, calc((100% - 1260px) / 2));
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
  background: #faf8ff;
}

.rules-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  color: var(--navy);
}

.rules-intro .eyebrow {
  color: var(--teal-dark);
}

.rules-intro > p {
  color: var(--navy-soft);
  font-size: 17px;
}

.text-link {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--iris-dark);
  font-weight: 700;
}

.text-link span {
  color: var(--sun);
  font-size: 24px;
}

.rules-intro .legal-note {
  margin-top: 48px;
  padding: 18px 0 0 20px;
  border-top: 1px solid rgba(109, 91, 199, 0.16);
  border-left: 2px solid var(--sun);
  color: var(--navy-soft);
  font-size: 12px;
}

.rules-list {
  border-top: 1px solid var(--line);
}

.rules-list details {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.rules-list summary {
  position: relative;
  padding: 28px 54px 28px 0;
  display: flex;
  align-items: baseline;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.rules-list summary::-webkit-details-marker {
  display: none;
}

.rules-list summary span {
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0;
}

.rules-list summary::before,
.rules-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--sun);
  transition: transform 180ms ease;
}

.rules-list summary::after {
  transform: rotate(90deg);
}

.rules-list details[open] summary::after {
  transform: rotate(0deg);
}

.details-body {
  max-width: 700px;
  padding: 0 54px 30px 44px;
  color: var(--navy-soft);
  font-size: 14px;
}

.details-body p {
  margin: 0 0 14px;
}

.details-body ul,
.details-body ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.details-body li + li {
  margin-top: 8px;
}

.partners {
  position: relative;
  isolation: isolate;
  padding-bottom: clamp(120px, 13vw, 180px);
}

.partners::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  background:
    radial-gradient(ellipse at 12% 16%, rgba(255, 255, 255, 0.48), transparent 38%),
    radial-gradient(ellipse at 88% 74%, rgba(224, 216, 245, 0.7), transparent 42%),
    linear-gradient(124deg, #f2eeff 0%, #e6def6 56%, #f0ebff 100%);
  transform: translateX(-50%);
}

.partners > .section-heading,
.partners > .partner-grid {
  position: relative;
  z-index: 2;
}

.bubble-field {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  perspective: 1000px;
  pointer-events: none;
}

.partner-ambient {
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.partner-ambient::before,
.partner-ambient::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.partner-ambient::before {
  z-index: 0;
  inset: -12%;
  opacity: 0.72;
  background:
    radial-gradient(ellipse at 22% 30%, rgba(255, 255, 255, 0.82) 0 8%, transparent 34%),
    radial-gradient(ellipse at 68% 42%, rgba(199, 184, 255, 0.34) 0 6%, transparent 36%),
    radial-gradient(ellipse at 84% 80%, rgba(213, 236, 236, 0.48) 0 7%, transparent 32%);
  filter: blur(14px);
  transform: translate3d(-1.5%, 1%, 0) scale(1.03);
}

.partner-ambient::after {
  z-index: 0;
  top: 4%;
  bottom: 6%;
  left: 6%;
  width: 48%;
  opacity: 0.32;
  border-radius: 50%;
  background: linear-gradient(112deg, transparent 10%, rgba(255, 255, 255, 0.74) 48%, rgba(221, 211, 255, 0.28) 68%, transparent 88%);
  filter: blur(48px);
  transform: translate3d(12%, 0, 0) rotate(-8deg);
}

.ambient-bubble {
  --bubble-drift-x: 18px;
  --bubble-drift-y: -22px;
  --bubble-duration: 8.8s;
  --bubble-delay: 0s;
  --bubble-opacity: 0.78;
  --bubble-start-opacity: 0.3;
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  opacity: var(--bubble-opacity);
  background:
    radial-gradient(circle at 27% 22%, rgba(255, 255, 255, 0.98) 0 3%, rgba(255, 255, 255, 0.54) 6%, transparent 19%),
    radial-gradient(circle at 72% 76%, rgba(121, 185, 193, 0.22) 0 3%, rgba(121, 185, 193, 0.09) 18%, transparent 47%),
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.46) 0 12%, rgba(226, 218, 255, 0.26) 44%, rgba(115, 90, 201, 0.17) 76%, rgba(255, 255, 255, 0.55) 100%);
  box-shadow:
    inset -28px -34px 58px rgba(82, 67, 165, 0.18),
    inset 18px 20px 42px rgba(255, 255, 255, 0.7),
    inset 4px 3px 0 rgba(255, 255, 255, 0.46),
    0 34px 58px rgba(70, 48, 142, 0.16),
    0 8px 18px rgba(82, 67, 165, 0.09);
  backdrop-filter: blur(2px) saturate(1.12);
  transform-style: preserve-3d;
}

.ambient-bubble::before {
  position: absolute;
  top: 12%;
  left: 16%;
  width: 34%;
  height: 20%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18) 58%, transparent 72%);
  filter: blur(2px);
  transform: rotate(-32deg) translateZ(12px);
}

.ambient-bubble::after {
  position: absolute;
  right: 16%;
  bottom: 11%;
  width: 44%;
  height: 15%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(213, 236, 236, 0.52), rgba(109, 91, 199, 0.12) 52%, transparent 74%);
  filter: blur(4px);
  transform: rotate(-18deg) translateZ(8px);
}

.partner-bubble-one {
  top: 6%;
  left: -3%;
  width: clamp(190px, 24vw, 360px);
  aspect-ratio: 1;
  --bubble-drift-x: 70px;
  --bubble-drift-y: -50px;
  --bubble-duration: 6.6s;
}

.partner-bubble-two {
  top: 16%;
  right: 4%;
  width: clamp(150px, 19vw, 290px);
  aspect-ratio: 1;
  --bubble-drift-x: -56px;
  --bubble-drift-y: -66px;
  --bubble-duration: 7.5s;
  --bubble-delay: -1.8s;
}

.partner-bubble-three {
  bottom: 3%;
  left: 14%;
  width: clamp(120px, 15vw, 220px);
  aspect-ratio: 1;
  --bubble-drift-x: 46px;
  --bubble-drift-y: -58px;
  --bubble-duration: 6.2s;
  --bubble-delay: -3.4s;
}

.partner-bubble-four {
  right: 20%;
  bottom: -7%;
  width: clamp(180px, 22vw, 330px);
  aspect-ratio: 1;
  --bubble-drift-x: -64px;
  --bubble-drift-y: -72px;
  --bubble-duration: 8s;
  --bubble-delay: -4.2s;
}

.preparation-bubbles,
.join-bubbles {
  inset: 0;
}

.hero-bubbles {
  z-index: 3;
  inset: calc(var(--header-height) + 18px) 26px 28px;
  overflow: visible;
}

.hero-bubbles .ambient-bubble {
  border-color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.98) 0 4%, rgba(255, 255, 255, 0.54) 8%, transparent 20%),
    radial-gradient(circle at 74% 72%, rgba(120, 186, 195, 0.34) 0 4%, rgba(120, 186, 195, 0.12) 22%, transparent 50%),
    radial-gradient(circle at 40% 36%, rgba(255, 255, 255, 0.36) 0 12%, rgba(221, 211, 245, 0.38) 46%, rgba(116, 94, 208, 0.22) 78%, rgba(255, 255, 255, 0.58) 100%);
  box-shadow:
    inset -30px -36px 62px rgba(82, 67, 165, 0.2),
    inset 20px 22px 46px rgba(255, 255, 255, 0.76),
    inset 4px 3px 0 rgba(255, 255, 255, 0.58),
    0 30px 62px rgba(70, 48, 142, 0.17),
    0 0 0 1px rgba(120, 186, 195, 0.12);
  -webkit-backdrop-filter: blur(4px) saturate(1.28);
  backdrop-filter: blur(4px) saturate(1.28);
}

.hero-bubble-one {
  top: 3%;
  left: 1%;
  width: clamp(190px, 18vw, 260px);
  aspect-ratio: 1;
  --bubble-opacity: 0.58;
  --bubble-start-opacity: 0.4;
  --bubble-drift-x: 34px;
  --bubble-drift-y: 24px;
  --bubble-duration: 7.5s;
  --bubble-delay: -1.5s;
}

.hero-bubble-two {
  top: 12%;
  right: 2%;
  bottom: auto;
  left: auto;
  width: clamp(120px, 11vw, 165px);
  aspect-ratio: 1;
  --bubble-opacity: 0.62;
  --bubble-start-opacity: 0.42;
  --bubble-drift-x: -28px;
  --bubble-drift-y: 32px;
  --bubble-duration: 6.6s;
  --bubble-delay: -2.9s;
}

.hero-bubble-three {
  bottom: 3%;
  left: 43%;
  width: clamp(96px, 8.5vw, 128px);
  aspect-ratio: 1;
  --bubble-opacity: 0.54;
  --bubble-start-opacity: 0.36;
  --bubble-drift-x: 24px;
  --bubble-drift-y: -28px;
  --bubble-duration: 6.2s;
  --bubble-delay: -3.8s;
}

.preparation-bubble-one {
  top: 8%;
  right: -2%;
  width: clamp(120px, 13vw, 190px);
  aspect-ratio: 1;
  --bubble-opacity: 0.38;
  --bubble-start-opacity: 0.24;
  --bubble-drift-x: -46px;
  --bubble-drift-y: -48px;
  --bubble-duration: 6.6s;
  --bubble-delay: -2.2s;
}

.preparation-bubble-two {
  bottom: -11%;
  left: 3%;
  width: clamp(100px, 9vw, 145px);
  aspect-ratio: 1;
  --bubble-opacity: 0.3;
  --bubble-start-opacity: 0.18;
  --bubble-drift-x: 36px;
  --bubble-drift-y: -44px;
  --bubble-duration: 5.8s;
  --bubble-delay: -3.7s;
}

.join-bubbles {
  z-index: 2;
}

.join-bubble-one {
  top: 12%;
  right: 7%;
  width: clamp(230px, 30vw, 430px);
  aspect-ratio: 1;
  --bubble-opacity: 0.58;
  --bubble-start-opacity: 0.34;
  --bubble-drift-x: -72px;
  --bubble-drift-y: -58px;
  --bubble-duration: 8s;
  --bubble-delay: -4.6s;
}

.motion-ready .bubble-field.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 1s ease-out;
}

.motion-ready .bubble-field.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .partner-ambient.reveal {
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 1s ease-out;
}

.motion-ready .partner-ambient.reveal.is-visible {
  opacity: 1;
  transform: translateX(-50%);
}

.motion-ready .partner-ambient.is-visible::before {
  animation: partner-lavender-flow 18s cubic-bezier(0.2, 0.65, 0.25, 1) 0.2s 1 both;
}

.motion-ready .partner-ambient.is-visible::after {
  animation: partner-lavender-sheen 16s ease-out 0.6s 1 both;
}

.motion-ready .bubble-field.is-visible .ambient-bubble {
  animation: ambient-bubble-drift var(--bubble-duration) cubic-bezier(0.45, 0, 0.55, 1) var(--bubble-delay) infinite alternate both;
}

.ambient-motion-paused .partner-ambient::before,
.ambient-motion-paused .partner-ambient::after,
.ambient-motion-paused .ambient-bubble {
  animation-play-state: paused !important;
}

@keyframes partner-lavender-flow {
  from {
    opacity: 0.42;
    transform: translate3d(-2.5%, 1.5%, 0) scale(1.01);
  }

  to {
    opacity: 0.76;
    transform: translate3d(1.5%, -1%, 0) scale(1.05);
  }
}

@keyframes partner-lavender-sheen {
  from {
    opacity: 0.12;
    transform: translate3d(-4%, 1%, 0) rotate(-8deg);
  }

  to {
    opacity: 0.34;
    transform: translate3d(62%, -2%, 0) rotate(-5deg);
  }
}

@keyframes ambient-bubble-drift {
  0% {
    opacity: var(--bubble-opacity);
    transform: translate3d(0, 0, 0) rotateX(0.5deg) rotateY(-1deg) scale(0.99);
  }

  100% {
    opacity: var(--bubble-opacity);
    transform: translate3d(var(--bubble-drift-x), var(--bubble-drift-y), 14px) rotateX(-0.8deg) rotateY(1.2deg) scale(1.015);
  }
}

.partner-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(82, 67, 165, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 90px rgba(82, 67, 165, 0.12);
  backdrop-filter: blur(16px);
}

.partner-card {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(82, 67, 165, 0.13);
  border-bottom: 1px solid rgba(82, 67, 165, 0.13);
  color: var(--navy-soft);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.partner-card-logo:hover {
  color: var(--iris-dark);
  background: var(--lavender-50);
  box-shadow: inset 0 0 0 1px rgba(102, 87, 197, 0.18);
}

.partner-card-logo:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--teal);
  outline-offset: -4px;
}

.partner-card-logo img {
  width: auto;
  max-width: min(210px, 92%);
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.partner-card-logo img.partner-logo-square {
  max-width: 78px;
  max-height: 78px;
}

.partner-card-logo img.partner-logo-portrait {
  width: 132px;
  height: 112px;
  max-width: 132px;
  max-height: none;
  object-fit: cover;
  object-position: 50% 52%;
  mix-blend-mode: multiply;
}

.partner-card-logo img.partner-logo-ediny {
  width: 122px;
  height: 112px;
  max-width: 122px;
  max-height: none;
  object-fit: contain;
}

.partner-card-logo img.partner-logo-shag {
  width: 132px;
  height: 112px;
  max-width: 132px;
  max-height: none;
  object-fit: contain;
}

.partner-card-logo img.partner-logo-vo-blago {
  width: 108px;
  height: 116px;
  max-width: 108px;
  max-height: none;
  object-fit: contain;
}

.partner-card-logo img.partner-logo-angel {
  width: 132px;
  height: 112px;
  max-width: 132px;
  max-height: none;
  object-fit: contain;
}

.partner-card-label {
  font-family: var(--display);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
  line-height: 1.35;
}

.partner-card-meta {
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-card-pending {
  background: rgba(235, 230, 255, 0.68);
}

.partner-card-pending .partner-card-meta {
  color: var(--navy-soft);
}

.join {
  position: relative;
  min-height: 720px;
  padding: clamp(80px, 10vw, 150px) max(24px, calc((100% - 1260px) / 2));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--navy);
  background: var(--lavender-100);
}

.join-background,
.join-background img,
.join-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.join-background img {
  object-fit: cover;
  object-position: 55% center;
}

.join-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(237, 231, 255, 0.97) 0%, rgba(237, 231, 255, 0.9) 48%, rgba(237, 231, 255, 0.28) 100%),
    linear-gradient(180deg, transparent 62%, rgba(224, 216, 245, 0.32));
}

.join-content {
  position: relative;
  z-index: 3;
  max-width: 790px;
}

.eyebrow-light {
  color: var(--teal-dark);
}

.join-content h2 {
  font-size: clamp(42px, 6.3vw, 88px);
}

.join-accent {
  color: var(--iris);
}

.join-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--navy-soft);
  font-size: clamp(18px, 1.8vw, 23px);
}

.join-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.join-phone {
  margin-top: 28px;
  display: inline-block;
  color: var(--navy);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  width: var(--page);
  min-height: 250px;
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 50px;
}

.footer-brand img {
  width: 138px;
}

.footer-brand p,
.footer-meta p {
  margin: 16px 0 0;
  color: var(--navy-soft);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a,
.footer-meta a {
  color: var(--navy-soft);
  font-size: 13px;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0 0 10px;
}

.footer-meta .footer-development {
  margin: 0 0 10px;
}

.footer-development a {
  color: var(--iris-dark);
  font-weight: 750;
}

.footer-development a:hover {
  color: var(--teal-dark);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(65, 80, 106, 0.14);
  color: var(--navy-soft);
  font-family: var(--utility);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.015em;
}

.footer-legal span + span::before {
  margin: 0 8px;
  content: "·";
}

body.lead-dialog-open {
  overflow: hidden;
}

.lead-dialog {
  width: min(700px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(102, 87, 197, 0.2);
  border-radius: 30px;
  color: var(--navy);
  background: rgba(248, 246, 255, 0.96);
  box-shadow: 0 34px 100px rgba(20, 36, 61, 0.3);
  backdrop-filter: blur(24px) saturate(1.08);
}

.lead-dialog::backdrop {
  background: rgba(20, 36, 61, 0.48);
  backdrop-filter: blur(9px);
}

.lead-dialog-shell {
  position: relative;
  padding: 40px;
}

.lead-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 87, 197, 0.18);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lead-dialog-close:hover {
  color: var(--iris-dark);
  background: rgba(226, 219, 255, 0.82);
}

.lead-dialog-eyebrow {
  margin: 0 58px 10px 0;
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-dialog h2 {
  max-width: 570px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.08;
}

.lead-dialog-description {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.55;
}

.lead-form {
  position: relative;
  margin-top: 28px;
}

.lead-trap {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

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

.lead-field {
  display: grid;
  gap: 7px;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.lead-field-wide {
  grid-column: 1 / -1;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(82, 67, 165, 0.18);
  border-radius: 14px;
  outline: none;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: rgba(102, 87, 197, 0.7);
  box-shadow: 0 0 0 4px rgba(102, 87, 197, 0.12);
}

.lead-consent {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-soft);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.lead-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--iris);
}

.lead-consent a {
  color: var(--iris-dark);
  font-weight: 700;
  text-decoration-color: rgba(82, 67, 165, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.lead-consent a:hover,
.lead-consent a:focus-visible {
  color: var(--teal-dark);
  text-decoration-color: currentColor;
}

.lead-form-submit {
  margin-top: 22px;
}

.lead-form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.lead-form-status {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--navy-soft);
  background: rgba(226, 219, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.lead-form-status[data-state="success"] {
  color: #235c51;
  border: 1px solid rgba(35, 92, 81, 0.18);
  background: rgba(214, 244, 237, 0.78);
}

.lead-form-status[data-state="error"] {
  color: #7b3140;
  border: 1px solid rgba(123, 49, 64, 0.18);
  background: rgba(255, 227, 232, 0.78);
}

@media (max-width: 680px) {
  .lead-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 23px;
  }

  .lead-dialog-shell {
    padding: 30px 20px 24px;
  }

  .lead-dialog-close {
    top: 12px;
    right: 12px;
  }

  .lead-dialog h2 {
    padding-right: 26px;
    font-size: clamp(27px, 8vw, 34px);
  }

  .lead-dialog-description {
    font-size: 14px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .lead-field-wide {
    grid-column: auto;
  }

  .lead-form-submit {
    width: 100%;
  }
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.motion-ready .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.motion-ready .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

.motion-ready .reveal[data-delay="3"] {
  transition-delay: 270ms;
}

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

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 40px, 1040px);
  }

  .header-shell {
    grid-template-columns: 150px 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    padding: 30px var(--page) 40px;
    display: grid;
    justify-items: start;
    gap: 0;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(252, 251, 255, 0.98);
    box-shadow: 0 28px 54px rgba(20, 36, 61, 0.11);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 18px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 760px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
    gap: 44px;
  }

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

  .visit-slot {
    grid-template-columns: 80px 0.9fr 1.4fr;
  }

  .slot-note {
    grid-column: 2 / -1;
    padding: 0;
    border: 0;
  }

  .experience-gallery {
    min-height: 620px;
  }

  .preparation-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .rules {
    grid-template-columns: minmax(280px, 0.7fr) minmax(450px, 1.3fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .hero {
    width: 100%;
    padding-top: calc(var(--header-height) + 60px);
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

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

  .hero-visual {
    min-height: min(72vw, 650px);
    border-radius: 42px 14px 90px 14px;
  }

  .visit-slot {
    margin-top: 24px;
    grid-template-columns: 80px 1fr;
  }

  .slot-copy,
  .slot-note {
    grid-column: 2;
  }

  .intro,
  .experience,
  .rules {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 58px;
  }

  .experience {
    gap: 72px;
  }

  .experience-gallery {
    min-height: min(90vw, 680px);
  }

  .experience-copy {
    max-width: 720px;
  }

  .park-film-shell {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .park-film-copy {
    max-width: 720px;
  }

  .audience-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .audience-photo {
    min-height: 62vw;
  }

  .audience-foundations .audience-copy,
  .audience-companies .audience-copy {
    padding: 84px max(24px, calc((100vw - 760px) / 2));
  }

  .audience-foundations .audience-photo {
    order: -1;
  }

  .rules {
    gap: 64px;
  }

  .rules-intro {
    position: static;
    max-width: 720px;
  }

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

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

  .footer-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 16px;
  }

  .header-shell {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .park-logo img {
    width: 116px;
  }

  .header-cta {
    min-width: 0;
    min-height: 38px;
    padding: 7px 10px;
    display: inline-flex;
    border-radius: 10px;
  }

  .header-phone-label {
    display: none;
  }

  .header-phone-number {
    font-size: 10.5px;
  }

  .site-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding: calc(var(--header-height) + 38px) 16px 28px;
    gap: 42px;
    border-radius: 0 0 38px 38px;
  }

  .hero-bubbles {
    inset: calc(var(--header-height) + 12px) 12px 18px;
  }

  .hero-bubble-one {
    top: 1%;
    right: 2%;
    left: auto;
    width: 126px;
    --bubble-opacity: 0.56;
    --bubble-start-opacity: 0.4;
    --bubble-drift-x: -14px;
    --bubble-drift-y: 18px;
  }

  .hero-bubble-two {
    top: 52%;
    right: auto;
    bottom: auto;
    left: 2%;
    width: 96px;
    --bubble-opacity: 0.5;
    --bubble-start-opacity: 0.34;
    --bubble-drift-x: 18px;
    --bubble-drift-y: -20px;
  }

  .hero-bubble-three {
    top: 70%;
    right: 4%;
    bottom: auto;
    left: auto;
    width: 76px;
    --bubble-opacity: 0.56;
    --bubble-start-opacity: 0.38;
    --bubble-drift-x: -14px;
    --bubble-drift-y: -16px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
    letter-spacing: -0.065em;
  }

  .hero-thesis {
    margin-top: 26px;
    font-size: 20px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-story {
    margin-top: 24px;
    padding-top: 13px;
  }

  .story-heading {
    align-items: flex-start;
  }

  .story-heading strong {
    max-width: 132px;
    font-size: 10px;
    text-align: right;
  }

  .story-line {
    top: 21px;
    right: 28px;
    left: 28px;
  }

  .story-figure {
    width: 44px;
    height: 44px;
    border-width: 4px;
  }

  .story-figure svg {
    width: 31px;
    height: 31px;
  }

  .story-stops li {
    gap: 7px;
  }

  .story-label small {
    font-size: 7px;
  }

  .story-label strong {
    max-width: 104px;
    font-size: 10px;
  }

  .hero-actions,
  .join-actions {
    display: grid;
  }

  .hero-actions .button,
  .join-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
    border-radius: 32px 12px 64px 12px;
  }

  .hero-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px 15px;
    font-size: 12px;
  }

  .hero-route {
    right: -16px;
    bottom: 70px;
    width: 106%;
  }

  .visit-slot {
    width: calc(100% - 32px);
    margin-top: 20px;
    padding: 24px 20px;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    border-radius: 19px;
  }

  .slot-marker {
    width: 60px;
    height: 66px;
    border-radius: 14px;
    font-size: 17px;
  }

  .slot-time h2 {
    font-size: 23px;
  }

  .slot-copy,
  .slot-note {
    grid-column: 1 / -1;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .experience-copy h2,
  .rules-intro h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .section-heading > p:last-child,
  .rules-intro > p,
  .experience-copy .lead {
    margin-top: 20px;
    font-size: 17px;
  }

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

  .impact-number {
    min-height: 190px;
    padding: 30px 0;
  }

  .impact-number:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  .impact-number strong {
    font-size: 58px;
  }

  .impact-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .experience-gallery {
    min-height: 510px;
  }

  .park-film {
    padding: 84px 0;
  }

  .park-film-shell {
    gap: 42px;
  }

  .park-film-copy h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .park-film-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .park-film-moments {
    margin-top: 28px;
  }

  .park-film-frame {
    padding: 4px;
    border-radius: 18px 18px 48px 18px;
  }

  .park-film-frame video {
    border-radius: 14px 14px 44px 14px;
  }

  .park-film-duration {
    top: 14px;
    left: 14px;
    padding: 7px 9px;
    font-size: 8px;
  }

  .park-film-media figcaption {
    margin-right: 4px;
    margin-left: 4px;
    font-size: 12px;
  }

  .experience-main {
    inset: 0 7% 14% 0;
    border-radius: 14px 44px 14px 62px;
  }

  .experience-detail {
    width: 46%;
    height: 40%;
    border-width: 6px;
  }

  .gallery-label {
    display: none;
  }

  .preparation {
    padding-right: 16px;
    padding-left: 16px;
  }

  .preparation-bubble-one {
    top: 25%;
    right: -24%;
    width: 148px;
    --bubble-opacity: 0.34;
  }

  .preparation-bubble-two {
    bottom: 10%;
    left: -22%;
    width: 118px;
    --bubble-opacity: 0.26;
  }

  .preparation-steps {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .preparation-steps li:not(:last-child) {
    margin-right: 0;
  }

  .preparation-steps li {
    padding-top: 28px;
  }

  .audience-photo {
    min-height: 78vw;
  }

  .audience-foundations .audience-copy,
  .audience-companies .audience-copy {
    padding: 70px 16px;
  }

  .audience-copy h2 {
    font-size: 34px;
  }

  .audience-copy > p:not(.panel-label) {
    font-size: 15px;
  }

  .handoff-route {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .handoff-route::before {
    top: 21px;
    bottom: 21px;
    left: 18px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--teal) 0 8px, transparent 8px 14px);
  }

  .handoff-route li {
    min-height: 102px;
    padding: 4px 0 30px 64px;
    text-align: left;
  }

  .handoff-route li::before {
    top: 4px;
    left: 0;
  }

  .handoff-route strong {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .rules {
    padding-right: 16px;
    padding-left: 16px;
  }

  .rules-intro .legal-note {
    margin-top: 34px;
  }

  .rules-list summary {
    padding: 23px 42px 23px 0;
    gap: 13px;
    font-size: 15px;
  }

  .details-body {
    padding: 0 0 26px 0;
    font-size: 13px;
  }

  .partner-grid {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    min-height: 156px;
    padding: 18px 12px;
    gap: 9px;
  }

  .partner-card-logo img {
    max-width: min(138px, 94%);
    max-height: 54px;
  }

  .partner-card-logo img.partner-logo-square {
    max-width: 66px;
    max-height: 66px;
  }

  .partner-card-logo img.partner-logo-portrait {
    width: 112px;
    height: 96px;
    max-width: 112px;
    max-height: none;
  }

  .partner-card-label {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 750;
  }

  .partner-card-meta {
    font-size: 8.5px;
    letter-spacing: 0.05em;
  }

  .join {
    min-height: 690px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .join-bubble-one {
    top: 9%;
    right: -46%;
    width: 310px;
    --bubble-opacity: 0.48;
  }

  .join-overlay {
    background: linear-gradient(90deg, rgba(245, 242, 255, 0.97), rgba(245, 242, 255, 0.82));
  }

  .join-content h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .join-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .site-footer {
    padding: 46px 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .footer-meta {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .park-logo img {
    width: 102px;
  }

  .header-phone-number {
    font-size: 9.5px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .experience-gallery {
    min-height: 440px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .motion-toggle {
    display: none !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-ready .story-ticket,
  .motion-ready .story-stops li {
    animation: none !important;
  }

  .motion-ready .experience-copy .route-list li,
  .motion-ready .experience-copy.is-visible .route-list li {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .motion-ready .experience-copy.is-visible .route-list::after {
    display: none;
    animation: none !important;
  }

  .motion-ready .bubble-field.reveal,
  .motion-ready .bubble-field.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .partner-ambient.reveal,
  .motion-ready .partner-ambient.reveal.is-visible {
    opacity: 1;
    transform: translateX(-50%);
    transition: none;
  }

  .motion-ready .partner-ambient::before,
  .motion-ready .partner-ambient::after,
  .motion-ready .bubble-field .ambient-bubble {
    animation: none !important;
  }
}

/* Content-focused revision: adaptive header, paired program overview, concise rules. */
.site-header {
  --header-surface: rgba(244, 240, 255, 0.74);
  border-bottom-color: rgba(82, 67, 165, 0.1);
  background: var(--header-surface);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  backdrop-filter: blur(20px) saturate(1.18);
}

.site-header[data-surface="hero"] {
  --header-surface: rgba(242, 237, 255, 0.7);
}

.site-header[data-surface="lavender"] {
  --header-surface: rgba(226, 217, 249, 0.76);
}

.site-header[data-surface="aqua"] {
  --header-surface: rgba(213, 237, 239, 0.78);
}

.site-header[data-surface="white"] {
  --header-surface: rgba(253, 252, 255, 0.78);
}

.site-header[data-surface="photo"] {
  --header-surface: rgba(225, 216, 248, 0.74);
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-bottom-color: rgba(82, 67, 165, 0.14);
  background: var(--header-surface);
  box-shadow: 0 12px 38px rgba(20, 36, 61, 0.08);
}

.site-header .header-cta {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.32);
}

.site-nav {
  gap: clamp(12px, 1.45vw, 24px);
}

.hero {
  min-height: 760px;
  grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
}

.hero-text {
  margin-top: 30px;
}

.hero-text p {
  margin: 0;
}

.hero-text p + p {
  margin-top: 12px;
}

.program-summary {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(92px, 9vw, 132px) max(24px, calc((100% - 1260px) / 2));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
  background: #eee8ff;
}

.summary-card {
  min-height: 650px;
  padding: clamp(42px, 4.6vw, 68px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(82, 67, 165, 0.12);
  border-radius: 36px;
  box-shadow: 0 26px 70px rgba(58, 44, 125, 0.11);
}

.summary-day {
  background: rgba(255, 255, 255, 0.52);
}

.summary-impact {
  background: #ded4f6;
}

.summary-card h2,
.rules-download-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.summary-time {
  margin: 38px 0 0;
  color: var(--iris-dark);
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.25;
}

.summary-time strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--utility);
  font-size: 0.76em;
  letter-spacing: -0.035em;
}

.summary-copy {
  margin-top: auto;
  padding-top: 42px;
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.6;
}

.summary-copy p {
  margin: 0;
}

.summary-copy p + p {
  margin-top: 13px;
}

.summary-subtitle {
  margin: 20px 0 0;
  color: var(--navy-soft);
  font-size: 18px;
}

.summary-numbers {
  margin-top: auto;
  padding-top: 42px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  border-top: 1px solid rgba(82, 67, 165, 0.16);
}

.summary-numbers .impact-value {
  display: block;
  white-space: nowrap;
  color: var(--iris-dark);
  font-family: var(--display);
  font-size: clamp(48px, 4.7vw, 72px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1;
}

.summary-numbers .impact-value-suffix {
  color: var(--teal-dark);
  font-size: 0.58em;
}

.summary-numbers p {
  max-width: 240px;
  margin: 17px 0 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.45;
}

.experience {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 7vw, 100px);
}

.experience::before {
  background: #fdfcff;
}

.experience-copy {
  max-width: 560px;
}

.experience-caption {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(82, 67, 165, 0.16);
  color: var(--iris-dark);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.experience .park-film-frame {
  border-radius: 34px 34px 96px 34px;
}

.experience .park-film-frame video {
  aspect-ratio: 4 / 3;
  border-radius: 28px 28px 90px 28px;
}

@media (min-width: 901px) {
  .experience {
    width: min(1480px, calc(100% - 48px));
    grid-template-columns: minmax(310px, 0.58fr) minmax(760px, 1.42fr);
    gap: clamp(44px, 4.5vw, 76px);
  }

  .experience-copy {
    max-width: 430px;
  }

  .experience .park-film-frame video {
    aspect-ratio: 16 / 10;
  }
}

.audience-foundations,
.audience-foundations .audience-photo {
  min-height: 820px;
}

.audience-foundations {
  grid-template-columns: 1.12fr 0.88fr;
}

.audience-companies,
.audience-companies .audience-photo {
  min-height: 640px;
}

.audience-companies {
  grid-template-columns: 0.96fr 1.04fr;
}

.audience-foundations .audience-copy {
  background: #e9e1fb;
}

.audience-companies .audience-copy {
  background: #d9edef;
}

.handoff::before {
  background: #eee8ff;
}

.rules-download {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 390px;
  padding: clamp(90px, 9vw, 130px) max(24px, calc((100% - 1260px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  background: #dceff0;
}

.rules-download-copy {
  max-width: 760px;
}

.rules-download-button {
  min-width: 280px;
}

.partners::before {
  background: #f7f4ff;
}

.join-subtitle {
  color: var(--navy) !important;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 40px) !important;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .program-summary {
    padding-right: 20px;
    padding-left: 20px;
  }

  .summary-card {
    min-height: 620px;
    padding: 42px;
  }

  .summary-numbers {
    grid-template-columns: 1fr;
  }

  .summary-numbers > div + div {
    padding-top: 22px;
    border-top: 1px solid rgba(82, 67, 165, 0.14);
  }
}

@media (max-width: 900px) {
  .program-summary,
  .experience,
  .rules-download {
    grid-template-columns: 1fr;
  }

  .summary-card {
    min-height: 0;
  }

  .summary-copy,
  .summary-numbers {
    margin-top: 46px;
    padding-top: 30px;
  }

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

  .summary-numbers > div + div {
    padding-top: 0;
    padding-left: 22px;
    border-top: 0;
    border-left: 1px solid rgba(82, 67, 165, 0.14);
  }

  .experience {
    gap: 56px;
  }

  .experience-copy {
    max-width: 720px;
  }

  .audience-foundations,
  .audience-companies {
    grid-template-columns: 1fr;
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    min-height: 62vw;
  }

  .rules-download {
    min-height: 0;
  }

  .rules-download-button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .site-header {
    --header-surface: rgba(239, 233, 252, 0.84);
  }

  .site-nav {
    background: var(--header-surface);
    -webkit-backdrop-filter: blur(20px) saturate(1.18);
    backdrop-filter: blur(20px) saturate(1.18);
  }

  .hero {
    min-height: 0;
  }

  .hero-text {
    margin-top: 24px;
  }

  .program-summary {
    padding: 72px 16px;
    gap: 16px;
  }

  .summary-card {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .summary-card h2,
  .rules-download-copy h2 {
    font-size: 34px;
  }

  .summary-time {
    margin-top: 28px;
  }

  .summary-copy {
    margin-top: 34px;
  }

  .summary-numbers {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .summary-numbers > div + div {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(82, 67, 165, 0.14);
    border-left: 0;
  }

  .summary-numbers .impact-value {
    font-size: 56px;
  }

  .experience .park-film-frame {
    border-radius: 20px 20px 56px 20px;
  }

  .experience .park-film-frame video {
    aspect-ratio: 4 / 3;
    border-radius: 15px 15px 50px 15px;
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    min-height: 78vw;
  }

  .audience-foundations .audience-copy {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .rules-download {
    padding: 78px 16px;
    gap: 34px;
  }

  .rules-download-button {
    width: 100%;
    min-width: 0;
  }

  .join-subtitle {
    font-size: 26px !important;
  }
}



@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 35px;
  }

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

/* Keep the social-responsibility story full-bleed after legacy section rules. */
.social-legacy {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(100px, 10vw, 148px) max(24px, calc((100% - 1260px) / 2));
}

.social-legacy-intro,
.social-legacy-facts {
  min-width: 0;
}

.social-legacy-intro h2 {
  hyphens: manual;
}

@media (max-width: 900px) {
  .social-legacy {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .social-legacy {
    width: 100%;
    margin: 0;
    padding: 88px 16px;
    grid-template-columns: minmax(0, 1fr);
  }

  .social-legacy-intro,
  .social-legacy-facts {
    width: 100%;
    min-width: 0;
  }

  .social-legacy-intro h2 {
    font-size: 30px;
  }

  .social-legacy-scale .impact-value {
    font-size: 54px;
    white-space: nowrap;
  }

  .join-content {
    width: 100%;
    min-width: 0;
  }

  .join-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .join-actions .button,
  .join-content .join-thanks {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* Hero emphasis requested for the program label and new human-centered image. */
.hero-copy > .eyebrow {
  margin-bottom: 26px;
  gap: 14px;
  font-size: clamp(15px, 1.15vw, 17px);
  letter-spacing: 0.045em;
  line-height: 1.4;
}

.hero-copy > .eyebrow span {
  width: 38px;
  height: 3px;
}

.hero-visual img {
  object-position: 51% center;
}

@media (max-width: 680px) {
  .hero-copy > .eyebrow {
    margin-bottom: 22px;
    gap: 10px;
    font-size: 14px;
  }

  .hero-copy > .eyebrow span {
    width: 30px;
  }

  .hero-visual img {
    object-position: 50% center;
  }
}

/* Final invitation: family photo and brand body type for the thank-you note. */
.join-background img {
  inset: 0 auto 0 0;
  width: 114%;
  object-position: center;
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 7%, rgba(0, 0, 0, 0.48) 22%, #000 44%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 7%, rgba(0, 0, 0, 0.48) 22%, #000 44%);
}

.join-content > .join-thanks {
  max-width: 650px;
  color: var(--navy);
  font-family: var(--body);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

@media (max-width: 680px) {
  .join-background img {
    inset: 0;
    width: 100%;
    object-position: 36% center;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .join-content h2 {
    font-size: clamp(26px, 8.2vw, 36px);
  }

  .join-content > .join-thanks {
    font-size: 16px;
  }
}

/* Section labels form one clearly readable navigation layer. */
.eyebrow,
.panel-label {
  font-size: 16px;
  letter-spacing: 0.055em;
  line-height: 1.45;
}

.panel-label {
  opacity: 0.9;
}

@media (max-width: 680px) {
  .eyebrow,
  .panel-label {
    font-size: 14px;
  }
}

/* Compact editorial structure: fewer full-height sections, all approved content retained. */
.program-summary {
  padding-top: clamp(80px, 8vw, 112px);
  padding-bottom: clamp(80px, 8vw, 112px);
}

.summary-card {
  min-height: 560px;
}

.summary-social-note {
  grid-column: 1 / -1;
  min-width: 0;
  padding: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(330px, 1.05fr) minmax(300px, 0.85fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(76, 138, 146, 0.18);
  border-radius: 34px;
  background: #dceff0;
  box-shadow: 0 24px 64px rgba(49, 98, 105, 0.1);
}

.summary-social-intro,
.summary-social-scale,
.summary-social-copy {
  min-width: 0;
}

.summary-social-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.12;
  hyphens: manual;
}

.summary-social-intro > p:last-child,
.summary-social-copy p,
.summary-social-scale p {
  margin: 18px 0 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.55;
}

.summary-social-intro strong {
  color: var(--iris-dark);
  font-family: var(--utility);
  font-size: 0.78em;
  letter-spacing: 0.02em;
}

.summary-social-intro .social-responsibility-accent {
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 10px 13px;
  display: block;
  border: 1px solid rgba(102, 87, 197, 0.24);
  border-radius: 14px;
  color: var(--iris-dark);
  background: rgba(238, 232, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 24px rgba(82, 67, 165, 0.1);
  font-family: var(--utility);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.035em;
}

.summary-social-scale {
  padding: 0 clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(65, 80, 106, 0.15);
  border-left: 1px solid rgba(65, 80, 106, 0.15);
}

.summary-social-scale .impact-value {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.03em;
  white-space: nowrap;
  color: var(--iris-dark);
  font-family: var(--display);
  font-size: clamp(46px, 4.1vw, 62px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1;
}

.summary-social-scale .impact-value-suffix {
  margin-top: 0.05em;
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1;
}

.summary-social-copy p:first-child {
  margin-top: 0;
}

.summary-social-copy p + p {
  padding-top: 16px;
  border-top: 1px solid rgba(65, 80, 106, 0.14);
}

.audience-foundations,
.audience-foundations .audience-photo {
  min-height: 650px;
}

.audience-companies,
.audience-companies .audience-photo {
  min-height: 530px;
}

.audience-copy {
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(62px, 7vw, 96px);
}

.handoff {
  padding-top: clamp(84px, 9vw, 120px);
  padding-bottom: clamp(84px, 9vw, 120px);
}

.handoff-route {
  margin-top: 58px;
}

.partners {
  padding-top: clamp(84px, 9vw, 120px);
  padding-bottom: clamp(90px, 10vw, 130px);
}

.partner-grid {
  margin-top: 52px;
}

.partner-card {
  min-height: 158px;
}

.partners > .partners-rules {
  position: relative;
  z-index: 2;
}

.partners-rules {
  margin-top: 38px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(82, 67, 165, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(82, 67, 165, 0.09);
  backdrop-filter: blur(18px);
}

.partners-rules .eyebrow {
  margin-bottom: 10px;
}

.partners-rules h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.join {
  min-height: 620px;
  padding-top: clamp(76px, 8vw, 108px);
  padding-bottom: clamp(76px, 8vw, 108px);
}

.join-content h2 {
  font-size: clamp(42px, 5.2vw, 72px);
  hyphens: none;
  overflow-wrap: normal;
}

.join-title-word {
  white-space: nowrap;
}

.join-actions {
  margin-top: 28px;
}

.join-content > .join-thanks {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .summary-social-note {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  }

  .summary-social-intro {
    grid-column: 1 / -1;
  }

  .summary-social-scale {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .program-summary {
    padding: 70px 16px;
  }

  .summary-card {
    min-height: 0;
  }

  .summary-social-note {
    padding: 30px 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    border-radius: 26px;
  }

  .summary-social-intro,
  .summary-social-scale {
    grid-column: auto;
  }

  .summary-social-intro h2 {
    font-size: 28px;
  }

  .summary-social-scale {
    padding: 26px 0;
    border-top: 1px solid rgba(65, 80, 106, 0.15);
    border-right: 0;
    border-bottom: 1px solid rgba(65, 80, 106, 0.15);
  }

  .summary-social-scale .impact-value {
    font-size: 52px;
  }

  .audience-foundations,
  .audience-companies {
    min-height: 0;
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    min-height: 62vw;
  }

  .audience-foundations .audience-copy,
  .audience-companies .audience-copy {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .handoff {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .handoff-route {
    margin-top: 42px;
  }

  .partners {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .partner-grid {
    margin-top: 40px;
  }

  .partner-card {
    min-height: 136px;
  }

  .partners-rules {
    margin-top: 28px;
    padding: 26px 22px;
    grid-template-columns: minmax(0, 1fr);
  }

  .partners-rules .button {
    width: 100%;
  }

  .join {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .join-content h2 {
    font-size: clamp(26px, 8.2vw, 36px);
  }
}

/* The regular visit slot is the key operational detail. */
.summary-time strong {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 12px 18px 13px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(231, 167, 38, 0.58);
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 189, 76, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 32px rgba(199, 139, 24, 0.14);
  font-size: clamp(34px, 3.25vw, 48px);
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .summary-time strong {
    padding: 11px 15px 12px;
    font-size: 32px;
  }
}

/* Mobile composition: compact, readable, and independent from the approved desktop layout. */
@media (max-width: 680px) {
  :root {
    --header-height: 64px;
    --page: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  section[id],
  article[id],
  aside[id] {
    scroll-margin-top: 72px;
  }

  .header-shell {
    min-height: var(--header-height);
    padding-right: 12px;
    padding-left: 12px;
  }

  .park-logo img {
    width: 104px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 10px;
    border-radius: 14px;
  }

  .header-phone-number {
    font-size: 9.5px;
    letter-spacing: -0.02em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .site-nav {
    top: var(--header-height);
    max-height: calc(100dvh - var(--header-height));
    padding: 18px 16px 24px;
    background: linear-gradient(180deg, rgba(251, 249, 255, 0.99), rgba(239, 233, 252, 0.98));
    box-shadow: 0 24px 50px rgba(32, 28, 78, 0.16);
  }

  .site-nav a {
    padding: 14px 2px;
    font-size: 16px;
  }

  .motion-toggle {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }

  .eyebrow,
  .panel-label,
  .hero-copy > .eyebrow {
    margin-bottom: 18px;
    gap: 9px;
    font-size: 12.5px;
    letter-spacing: 0.055em;
    line-height: 1.42;
  }

  .eyebrow span,
  .hero-copy > .eyebrow span {
    width: 28px;
    height: 2px;
  }

  .hero {
    padding: calc(var(--header-height) + 30px) 16px 24px;
    gap: 30px;
    border-radius: 0 0 32px 32px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 39px);
    line-height: 1.04;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-text p + p {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .button {
    min-height: 52px;
    padding: 12px 17px;
    font-size: 14px;
    line-height: 1.25;
  }

  .header-cta {
    min-height: 44px;
    height: 44px;
    padding: 0 10px;
  }

  .hero-visual {
    min-height: clamp(292px, 78vw, 340px);
    border-radius: 26px 12px 48px 12px;
  }

  .hero-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 13px;
    border-radius: 16px 16px 32px 16px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .hero-bubble-one {
    width: 104px;
  }

  .hero-bubble-two {
    left: -2%;
    width: 74px;
  }

  .hero-bubble-three {
    width: 62px;
  }

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

  .section-heading h2,
  .experience-copy h2,
  .rules-intro h2 {
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.08;
    overflow-wrap: normal;
    hyphens: none;
  }

  .section-heading > p:last-child,
  .experience-copy .lead {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .program-summary {
    padding: 56px 16px;
    gap: 12px;
  }

  .summary-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .summary-card h2,
  .rules-download-copy h2 {
    font-size: clamp(28px, 7.6vw, 31px);
    line-height: 1.08;
  }

  .summary-time {
    margin-top: 20px;
    font-size: 22px;
  }

  .summary-time strong {
    margin-top: 10px;
    padding: 10px 13px 11px;
    border-radius: 14px;
    font-size: clamp(27px, 7.6vw, 31px);
  }

  .summary-copy {
    margin-top: 26px;
    padding-top: 20px;
  }

  .summary-copy p,
  .summary-social-intro > p:last-child,
  .summary-social-copy p,
  .summary-social-scale p {
    font-size: 14px;
    line-height: 1.58;
  }

  .summary-copy p + p {
    margin-top: 14px;
  }

  .summary-subtitle {
    margin-top: 14px;
    font-size: 16px;
  }

  .summary-numbers {
    margin-top: 24px;
    padding-top: 20px;
  }

  .summary-numbers > div + div {
    padding-top: 18px;
  }

  .summary-numbers .impact-value {
    font-size: 48px;
  }

  .summary-numbers p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .summary-social-note {
    padding: 26px 20px;
    gap: 20px;
    border-radius: 24px;
  }

  .summary-social-intro h2 {
    font-size: clamp(18.5px, 5.9vw, 24px);
    line-height: 1.1;
    hyphens: none;
  }

  .summary-social-intro > p:last-child,
  .summary-social-copy p,
  .summary-social-scale p {
    margin-top: 14px;
  }

  .summary-social-scale {
    padding: 20px 0;
  }

  .summary-social-scale .impact-value {
    font-size: 48px;
  }

  .summary-social-copy p + p {
    padding-top: 14px;
  }

  .experience {
    gap: 32px;
  }

  .experience-caption {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .experience .park-film-frame {
    padding: 3px;
    border-radius: 18px 18px 44px 18px;
  }

  .experience .park-film-frame video {
    border-radius: 14px 14px 40px 14px;
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    min-height: clamp(220px, 60vw, 270px);
  }

  .audience-foundations .audience-copy,
  .audience-companies .audience-copy {
    padding: 48px 16px 52px;
  }

  .audience-copy h2 {
    font-size: clamp(28px, 7.7vw, 32px);
    line-height: 1.09;
    overflow-wrap: normal;
    hyphens: none;
  }

  .audience-copy > p:not(.panel-label) {
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .audience-copy > p:not(.panel-label) + p {
    margin-top: 16px;
  }

  .audience-copy > .button {
    width: 100%;
    margin-top: 26px;
  }

  .handoff {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .handoff-route {
    margin-top: 32px;
  }

  .handoff-route::before {
    left: 17px;
  }

  .handoff-route li {
    min-height: 84px;
    padding: 3px 0 20px 54px;
  }

  .handoff-route li::before {
    width: 36px;
    height: 36px;
  }

  .handoff-route span {
    font-size: 10px;
  }

  .handoff-route strong {
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.25;
  }

  .partners {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .partners .section-heading h2 {
    font-size: clamp(29px, 8vw, 33px);
  }

  .partner-grid {
    margin-top: 30px;
    border-radius: 22px;
  }

  .partner-card {
    min-height: 112px;
    padding: 13px 9px;
    gap: 7px;
  }

  .partner-card-logo img {
    max-width: min(112px, 94%);
    max-height: 44px;
  }

  .partner-card-logo img.partner-logo-square {
    max-width: 52px;
    max-height: 52px;
  }

  .partner-card-logo img.partner-logo-portrait {
    width: 86px;
    height: 70px;
    max-width: 86px;
  }

  .partner-card-logo img.partner-logo-ediny {
    width: 92px;
    height: 82px;
    max-width: 92px;
  }

  .partner-card-logo img.partner-logo-shag {
    width: 104px;
    height: 89px;
    max-width: 104px;
  }

  .partner-card-logo img.partner-logo-vo-blago {
    width: 88px;
    height: 96px;
    max-width: 88px;
  }

  .partner-card-logo img.partner-logo-angel {
    width: 104px;
    height: 91px;
    max-width: 104px;
  }

  .partner-card-label {
    font-size: 11px;
    line-height: 1.3;
  }

  .partner-card:last-child {
    grid-column: 1 / -1;
    min-height: 118px;
  }

  .partners-rules {
    margin-top: 22px;
    padding: 22px 18px;
    gap: 18px;
    border-radius: 22px;
  }

  .partners-rules h2 {
    font-size: 24px;
  }

  .join {
    padding: 64px 16px;
  }

  .join-content h2 {
    font-size: clamp(26px, 8.2vw, 35px);
    line-height: 1.08;
  }

  .join-subtitle {
    margin-top: 24px !important;
    font-size: clamp(22px, 6.5vw, 26px) !important;
    line-height: 1.2;
  }

  .join-content > p:not(.eyebrow):not(.join-subtitle):not(.join-thanks) {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .join-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .join-content > .join-thanks {
    margin-top: 24px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .join-bubble-one {
    right: -34%;
    width: 250px;
  }

  .site-footer {
    padding: 38px 0;
    gap: 26px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
    gap: 12px;
  }

  .footer-legal {
    margin-top: 0;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px 7px;
    font-size: 10.5px;
  }

  .footer-legal span + span::before {
    margin: 0 7px 0 0;
  }
}

/* Responsive architecture: one grid from small phones to wide desktop. */
:root {
  --layout-max: 1260px;
  --layout-gutter: clamp(16px, 3.35vw, 48px);
  --content-edge: max(var(--layout-gutter), calc((100vw - var(--layout-max)) / 2));
  --page: min(var(--layout-max), calc(100% - (var(--layout-gutter) * 2)));
}

.section {
  padding-top: clamp(72px, 7.5vw, 112px);
  padding-bottom: clamp(72px, 7.5vw, 112px);
}

.section-heading h2,
.experience-copy h2,
.rules-intro h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.header-shell {
  gap: clamp(14px, 2vw, 24px);
}

.hero {
  min-height: 0;
  padding-top: calc(var(--header-height) + clamp(42px, 4vw, 62px));
  padding-bottom: clamp(52px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 5vw, 76px);
}

.hero h1 {
  font-size: clamp(48px, 5vw, 76px);
}

.hero-visual {
  min-height: 0;
  aspect-ratio: 1.12 / 1;
}

.program-summary {
  padding: clamp(72px, 7.5vw, 108px) var(--content-edge);
  gap: clamp(18px, 2vw, 28px);
}

.summary-card {
  min-height: 500px;
  padding: clamp(36px, 4vw, 56px);
}

.summary-social-note {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr) minmax(0, 1fr);
  padding: clamp(32px, 3.6vw, 48px);
}

.experience {
  width: min(1480px, calc(100% - (var(--layout-gutter) * 2)));
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 5vw, 74px);
}

.experience-copy {
  min-width: 0;
}

.experience .park-film-media,
.experience .park-film-frame,
.experience .park-film-frame video {
  min-width: 0;
  max-width: 100%;
}

.experience .park-film-frame video {
  aspect-ratio: 16 / 9;
}

.participation,
.audience-panel,
.audience-foundations,
.audience-companies {
  min-height: 0;
}

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

.audience-copy {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.audience-foundations .audience-copy {
  padding-right: clamp(36px, 6vw, 92px);
  padding-left: var(--content-edge);
}

.audience-companies .audience-copy {
  padding-right: var(--content-edge);
  padding-left: clamp(36px, 6vw, 92px);
}

.audience-foundations .audience-photo,
.audience-companies .audience-photo {
  min-height: 500px;
}

.audience-copy h2 {
  font-size: clamp(32px, 3.7vw, 52px);
}

.handoff {
  padding-top: clamp(72px, 7.5vw, 104px);
  padding-bottom: clamp(76px, 8vw, 112px);
}

.handoff-route {
  margin-top: clamp(42px, 5vw, 62px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partners {
  padding-top: clamp(72px, 7.5vw, 104px);
  padding-bottom: clamp(78px, 8vw, 116px);
}

.partner-grid {
  margin-top: clamp(34px, 4vw, 48px);
}

.partner-card {
  min-height: 148px;
}

.join {
  min-height: clamp(540px, 48vw, 640px);
  padding-top: clamp(70px, 7vw, 96px);
  padding-bottom: clamp(70px, 7vw, 96px);
}

.join-content h2 {
  font-size: clamp(40px, 4.8vw, 68px);
}

@media (max-width: 1120px) {
  :root {
    --layout-gutter: clamp(20px, 3.1vw, 34px);
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-cta {
    grid-column: 2;
    width: auto;
    justify-self: end;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-nav {
    padding: 24px var(--layout-gutter) 32px;
  }

  .hero {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(32px, 4vw, 48px);
  }

  .hero h1 {
    font-size: clamp(48px, 5.2vw, 58px);
  }

  .hero-visual {
    aspect-ratio: 1.08 / 1;
  }

  .summary-card {
    min-height: 460px;
    padding: clamp(32px, 4vw, 42px);
  }

  .summary-social-note {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr) minmax(0, 1fr);
  }

  .summary-social-scale {
    padding-right: clamp(18px, 2.5vw, 28px);
    padding-left: clamp(18px, 2.5vw, 28px);
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    min-height: 440px;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .experience {
    width: var(--page);
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

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

  .experience .park-film-frame video {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  :root {
    --layout-gutter: clamp(20px, 4.1vw, 32px);
  }

  .hero {
    width: 100%;
    padding-right: var(--layout-gutter);
    padding-left: var(--layout-gutter);
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    border-right: 0;
    border-left: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 6.25vw, 50px);
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .summary-card {
    min-height: 0;
  }

  .summary-social-note {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .summary-social-intro {
    grid-column: 1 / -1;
  }

  .summary-social-scale {
    padding-left: 0;
    border-left: 0;
  }

  .experience {
    width: var(--page);
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .experience-copy {
    max-width: 720px;
  }

  .audience-panel,
  .audience-foundations,
  .audience-companies {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-foundations .audience-copy,
  .audience-companies .audience-copy {
    order: 1;
    padding: clamp(52px, 7vw, 70px) var(--layout-gutter);
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    order: 2;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .partner-card {
    min-height: 132px;
  }

  .partner-card:last-child {
    grid-column: auto;
  }

  .site-footer {
    gap: 30px;
  }
}

@media (max-width: 680px) {
  :root {
    --layout-gutter: 16px;
  }

  .header-shell {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .header-cta {
    max-width: 146px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 22px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(33px, 9.4vw, 38px);
  }

  .hero-visual {
    aspect-ratio: 1.18 / 1;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .program-summary {
    padding: 52px 16px;
  }

  .summary-card,
  .summary-social-note {
    padding: 30px 24px;
  }

  .summary-social-intro h2 {
    overflow-wrap: anywhere;
  }

  .summary-social-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-social-intro {
    grid-column: auto;
  }

  .summary-social-scale {
    padding: 18px 0;
    border-top: 1px solid rgba(65, 80, 106, 0.15);
    border-right: 0;
    border-bottom: 1px solid rgba(65, 80, 106, 0.15);
  }

  .experience {
    gap: 28px;
  }

  .experience .park-film-frame video {
    aspect-ratio: 16 / 10;
  }

  .audience-foundations .audience-copy,
  .audience-companies .audience-copy {
    padding: 44px 16px 48px;
  }

  .audience-foundations .audience-photo,
  .audience-companies .audience-photo {
    aspect-ratio: 16 / 10;
  }

  .handoff {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .handoff-route {
    margin-top: 32px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .handoff-route::before {
    top: 21px;
    bottom: 21px;
    left: 18px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--teal) 0 8px, transparent 8px 14px);
  }

  .handoff-route li {
    min-height: 88px;
    padding: 3px 0 22px 58px;
    text-align: left;
  }

  .handoff-route li::before {
    top: 4px;
    left: 0;
  }

  .handoff-route li::after {
    top: -3px;
    left: -7px;
  }

  .handoff-route strong {
    max-width: none;
    margin: 6px 0 0;
    font-size: 17px;
    line-height: 1.25;
  }

  .partners {
    padding-top: 56px;
    padding-bottom: 64px;
  }

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

  .partner-card {
    min-height: 112px;
  }

  .partner-card:last-child {
    grid-column: 1 / -1;
  }

  .join {
    min-height: 0;
    padding: 58px 16px;
  }

  .join-content h2 {
    font-size: clamp(28px, 8.4vw, 35px);
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 360px) {
  .park-logo img {
    width: 92px;
  }

  .header-cta {
    max-width: 124px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .header-phone-number {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .summary-time strong {
    font-size: 27px;
  }

  .join-title-word {
    white-space: normal;
  }

  .join-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 680px) {
  .header-cta-static {
    display: none;
  }

  .header-cta-call {
    display: inline-flex;
  }
}
