@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("assets/fonts/fraunces-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-variable-latin.woff2") format("woff2");
}

:root {
  --cream: #fff4d6;
  --paper: #ffffff;
  --ink: #103d43;
  --ink-soft: #345b5e;
  --logo-green: #3cb669;
  --logo-green-dark: #287a49;
  --button-orange: #f09a3e;
  --button-orange-hover: #e9933b;
  --danger: #ad321e;
  --danger-soft: #fff6f2;
  --gold: #ffcb4f;
  --plum: #7b4a91;
  --mint: #a8ddb8;
  --leaf: #3d9b68;
  --sky: #a7dfe8;
  --line: rgba(16, 61, 67, 0.16);
  --shadow: 0 28px 90px rgba(45, 52, 35, 0.11);
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", "Avenir Next", ui-sans-serif, sans-serif;
  --motion: cubic-bezier(0.22, 0.78, 0.18, 1);
  --motion-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: min(1280px, calc(100vw - 48px));
  --header-height: 92px;
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.legal-page {
  background: var(--cream);
}

.legal-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.94);
}

.legal-header__inner,
.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-brand img {
  width: 116px;
}

.legal-header nav,
.legal-footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.legal-header nav > a:not(.button),
.legal-footer a {
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-main {
  padding: clamp(70px, 9vw, 126px) 0;
}

.legal-document {
  width: min(820px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(16, 61, 67, 0.1);
  background: var(--paper);
  border-radius: 36px 16px 34px 20px;
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-document h2 {
  margin: 48px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a {
  overflow-wrap: anywhere;
}

.legal-document .legal-updated {
  margin-bottom: 36px;
  color: var(--logo-green-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-notice {
  margin: 32px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 203, 79, 0.13);
  border-radius: 0 14px 14px 0;
}

.legal-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.legal-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .legal-header__inner,
  .legal-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header nav,
  .legal-footer__links {
    flex-wrap: wrap;
  }

  .legal-document {
    padding: 30px 22px;
    border-radius: 26px 12px 24px 14px;
  }

  .legal-footer__links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

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

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

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  border-radius: 10px;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 152px) 0;
}

.illustrated-scene {
  isolation: isolate;
  overflow: clip;
}

.illustrated-scene > .shell,
.site-footer > .shell {
  position: relative;
  z-index: 2;
}

.illustrated-scene > .lottie-orbit,
.illustrated-scene > .tour-blob {
  z-index: 0;
}

.scene-atmosphere {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: clip;
  pointer-events: none;
}

.scene-word {
  position: absolute;
  z-index: 0;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  font-variation-settings: "SOFT" 78, "WONK" 1;
  letter-spacing: -0.055em;
  line-height: 0.72;
  opacity: 0;
  transform: translateY(46px) scale(1.2);
  white-space: nowrap;
}

.scene-decor {
  position: absolute;
  display: block;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.decor-glyph {
  display: block;
  transform: translate3d(var(--drift-x, 0), var(--drift-y, 0), 0) rotate(var(--drift-rotate, 0deg));
  transform-origin: center;
  will-change: transform, opacity;
}

.decor-star {
  width: 76px;
  aspect-ratio: 1;
  background: var(--plum);
  clip-path: polygon(50% 0%, 60% 37%, 100% 50%, 60% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 37%);
}

.decor-star--logo-green { background: var(--logo-green); }
.decor-star--gold { background: var(--gold); }

.decor-dot {
  width: 22px;
  aspect-ratio: 1;
  background: var(--gold);
  border-radius: 50%;
}

.decor-dot--logo-green { background: var(--logo-green); }
.decor-dot--plum { background: var(--plum); }
.decor-dot--leaf { background: var(--leaf); }
.decor-dot--sky { background: #64b9dc; }

.decor-blob {
  display: block;
  width: 210px;
  height: 148px;
  border: 3px solid currentcolor;
  border-radius: 56% 44% 67% 33% / 48% 62% 38% 52%;
  opacity: 0.34;
}

.decor-blob--mint { color: var(--leaf); background: rgba(61, 155, 104, 0.16); }
.decor-blob--plum { color: var(--plum); background: rgba(123, 74, 145, 0.13); }
.decor-blob--gold { color: #dc8e20; background: rgba(255, 203, 79, 0.21); }

.decor-scribble {
  display: block;
  width: 100%;
  overflow: visible;
}

.decor-scribble path {
  stroke: var(--plum);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--draw-offset, 1);
  vector-effect: non-scaling-stroke;
  transition: none;
}

.decor-scribble--logo-green path { stroke: rgba(40, 122, 73, 0.62); }
.decor-scribble--leaf path { stroke: rgba(61, 155, 104, 0.58); }
.decor-scribble--light path { stroke: rgba(255, 255, 255, 0.24); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--logo-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 68, "WONK" 1;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.1vw, 4.65rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(16, 61, 67, 0.16), inset 0 1px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 560ms var(--motion-spring), box-shadow 560ms var(--motion), background-color 420ms var(--motion);
}

.button:hover {
  transform: translate3d(var(--magnetic-x, 0), calc(var(--magnetic-y, 0) - 3px), 0);
  box-shadow: 0 24px 48px rgba(16, 61, 67, 0.2), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button:active {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0) scale(0.975);
  box-shadow: 0 12px 24px rgba(16, 61, 67, 0.15), inset 0 2px 5px rgba(0, 0, 0, 0.08);
}

.button--primary,
.button--small {
  background: var(--button-orange);
  color: var(--ink);
}

.button--primary {
  box-shadow: 0 18px 38px rgba(166, 86, 22, 0.24), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button--primary:hover,
.button--small:hover {
  background: var(--button-orange-hover);
  color: var(--ink);
  box-shadow: 0 24px 46px rgba(166, 86, 22, 0.3), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button--small {
  min-height: 46px;
  padding: 11px 19px;
  border-radius: 999px;
  box-shadow: none;
}

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

.text-link,
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.text-link span,
.inline-cta span {
  transition: transform 460ms var(--motion-spring);
}

.text-link:hover span,
.inline-cta:hover span {
  transform: translate(3px, -2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  will-change: opacity, transform;
}

.is-scroll-scrubbed {
  transition: none !important;
  transition-delay: 0s !important;
}

body [data-reveal].is-scroll-scrubbed,
body .scene-decor.is-scroll-scrubbed,
body .scene-word.is-scroll-scrubbed {
  opacity: calc(var(--scrub-opacity, 0) * var(--scrub-max-opacity, 1)) !important;
  transform: translate3d(
      var(--scrub-x, 0px),
      calc(var(--scrub-y, 0px) + var(--layout-y, 0px)),
      0
    )
    scale(var(--scrub-scale, 1))
    rotate(var(--scrub-rotate, 0deg)) !important;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: transform 520ms var(--motion-spring), background-color 420ms var(--motion), box-shadow 520ms var(--motion);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(16, 61, 67, 0.05);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--logo-green);
  border-radius: 999px;
  content: "";
  transition: transform 460ms var(--motion-spring);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  padding: clamp(60px, 7vw, 106px) 0 150px;
  background: var(--cream);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 640px;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(26px, 4.5vw, 72px);
}

.hero-landmark {
  display: block;
  --hero-landmark-opacity: 0.36;
  position: absolute;
  z-index: 1;
  top: 18%;
  right: -6%;
  width: min(64vw, 1060px);
  max-width: none;
  height: auto;
  opacity: var(--hero-landmark-opacity);
  filter: saturate(1) contrast(1.06);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 48%, #000 44%, rgba(0, 0, 0, 0.96) 58%, rgba(0, 0, 0, 0.72) 72%, rgba(0, 0, 0, 0.32) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 48%, #000 44%, rgba(0, 0, 0, 0.96) 58%, rgba(0, 0, 0, 0.72) 72%, rgba(0, 0, 0, 0.32) 86%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: hero-rock-load 1200ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-sun {
  position: absolute;
  z-index: 0;
  top: 7%;
  right: 8%;
  width: clamp(166px, 15.6vw, 232px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(48px) scale(0.9);
  will-change: transform, opacity;
}

.hero-sun.is-ready {
  animation: hero-sun-load 1000ms cubic-bezier(0.22, 1, 0.36, 1) 620ms both;
}

.hero-sun svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(255, 176, 38, 0.16));
}

@keyframes hero-rock-load {
  from { opacity: 0; }
  to { opacity: var(--hero-landmark-opacity); }
}

@keyframes hero-sun-load {
  from {
    transform: translateY(34px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes hero-photo-load {
  from {
    transform: translateX(78px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.section-landmark {
  position: absolute;
  z-index: 0;
  height: auto;
  max-width: none;
  opacity: 0.11;
  filter: saturate(0.62) contrast(0.94);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.section-landmark--visit {
  right: -6%;
  bottom: 2%;
  width: min(49vw, 790px);
  -webkit-mask-image: linear-gradient(108deg, transparent 1%, #000 25%, #000 78%, transparent 100%);
  mask-image: linear-gradient(108deg, transparent 1%, #000 25%, #000 78%, transparent 100%);
}

.section-landmark--experience {
  bottom: 7%;
  left: -8%;
  width: min(51vw, 840px);
  opacity: 0.09;
  -webkit-mask-image: linear-gradient(74deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
  mask-image: linear-gradient(74deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
}

.section-landmark--why {
  top: 13%;
  right: -5%;
  width: min(54vw, 880px);
  opacity: 0.1;
  -webkit-mask-image: linear-gradient(102deg, transparent 0%, #000 24%, #000 82%, transparent 100%);
  mask-image: linear-gradient(102deg, transparent 0%, #000 24%, #000 82%, transparent 100%);
}

.hero-copy {
  padding-bottom: 54px;
}

.hero-copy > .eyebrow {
  white-space: nowrap;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(3.8rem, 5.5vw, 6rem);
  line-height: 1.02;
}

.hero h1 span {
  display: block;
  color: var(--plum);
  font-size: 0.64em;
  line-height: 1;
}

.hero-lede {
  max-width: 580px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.hero-lede strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-note {
  max-width: 460px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.hero-art {
  position: relative;
  min-height: 610px;
  /* Mountain finishes at 1320ms; hold it alone for another 480ms. */
  animation: hero-photo-load 980ms ease-out 1800ms both;
  will-change: transform, opacity;
}

.hero-art img {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: 7%;
  width: 108%;
  border-radius: 38px 74px 42px 62px;
  filter: drop-shadow(0 26px 26px rgba(16, 61, 67, 0.14));
  will-change: transform;
}

.hero-art__caption {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 1%;
  max-width: 280px;
  margin: 0;
  padding: 18px 20px;
  transform: rotate(2deg);
  background: var(--paper);
  border: 1px solid rgba(16, 61, 67, 0.08);
  border-radius: 18px 8px 18px 10px;
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero-art__caption span {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.hero-heritage {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 76px;
  left: 0;
  display: flex;
  width: min(92vw, 1380px);
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-heritage::before,
.hero-heritage::after {
  height: 1px;
  flex: 1;
  background: rgba(16, 61, 67, 0.17);
  content: "";
}

.hero-heritage span {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
}

.hero-doodle {
  position: absolute;
  z-index: 1;
  border: 4px solid rgba(16, 61, 67, 0.15);
  border-radius: 50%;
}

.hero-doodle--one {
  top: 12%;
  left: 42%;
  width: 34px;
  height: 34px;
  border-color: var(--logo-green);
}

.hero-doodle--two {
  bottom: 23%;
  left: 5%;
  width: 17px;
  height: 17px;
  background: var(--leaf);
  border: 0;
}

.hero-wave {
  position: absolute;
  right: -3%;
  bottom: -68px;
  left: -3%;
  height: 145px;
  background: var(--paper);
  border-radius: 48% 52% 0 0 / 100% 100% 0 0;
}

.lottie-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.lottie-orbit--story {
  right: -70px;
  bottom: 2%;
  width: min(32vw, 440px);
  opacity: 0.085;
  transform: rotate(-14deg);
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.trust-ribbon__inner {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-ribbon p {
  margin: 0;
  text-align: center;
  font-family: var(--body);
  font-weight: 800;
}

.trust-ribbon span {
  margin-right: 10px;
  color: var(--gold);
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(40px, 8vw, 120px);
}

.section-heading--split h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 550px;
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.visit-path {
  min-height: 920px;
  background: #fffdf9;
}

.visit-intro {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(380px, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(54px, 8vw, 120px);
  padding-top: 0;
}

.visit-photo {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  transform: rotate(-1.2deg);
  background: #f3c28f;
  border-radius: 24px 56px 22px 46px;
  box-shadow:
    0 30px 80px rgba(16, 61, 67, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.52),
    0 0 0 9px rgba(16, 61, 67, 0.06);
}

.visit-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.visit-copy h2 {
  max-width: 720px;
  margin-bottom: 28px;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.scene-atmosphere--visit .scene-word {
  top: 7%;
  left: max(3vw, calc((100vw - 1380px) / 2));
}

.scene-decor--visit-star { top: 11%; right: 9%; }
.scene-decor--visit-dot-one { top: 31%; left: 5%; }
.scene-decor--visit-dot-two { top: 14%; left: 46%; }
.scene-decor--visit-blob { top: 4%; right: 22%; }
.scene-decor--visit-scribble { right: -3%; bottom: 5%; width: min(27vw, 360px); }

.visit-steps {
  display: grid;
  margin: 76px 0 36px;
  padding: 0;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 20px;
  list-style: none;
}

.visit-steps li {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 28px;
  overflow: hidden;
  background: #e5f3e9;
  border-radius: 30px 14px 28px 18px;
}

.visit-steps li:nth-child(2) {
  --layout-y: 24px;
  background: #e2f0dd;
  border-radius: 16px 32px 15px 28px;
}

.visit-steps li:nth-child(3) {
  background: #fdeab9;
  border-radius: 28px 14px 34px 18px;
}

.step-number {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 800;
}

.visit-steps h3 {
  margin: 8px 0 16px;
}

.visit-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.inline-cta {
  font-size: 1.08rem;
}

.experience {
  overflow: hidden;
  background: var(--mint);
}

.scene-atmosphere--experience .scene-word {
  top: 4%;
  left: max(2vw, calc((100vw - 1430px) / 2));
}

.scene-decor--play-star { top: 8%; right: 5%; }
.scene-decor--play-dot-one { top: 21%; left: 47%; }
.scene-decor--play-dot-two { top: 59%; left: 4%; }
.scene-decor--play-blob { top: 25%; left: -5%; }
.scene-decor--play-scribble { right: -4%; bottom: 7%; width: min(30vw, 430px); }

.experience-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(54px, 8vw, 128px);
}

/* Keep the sticky intro inside the first grid row, clear of the outdoor row. */
.experience-intro-track {
  align-self: stretch;
  min-width: 0;
}

.experience-intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  padding-top: clamp(130px, 14vw, 210px);
}

.experience-intro h2 {
  max-width: 620px;
}

.experience-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.story-stack {
  display: grid;
  gap: 34px;
}

.story-card {
  position: relative;
  display: grid;
  min-height: 390px;
  align-content: center;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border-radius: 44px 18px 42px 22px;
  box-shadow: 0 18px 50px rgba(16, 61, 67, 0.09);
}

.story-card--gold {
  background: var(--gold);
}

.story-card--split {
  min-height: 500px;
  align-content: stretch;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.72fr);
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(36px, 4vw, 54px) clamp(26px, 3vw, 38px) clamp(30px, 3vw, 40px) clamp(38px, 5vw, 64px);
}

.story-card__copy {
  position: relative;
  z-index: 2;
}

.story-card__portrait {
  position: relative;
  height: 390px;
  margin: 0;
  transform: rotate(2.4deg);
  transform-origin: 50% 100%;
}

.story-card__portrait::before {
  position: absolute;
  z-index: -1;
  inset: 12px -9px -10px 12px;
  transform: rotate(-3deg);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 28px 14px 32px 18px;
  content: "";
}

.story-card__portrait img {
  width: 100%;
  height: 100%;
  border: 5px solid rgba(255, 255, 255, 0.72);
  object-fit: cover;
  object-position: 50% 62%;
  border-radius: 28px 14px 32px 18px;
  box-shadow: 0 22px 46px rgba(16, 61, 67, 0.16);
}

.story-card__portrait figcaption {
  position: absolute;
  right: -8px;
  bottom: 20px;
  max-width: 190px;
  padding: 12px 15px;
  transform: rotate(-3.6deg);
  background: rgba(255, 253, 249, 0.94);
  border-radius: 13px 6px 12px 7px;
  box-shadow: 0 14px 30px rgba(16, 61, 67, 0.14);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
}

.story-card--mint {
  background: var(--mint);
  border-radius: 18px 45px 24px 42px;
}

.story-card__number {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 800;
}

.story-card__label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 540px;
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.story-card p:last-child {
  max-width: 540px;
  margin-bottom: 0;
}

.story-card__icon {
  position: absolute;
  right: -24px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13rem;
  line-height: 1;
}

.story-card--photo {
  min-height: 530px;
  padding: 0;
  background: var(--plum);
  border-radius: 18px 48px 20px 42px;
}

.story-card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-card--costumes img {
  object-position: 50% 43%;
}

.story-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(180deg, transparent 22%, rgba(16, 61, 67, 0.84) 100%);
  color: white;
}

.story-card__overlay .story-card__number {
  color: white;
}

.story-card__overlay h3 {
  max-width: 650px;
  margin-bottom: 0;
}

.outdoor-story {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(54px, 8vw, 128px);
  padding: clamp(34px, 5vw, 72px) 10px 30px;
}

.outdoor-story__photo {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #dcead6;
  border-radius: 42px 18px 46px 24px;
  box-shadow:
    0 30px 80px rgba(16, 61, 67, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.48),
    0 0 0 9px rgba(16, 61, 67, 0.055),
    inset 0 1px rgba(255, 255, 255, 0.34);
}

.outdoor-story__photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 59%;
}

.outdoor-story__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 61, 67, 0.02), rgba(16, 61, 67, 0.1));
  content: "";
  pointer-events: none;
}

.story-card__outdoor-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 500px;
  margin: 0;
  padding: clamp(24px, 3.5vw, 38px);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px 12px 26px 16px;
  box-shadow: 0 24px 52px rgba(16, 61, 67, 0.18);
  backdrop-filter: blur(12px);
}

.story-card__outdoor-copy .story-card__number {
  top: 22px;
  right: 24px;
}

.story-card__outdoor-copy h3 {
  max-width: 430px;
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
}

.story-card__outdoor-copy p:last-child {
  padding-right: 18px;
}

.shape-cluster {
  position: absolute;
  right: 7%;
  bottom: 8%;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  opacity: 0.42;
}

.shape-cluster i {
  display: block;
  width: 44px;
  height: 95px;
  transform: rotate(8deg);
  background: var(--leaf);
  border-radius: 50% 50% 16px 16px;
}

.shape-cluster i:nth-child(2) {
  height: 132px;
  transform: rotate(-5deg);
  background: var(--plum);
}

.shape-cluster i:nth-child(3) {
  height: 72px;
  background: var(--logo-green);
}

.why {
  background: var(--paper);
}

.scene-atmosphere--why .scene-word {
  top: 5%;
  right: 3%;
  color: var(--logo-green);
}

.scene-decor--why-star { top: 8%; left: 7%; }
.scene-decor--why-dot-one { top: 19%; right: 4%; }
.scene-decor--why-dot-two { bottom: 17%; left: 46%; }
.scene-decor--why-blob { right: -3%; bottom: 3%; }
.scene-decor--why-scribble { left: -3%; bottom: 2%; width: min(33vw, 470px); }

.why-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(420px, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(58px, 9vw, 140px);
  padding-top: clamp(110px, 12vw, 190px);
}

.why-photo {
  position: relative;
  min-height: 650px;
}

.why-photo::before {
  position: absolute;
  z-index: 0;
  inset: -28px 35px 35px -28px;
  transform: rotate(-3deg);
  background: #dceddf;
  border-radius: 46px 18px 38px 20px;
  content: "";
}

.why-photo img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px 54px 20px 42px;
  box-shadow: var(--shadow);
}

.why-photo__badge {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 48px;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-content: center;
  transform: rotate(7deg);
  background: var(--gold);
  border: 8px solid var(--paper);
  border-radius: 50%;
  text-align: center;
}

.why-photo__badge strong {
  display: block;
  font-family: var(--display);
}

.why-photo__badge span {
  display: block;
  font-family: var(--body);
}

.why-photo__badge strong {
  font-size: 1.9rem;
  line-height: 1;
}

.why-photo__badge span {
  font-size: 0.75rem;
  font-weight: 800;
}

.why-intro {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.why-list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: grid;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px minmax(170px, 0.78fr) minmax(210px, 1fr);
  gap: 18px;
}

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

.why-list span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
}

.why-list strong {
  font-family: var(--body);
  line-height: 1.3;
}

.why-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.social-proof {
  overflow: clip;
  background: #f4eee5;
}

.scene-atmosphere--reviews .scene-word {
  top: 2%;
  right: 2%;
  color: var(--logo-green);
}

.scene-decor--reviews-star { top: 12%; left: 5%; }
.scene-decor--reviews-dot { right: 7%; bottom: 12%; }
.scene-decor--reviews-blob { bottom: 2%; left: -3%; }

.reviews-intro {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(54px, 8vw, 116px);
  padding-top: 0;
}

.reviews-copy h2 {
  max-width: 780px;
}

.reviews-summary {
  margin-top: 32px;
}

.reviews-summary > p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.reviews-photo {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  transform: rotate(1.1deg);
  background: #d8eee0;
  border-radius: 54px 22px 48px 26px;
  box-shadow:
    0 30px 80px rgba(16, 61, 67, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.5),
    0 0 0 9px rgba(16, 61, 67, 0.06);
}

.reviews-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.review-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
  margin-top: clamp(52px, 6vw, 84px);
}

.review-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  margin: 0;
  padding: clamp(30px, 3vw, 44px);
  border-radius: 38px 20px 36px 22px;
  box-shadow:
    0 30px 80px rgba(16, 61, 67, 0.1),
    0 0 0 7px rgba(255, 255, 255, 0.48),
    0 0 0 8px rgba(16, 61, 67, 0.05);
  transition: transform 700ms var(--motion-spring), box-shadow 620ms var(--motion);
}

.review-card:nth-child(2) {
  --layout-y: 24px;
}

.review-card:hover {
  transform: translate3d(var(--tilt-x, 0), calc(var(--tilt-y, 0) - 6px), 0) rotate(var(--tilt-rotate, 0deg));
  box-shadow:
    0 42px 100px rgba(16, 61, 67, 0.14),
    0 0 0 7px rgba(255, 255, 255, 0.62),
    0 0 0 8px rgba(16, 61, 67, 0.065);
}

.review-card--gold { background: #ffdf91; }
.review-card--mint { background: var(--mint); }
.review-card--plum { background: #d6b4e6; }

.review-card__mark {
  height: 66px;
  font-family: Georgia, serif;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 0.85;
  color: var(--logo-green);
}

.review-card blockquote {
  margin: 24px 0 54px;
  font-family: var(--display);
  font-variation-settings: "SOFT" 82, "WONK" 1;
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.review-card figcaption {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.review-card figcaption strong {
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
}

.family-facts {
  overflow: clip;
  background: #fffdf9;
}

.scene-atmosphere--facts .scene-word {
  top: 4%;
  left: 3%;
  color: var(--plum);
}

.scene-decor--facts-star { top: 8%; right: 6%; }
.scene-decor--facts-dot { right: 4%; bottom: 12%; }
.scene-decor--facts-blob { bottom: 3%; left: -2%; }

.family-facts__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(56px, 9vw, 136px);
  padding-top: clamp(100px, 11vw, 166px);
}

.family-facts__intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.family-facts__intro h2 {
  max-width: 620px;
}

.family-facts__intro > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.family-facts__list {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(16, 61, 67, 0.09);
  border-radius: 38px 18px 36px 20px;
  box-shadow: var(--shadow);
}

.family-facts details {
  border-bottom: 1px solid var(--line);
}

.family-facts details:last-child {
  border-bottom: 0;
}

.family-facts summary {
  position: relative;
  padding: 27px 64px 27px 30px;
  cursor: pointer;
  list-style: none;
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
}

.family-facts summary::-webkit-details-marker {
  display: none;
}

.family-facts summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  width: 30px;
  aspect-ratio: 1;
  place-items: center;
  transform: translateY(-50%);
  background: var(--gold);
  border-radius: 50%;
  content: "+";
  font-family: var(--body);
  font-weight: 800;
}

.family-facts details[open] summary::after {
  content: "−";
}

.family-facts summary:focus-visible {
  outline: 3px solid var(--logo-green-dark);
  outline-offset: -4px;
}

.family-facts details p {
  max-width: 650px;
  margin: -6px 0 0;
  padding: 0 70px 28px 30px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.tour {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.scene-atmosphere--tour .scene-word {
  top: 5%;
  left: 2%;
  color: white;
}

.scene-decor--tour-star { top: 9%; right: 4%; }
.scene-decor--tour-dot-one { top: 32%; left: 3%; }
.scene-decor--tour-dot-two { right: 6%; bottom: 9%; }
.scene-decor--tour-scribble { left: -4%; bottom: 3%; width: min(31vw, 440px); }

.tour-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(56px, 9vw, 136px);
  padding-top: clamp(100px, 11vw, 170px);
}

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

.tour-copy h2 {
  max-width: 680px;
}

.tour-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.tour-process {
  position: relative;
  max-width: 540px;
  margin-top: 36px;
  padding: 0 82px 0 2px;
}

.tour-process__title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 800;
}

.tour-process ul {
  display: grid;
  margin: 0;
  padding-left: 1.2rem;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tour-process li::marker {
  color: var(--gold);
}

.tour-process__arrow {
  position: absolute;
  right: 4px;
  bottom: 42px;
  color: var(--gold);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

.tour-form-card {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
  background: var(--cream);
  border-radius: 48px 18px 44px 20px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
  color: var(--ink);
}

.tour-form-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.tour-form__fields {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.tour-form-card__header > span {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.6rem;
}

.tour-form-card__header p {
  margin: 0 0 4px;
  color: var(--logo-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-form-card__header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.tour-booking-card {
  padding: clamp(38px, 4.5vw, 62px);
}

.tour-booking-card .tour-form-card__header {
  margin-bottom: 24px;
}

.tour-booking-card__copy {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.tour-booking-card__details {
  display: grid;
  margin: 26px 0 30px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.tour-booking-card__details li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.tour-booking-card__details span {
  display: grid;
  width: 26px;
  aspect-ratio: 1;
  place-items: center;
  background: rgba(60, 182, 105, 0.14);
  border-radius: 50%;
  color: var(--logo-green-dark);
  font-size: 0.78rem;
}

.tour-booking-card__action {
  width: fit-content;
}

.tour-booking-card__note {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

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

.tour-dialog {
  width: min(960px, calc(100vw - 48px));
  max-width: none;
  height: min(850px, calc(100dvh - 48px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cream);
  border-radius: 34px 18px 32px 20px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);
  color: var(--ink);
}

.tour-dialog::backdrop {
  background: rgba(5, 38, 42, 0.76);
  backdrop-filter: blur(8px);
}

.tour-dialog__shell {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
}

.tour-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 18px 30px;
  border-bottom: 1px solid rgba(16, 61, 67, 0.1);
  background: linear-gradient(145deg, #fffaf0, #fff4da);
}

.tour-dialog__header p {
  margin: 0 0 2px;
  color: var(--logo-green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-dialog__header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.tour-dialog__close {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(16, 61, 67, 0.15);
  background: white;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 220ms var(--motion), background-color 220ms var(--motion);
}

.tour-dialog__close:hover {
  transform: rotate(5deg) scale(1.04);
  background: var(--gold);
}

.tour-dialog__close:focus-visible {
  outline: 3px solid var(--logo-green-dark);
  outline-offset: 3px;
}

.tour-dialog__booking {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 18px;
  overflow: hidden;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(16, 61, 67, 0.12);
  background: white;
  border-radius: 20px 10px 18px 12px;
}

.tour-dialog__frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: white;
}

.tour-dialog__loading {
  position: absolute;
  z-index: 2;
  inset: 0 0 48px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
  pointer-events: none;
  transition: opacity 220ms var(--motion), visibility 220ms var(--motion);
}

.tour-dialog__loading[hidden] {
  visibility: hidden;
  opacity: 0;
}

.tour-dialog__fallback {
  margin: 0;
  padding: 13px 18px 15px;
  border-top: 1px solid rgba(16, 61, 67, 0.1);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.tour-dialog__fallback a {
  color: var(--logo-green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  font-size: 0.83rem;
  font-weight: 800;
}

.field label span {
  color: var(--danger);
}

.field label em {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1.5px solid rgba(16, 61, 67, 0.22);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 11px;
  color: var(--ink);
  transition: border-color 380ms var(--motion), box-shadow 420ms var(--motion), background-color 380ms var(--motion), transform 420ms var(--motion-spring);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum);
  outline: none;
  background: white;
  box-shadow: 0 0 0 4px rgba(123, 74, 145, 0.13);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  background: var(--danger-soft);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.76rem;
  line-height: 1.3;
}

.prototype-note {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.45;
  text-align: center;
}

.form-success {
  min-height: 560px;
  align-content: center;
  text-align: center;
}

.form-success:not([hidden]) {
  display: grid;
}

.form-success__mark {
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  margin: 0 auto 26px;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.form-success h3 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.form-success > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.form-success__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

.tour-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.12;
}

.tour-blob--left {
  top: 8%;
  left: -8%;
  width: 370px;
  aspect-ratio: 1;
  background: var(--gold);
}

.tour-blob--right {
  right: -5%;
  bottom: -8%;
  width: 460px;
  aspect-ratio: 1;
  background: var(--logo-green);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 125px 0 24px;
  background: #e8eadf;
}

.site-footer::before {
  position: absolute;
  z-index: 3;
  top: -1px;
  right: -5%;
  left: -5%;
  height: 62px;
  background: var(--ink);
  border-radius: 0 0 48% 52% / 0 0 100% 100%;
  content: "";
}

.scene-decor--footer-star { top: 20%; right: 5%; }
.scene-decor--footer-dot { top: 31%; left: 4%; }
.scene-decor--footer-scribble { right: -2%; bottom: 2%; width: min(28vw, 390px); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.12fr 1.08fr 0.78fr;
  gap: clamp(28px, 3.4vw, 52px);
}

.footer-brand img {
  width: 200px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 300px;
  color: var(--ink-soft);
}

.footer-brand .footer-license {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-label {
  margin: 12px 0 16px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid > div > p:not(.footer-label) {
  margin: 0 0 13px;
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-style: normal;
}

.footer-grid > div > a {
  display: block;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-legal {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 61, 67, 0.15);
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 980px);
    --header-height: 80px;
  }

  .brand {
    width: 158px;
  }

  .brand img {
    height: 58px;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 460ms var(--motion-spring);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 40;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    min-height: 100dvh;
    max-height: 100dvh;
    align-content: center;
    justify-items: start;
    gap: 22px;
    padding: 90px max(26px, calc((100vw - 900px) / 2));
    transform: translateY(-105%);
    background: var(--cream);
    font-size: clamp(1.8rem, 5vw, 3.3rem);
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    transition: transform 620ms var(--motion-spring), opacity 460ms var(--motion), visibility 460ms var(--motion);
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav .button {
    margin-top: 10px;
    font-size: 1rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    z-index: 3;
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 9.5vw, 6rem);
  }

  .hero h1 span {
    font-size: 0.72em;
  }

  .hero-art {
    min-height: 0;
  }

  .hero-art img {
    /* In the stacked layout, the photo must reserve its own height. */
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none !important;
  }

  .section-heading--split,
  .why-grid,
  .family-facts__grid,
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .scene-word {
    font-size: clamp(5.8rem, 16vw, 9rem);
  }

  .visit-steps li {
    min-height: 290px;
    flex-direction: column;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .experience-intro {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .why-photo {
    min-height: 590px;
  }

  .why-copy {
    max-width: 800px;
  }

  .family-facts__intro {
    position: relative;
    top: auto;
    max-width: 800px;
  }

  .why-list li {
    grid-template-columns: 48px 0.7fr 1fr;
  }

  .tour-copy {
    max-width: 820px;
  }

  .tour-process {
    padding-right: 0;
  }

  .tour-process__arrow {
    position: static;
    display: inline-block;
    margin: 16px 0 8px 8px;
    transform: rotate(90deg);
    transform-origin: center;
  }

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

}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body.home-page {
    padding-bottom: 0;
  }

  .hero-sun,
  .hero-doodle {
    display: none;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 82px 0;
  }

  .scene-word {
    font-size: clamp(4.4rem, 23vw, 7rem);
    letter-spacing: -0.1em;
  }

  .decor-star {
    width: 48px;
  }

  .decor-blob {
    width: 128px;
    height: 94px;
    border-width: 2px;
  }

  .scene-decor--visit-scribble,
  .scene-decor--play-scribble,
  .scene-decor--why-scribble,
  .scene-decor--tour-scribble,
  .scene-decor--footer-scribble {
    width: 190px;
    opacity: 0.62;
  }

  .visit-path {
    min-height: auto;
  }

  .visit-intro,
  .reviews-intro {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .family-facts__grid,
  .tour-grid {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .visit-photo,
  .reviews-photo {
    min-height: 360px;
    transform: none;
  }

  .scene-atmosphere--visit .scene-word,
  .scene-atmosphere--experience .scene-word,
  .scene-atmosphere--why .scene-word,
  .scene-atmosphere--reviews .scene-word,
  .scene-atmosphere--facts .scene-word,
  .scene-atmosphere--tour .scene-word {
    top: 4%;
    left: -2%;
    right: auto;
  }

  .scene-decor--visit-star,
  .scene-decor--play-star,
  .scene-decor--why-star,
  .scene-decor--reviews-star,
  .scene-decor--facts-star,
  .scene-decor--tour-star {
    top: 4%;
    right: 3%;
  }

  .scene-decor--visit-blob,
  .scene-decor--play-blob,
  .scene-decor--why-blob,
  .scene-decor--reviews-blob,
  .scene-decor--facts-blob {
    top: 15%;
    right: -17%;
    left: auto;
  }

  .scene-decor--visit-dot-two,
  .scene-decor--play-dot-one,
  .scene-decor--why-dot-one {
    top: 18%;
    left: 76%;
  }

  h2 {
    font-size: clamp(2.2rem, 9.6vw, 3.25rem);
  }

  .hero {
    min-height: auto;
    padding: 44px 0 122px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .hero h1 span {
    font-size: 0.7em;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-art {
    min-height: 0;
    margin-top: 10px;
  }

  [data-parallax] {
    transform: none !important;
  }

  .hero-art img {
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-art__caption {
    right: 2%;
    bottom: -10px;
    max-width: 220px;
    padding: 13px 15px;
    font-size: 0.72rem;
  }

  .hero-art__caption span {
    font-size: 0.85rem;
  }

  .trust-ribbon__inner {
    min-height: 70px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-ribbon p {
    display: none;
    font-size: 0.9rem;
  }

  .trust-ribbon p:first-child {
    display: block;
  }

  .section-heading--split {
    gap: 24px;
  }

  .visit-steps {
    display: flex;
    margin: 50px -16px 32px;
    padding: 0 16px 14px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .visit-steps li,
  .visit-steps li:nth-child(2) {
    --layout-y: 0px;
    min-width: min(82vw, 330px);
    min-height: 260px;
    scroll-snap-align: start;
  }

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

  .experience-intro {
    position: relative;
    top: auto;
    padding-top: 92px;
  }

  .story-card {
    min-height: 370px;
    padding: 34px 28px;
    border-radius: 30px 14px 28px 18px;
  }

  .story-card h3 {
    font-size: 2.05rem;
  }

  .story-card--photo {
    min-height: 460px;
    padding: 0;
  }

  .story-card__overlay {
    padding: 34px 28px;
  }

  .shape-cluster {
    opacity: 0.18;
  }

  .why-photo {
    min-height: 410px;
    margin: 0 6px 32px;
  }

  .why-photo::before {
    inset: -16px 18px 18px -14px;
  }

  .why-photo__badge {
    right: -10px;
    bottom: 24px;
    width: 110px;
    border-width: 6px;
  }

  .why-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .why-list p {
    grid-column: 2;
  }

  .family-facts__grid {
    gap: 42px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review-card,
  .review-card:nth-child(2) {
    --layout-y: 0px;
    min-height: 280px;
  }

  .family-facts summary {
    padding: 23px 58px 23px 22px;
  }

  .family-facts summary::after {
    right: 20px;
  }

  .family-facts details p {
    padding: 0 22px 24px;
  }

  .contact-cards > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-cards strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .tour-form-card {
    padding: 28px 20px 30px;
    border-radius: 30px 12px 28px 16px;
  }

  .tour-form-card__header {
    align-items: flex-start;
  }

  .tour-form-card__header > span {
    width: 48px;
  }

  .tour-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: 22px 12px 20px 14px;
  }

  .tour-dialog__header {
    gap: 14px;
    padding: 16px 14px 14px 20px;
  }

  .tour-dialog__header h2 {
    max-width: 270px;
    font-size: clamp(1.3rem, 7vw, 1.72rem);
  }

  .tour-dialog__close {
    width: 44px;
  }

  .tour-dialog__booking {
    margin: 8px;
    border-radius: 15px 8px 14px 9px;
  }

  .tour-dialog__loading {
    bottom: 58px;
  }

  .tour-dialog__fallback {
    padding: 10px 12px 12px;
    font-size: 0.72rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-success {
    min-height: 510px;
  }

  .form-success__actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    padding-top: 104px;
  }

  .scene-decor--footer-star {
    top: 10%;
    right: 5%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-tour-bar {
    position: fixed;
    z-index: 35;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--button-orange);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 15px;
    box-shadow: 0 12px 34px rgba(16, 61, 67, 0.28);
    color: var(--ink);
    font-family: var(--body);
    font-weight: 800;
    text-decoration: none;
    transition:
      opacity 420ms var(--motion),
      transform 520ms var(--motion-spring);
  }

  .mobile-tour-bar.is-hidden {
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
  }

  body.menu-open .mobile-tour-bar {
    display: none;
  }
}

/* Show the existing campus photo at its full width while a new shot is pending. */
.home-page .why-photo {
  min-height: 0;
}

.home-page .why-photo img {
  position: relative;
  height: auto;
  object-fit: contain;
}

/* Shared header and paper-cut motion. The full-page grain is disabled. */
body::after {
  position: fixed;
  z-index: 24;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: none;
  mix-blend-mode: multiply;
  opacity: 0.025;
}

.section {
  padding: clamp(104px, 9vw, 144px) 0;
}

.eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 12px 5px;
  background: rgba(40, 122, 73, 0.075);
  border-radius: 999px;
  letter-spacing: 0.18em;
}

.button__icon {
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 0.9em;
  transition: transform 560ms var(--motion-spring), background-color 420ms var(--motion);
}

.button:hover .button__icon,
.mobile-tour-bar:hover .button__icon {
  transform: translate3d(3px, -2px, 0) scale(1.08);
  background: rgba(255, 255, 255, 0.24);
}

.site-header {
  --brand-offset: 188px;
  --compact-brand-width: 0px;
  --display-brand-opacity: 1;
  --display-brand-scale: 1;
  --display-brand-y: 0px;
  --compact-brand-opacity: 0;
  --compact-brand-y: 8px;
  --header-y: 0px;
  --header-scale: 1;
  top: 16px;
  width: min(1320px, calc(100vw - 32px));
  min-height: 76px;
  margin: 16px auto 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  transform: translateY(var(--header-y)) scale(var(--header-scale));
  transition: background-color 420ms var(--motion), box-shadow 520ms var(--motion);
}

.header-inner {
  width: calc(100% - var(--brand-offset));
  min-height: 76px;
  margin-left: var(--brand-offset);
  padding: 8px 10px 8px 20px;
  background: rgba(255, 253, 247, 0.86);
  border-radius: 999px;
  box-shadow: 0 16px 52px rgba(16, 61, 67, 0.09), inset 0 0 0 1px rgba(16, 61, 67, 0.06);
  backdrop-filter: blur(20px) saturate(145%);
}

.site-header.is-scrolled {
  box-shadow: none;
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 20px 64px rgba(16, 61, 67, 0.14), inset 0 0 0 1px rgba(16, 61, 67, 0.08);
}

.brand {
  width: 164px;
}

.brand img {
  height: 56px;
}

.brand--display {
  position: absolute;
  z-index: 2;
  top: -8px;
  left: 0;
  display: grid;
  width: 178px;
  min-height: 98px;
  padding: 8px 16px;
  place-items: center;
  transform: translateY(var(--display-brand-y)) scale(var(--display-brand-scale));
  transform-origin: 45% 50%;
  background: rgba(255, 253, 247, 0.96);
  border-radius: 38px 18px 42px 22px;
  box-shadow: 0 18px 50px rgba(16, 61, 67, 0.12), inset 0 0 0 1px rgba(16, 61, 67, 0.06);
  opacity: var(--display-brand-opacity);
  will-change: opacity, transform;
}

.brand--display img {
  height: 78px;
  object-position: center;
}

.brand--compact {
  width: var(--compact-brand-width);
  overflow: hidden;
  transform: translateY(var(--compact-brand-y));
  opacity: var(--compact-brand-opacity);
  will-change: width, opacity, transform;
}

.brand--compact img {
  min-width: 112px;
  height: 50px;
}

.primary-nav > a:not(.button)::after {
  bottom: -5px;
  height: 2px;
}

.hero {
  margin-top: -92px;
  padding-top: clamp(148px, 13vw, 190px);
}

.hero-art {
  filter: none;
}

.hero-art__caption,
.visit-steps li,
.story-card,
.why-photo,
.tour-form-card {
  box-shadow:
    0 30px 80px rgba(16, 61, 67, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.48),
    0 0 0 9px rgba(16, 61, 67, 0.055),
    inset 0 1px rgba(255, 255, 255, 0.34);
}

.visit-steps li,
.story-card,
.why-photo,
.tour-form-card,
.contact-cards > div {
  transition: transform 700ms var(--motion-spring), box-shadow 620ms var(--motion), background-color 460ms var(--motion);
}

.visit-steps li:hover,
.story-card:hover,
.why-photo:hover,
.tour-form-card:hover {
  transform: translate3d(var(--tilt-x, 0), calc(var(--tilt-y, 0) - 6px), 0) rotate(var(--tilt-rotate, 0deg));
  box-shadow:
    0 42px 100px rgba(16, 61, 67, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.62),
    0 0 0 9px rgba(16, 61, 67, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.42);
}

.story-card--photo img,
.story-card__portrait img,
.outdoor-story__photo > img,
.why-photo img,
.hero-art img {
  transition: transform 900ms var(--motion-spring), filter 700ms var(--motion);
}

.story-card--photo:hover img,
.outdoor-story__photo:hover > img,
.why-photo:hover img {
  transform: scale(1.035);
}

.visit-path {
  min-height: 810px;
}

.visit-steps {
  margin-top: 64px;
  gap: 28px;
}

.visit-steps li:nth-child(1) { transform-origin: 15% 100%; }
.visit-steps li:nth-child(2) { --layout-y: 20px; transform-origin: 50% 100%; }
.visit-steps li:nth-child(3) { transform-origin: 85% 100%; }

.experience-layout {
  gap: clamp(64px, 8vw, 118px);
}

.experience-intro {
  top: calc(var(--header-height) + 42px);
  padding-top: clamp(92px, 9vw, 132px);
}

.story-stack {
  gap: 42px;
  padding: 26px 10px 34px;
}

.story-card:nth-child(1) { --rest-rotate: -1.1deg; transform-origin: 75% 100%; }
.story-card:nth-child(2) { --rest-rotate: 0.8deg; margin-left: -24px; }
.story-card:nth-child(3) { --rest-rotate: -0.7deg; margin-left: 18px; }

.why-grid {
  gap: clamp(66px, 9vw, 128px);
  padding-top: clamp(86px, 9vw, 132px);
}

.tour-grid {
  gap: clamp(64px, 8vw, 120px);
  padding-top: clamp(84px, 8vw, 124px);
}

.tour-form-card {
  background: linear-gradient(145deg, #fffaf0, #fff4da);
  border-radius: 48px 28px 46px 30px;
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.2),
    0 0 0 9px rgba(255, 255, 255, 0.1),
    0 0 0 10px rgba(255, 255, 255, 0.13),
    inset 0 1px rgba(255, 255, 255, 0.6);
}

.field input,
.field select,
.field textarea {
  border: 0;
  border-radius: 17px;
  box-shadow: inset 0 0 0 1px rgba(16, 61, 67, 0.16), inset 0 2px 6px rgba(16, 61, 67, 0.035);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(16, 61, 67, 0.26), 0 8px 22px rgba(16, 61, 67, 0.06);
}

.contact-cards > div {
  padding: 18px 20px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.contact-cards > div:last-child {
  border: 0;
}

.site-footer {
  padding-top: 148px;
  background: #eeeade;
}

.lottie-orbit {
  overflow: hidden;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.lottie-orbit svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.lottie-orbit--story {
  top: 14%;
  right: -3%;
  bottom: auto;
  width: min(27vw, 390px);
  aspect-ratio: 1;
}

.lottie-orbit--drawing {
  bottom: 2%;
  left: -5%;
  width: min(25vw, 340px);
  aspect-ratio: 1;
  opacity: 0.16;
  transform: rotate(8deg);
}

.lottie-orbit--painting {
  right: -4%;
  bottom: 1%;
  width: min(27vw, 390px);
  aspect-ratio: 1;
  opacity: 0.18;
}

.scene-motif {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

.scene-motif--doorway {
  top: 9%;
  right: 7%;
  width: 94px;
  height: 146px;
  border: 9px solid rgba(16, 61, 67, 0.12);
  border-bottom: 0;
  border-radius: 52px 52px 0 0;
}

.scene-motif--doorway::after {
  position: absolute;
  right: 16px;
  bottom: 42px;
  width: 10px;
  aspect-ratio: 1;
  background: var(--logo-green);
  border-radius: 50%;
  content: "";
}

.scene-motif--ticket {
  right: 17%;
  bottom: 9%;
  width: 130px;
  height: 76px;
  background: rgba(123, 74, 145, 0.12);
  border-radius: 18px;
  box-shadow: inset 0 0 0 3px rgba(123, 74, 145, 0.22);
}

.scene-motif--ticket::before,
.scene-motif--ticket::after {
  position: absolute;
  top: 26px;
  width: 24px;
  aspect-ratio: 1;
  background: #fffdf9;
  border-radius: 50%;
  content: "";
}

.scene-motif--ticket::before { left: -12px; }
.scene-motif--ticket::after { right: -12px; }
.scene-motif--ticket i { position: absolute; inset: 18px 42px; border-left: 3px dashed rgba(123, 74, 145, 0.3); }

.scene-motif--route {
  left: 4%;
  bottom: 7%;
  width: 170px;
  height: 52px;
  border-top: 5px dotted rgba(40, 122, 73, 0.28);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.scene-motif--blocks {
  right: 10%;
  bottom: 5%;
  width: 126px;
  height: 112px;
}

.scene-motif--blocks i {
  position: absolute;
  bottom: 0;
  display: block;
  width: 48px;
  aspect-ratio: 1;
  background: rgba(255, 203, 79, 0.45);
  border-radius: 10px 4px 12px 5px;
}

.scene-motif--blocks i:nth-child(2) { right: 12px; width: 58px; background: rgba(123, 74, 145, 0.25); transform: rotate(8deg); }
.scene-motif--blocks i:nth-child(3) { right: 35px; bottom: 48px; width: 43px; background: rgba(40, 122, 73, 0.28); transform: rotate(-7deg); }

.scene-motif--crayon-loop {
  top: 32%;
  left: 3%;
  width: 120px;
  aspect-ratio: 1;
  border: 6px solid rgba(61, 155, 104, 0.17);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
}

.scene-motif--sun-ring {
  top: 11%;
  left: 44%;
  width: 84px;
  aspect-ratio: 1;
  border: 12px solid rgba(255, 203, 79, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(255, 203, 79, 0.1);
}

.scene-motif--roofline {
  top: 16%;
  left: 5%;
  width: 150px;
  height: 86px;
  border-top: 8px solid rgba(16, 61, 67, 0.12);
  border-left: 8px solid transparent;
  transform: skewY(-23deg) rotate(-4deg);
}

.scene-motif--sprout {
  right: 8%;
  bottom: 5%;
  width: 96px;
  height: 132px;
  border-left: 7px solid rgba(61, 155, 104, 0.24);
  border-radius: 50%;
}

.scene-motif--sprout i {
  position: absolute;
  display: block;
  width: 50px;
  height: 30px;
  background: rgba(61, 155, 104, 0.2);
  border-radius: 70% 10% 70% 10%;
}

.scene-motif--sprout i:first-child { top: 30px; left: -2px; transform: rotate(-16deg); }
.scene-motif--sprout i:last-child { top: 63px; left: -48px; transform: scaleX(-1) rotate(-12deg); }

.scene-motif--arrow-path {
  top: 18%;
  left: 43%;
  width: 190px;
  height: 90px;
  border-bottom: 5px dotted rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.scene-motif--arrow-path::after {
  position: absolute;
  right: -4px;
  bottom: -10px;
  width: 18px;
  aspect-ratio: 1;
  border-right: 5px solid rgba(255, 255, 255, 0.22);
  border-bottom: 5px solid rgba(255, 255, 255, 0.22);
  content: "";
  transform: rotate(-40deg);
}

.scene-motif--mail {
  right: 4%;
  bottom: 13%;
  width: 112px;
  height: 78px;
  background: rgba(255, 203, 79, 0.16);
  border-radius: 14px 6px 16px 8px;
  box-shadow: inset 0 0 0 4px rgba(255, 203, 79, 0.25);
}

.scene-motif--mail::after {
  position: absolute;
  inset: 17px 15px 23px;
  border-right: 4px solid rgba(255, 203, 79, 0.26);
  border-bottom: 4px solid rgba(255, 203, 79, 0.26);
  content: "";
  transform: rotate(45deg);
}

.scene-motif--footer-hills {
  right: 0;
  bottom: -90px;
  left: 0;
  height: 210px;
  background: rgba(61, 155, 104, 0.09);
  border-radius: 50% 48% 0 0 / 60% 54% 0 0;
}

.scene-motif--footer-tree {
  right: 7%;
  bottom: 5%;
  width: 62px;
  height: 100px;
  background: rgba(16, 61, 67, 0.22);
  border-radius: 48% 52% 36% 64%;
}

.scene-motif--footer-tree i {
  position: absolute;
  right: 26px;
  bottom: -34px;
  width: 10px;
  height: 54px;
  background: rgba(16, 61, 67, 0.4);
}

body [data-reveal].is-scroll-scrubbed,
body .scene-decor.is-scroll-scrubbed,
body .scene-word.is-scroll-scrubbed,
body .scene-motif.is-scroll-scrubbed {
  opacity: calc(var(--scrub-opacity, 0) * var(--scrub-max-opacity, 1)) !important;
  transform: translate3d(
      calc(var(--scrub-x, 0px) + var(--tilt-x, 0px)),
      calc(var(--scrub-y, 0px) + var(--layout-y, 0px) + var(--tilt-y, 0px) + var(--tilt-lift, 0px)),
      0
    )
    scale(var(--scrub-scale, 1))
    rotate(calc(var(--scrub-rotate, 0deg) + var(--rest-rotate, 0deg) + var(--tilt-rotate, 0deg))) !important;
}

.cursor-follower {
  position: fixed;
  z-index: 41;
  top: 0;
  left: 0;
  display: none;
  width: 18px;
  height: 18px;
  transform: translate3d(calc(var(--cursor-x, -100px) + 14px), calc(var(--cursor-y, -100px) + 14px), 0) rotate(-4deg);
  border: 2px solid rgba(40, 122, 73, 0.72);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 2px 3px 0 rgba(123, 74, 145, 0.15);
  pointer-events: none;
  overflow: hidden;
  transition: width 460ms var(--motion-spring), height 460ms var(--motion-spring), background-color 360ms var(--motion), border-color 360ms var(--motion), border-radius 460ms var(--motion-spring), box-shadow 360ms var(--motion), transform 140ms var(--motion);
}

.cursor-follower span {
  display: flex;
  width: 138px;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 180ms ease-out 80ms;
}

.cursor-follower span b {
  color: var(--logo-green-dark);
  font-size: 1rem;
}

.cursor-follower.is-interactive {
  width: 138px;
  height: 42px;
  transform: translate3d(calc(var(--cursor-x, -100px) + 16px), calc(var(--cursor-y, -100px) + 18px), 0) rotate(-2deg);
  border-color: rgba(40, 122, 73, 0.72);
  background: var(--paper);
  border-radius: 16px 24px 18px 22px;
  box-shadow: 4px 5px 0 rgba(255, 203, 79, 0.72), 7px 8px 0 rgba(123, 74, 145, 0.12);
}

.cursor-follower.is-interactive span {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-follower { display: block; }
}

@media (hover: none), (pointer: coarse), (max-width: 1100px) {
  .cursor-follower { display: none !important; }
}

@media (max-width: 1100px) {
  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
    margin-top: 10px;
  }

  .header-inner {
    min-height: 68px;
    padding: 5px 8px 5px 16px;
  }

  .brand--display {
    top: -6px;
    width: 146px;
    min-height: 82px;
    padding: 6px 12px;
    border-radius: 30px 14px 34px 18px;
  }

  .brand--display img {
    height: 67px;
  }

  .brand--compact img {
    height: 46px;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    padding-top: 120px;
    background: rgba(255, 248, 232, 0.985);
    backdrop-filter: blur(28px) saturate(130%);
  }

  .primary-nav > a {
    transform: translateY(34px);
    opacity: 0;
    transition: transform 680ms var(--motion-spring), opacity 480ms var(--motion);
  }

  .primary-nav.is-open > a {
    transform: translateY(0);
    opacity: 1;
  }

  .primary-nav.is-open > a:nth-child(1) { transition-delay: 100ms; }
  .primary-nav.is-open > a:nth-child(2) { transition-delay: 150ms; }
  .primary-nav.is-open > a:nth-child(3) { transition-delay: 200ms; }
  .primary-nav.is-open > a:nth-child(4) { transition-delay: 250ms; }
  .primary-nav.is-open > a:nth-child(5) { transition-delay: 300ms; }

  .hero { margin-top: -88px; padding-top: 148px; }
  .experience-intro { padding-top: 96px; }
}

@media (max-width: 760px) {
  .brand--display {
    width: 128px;
    min-height: 78px;
    padding: 5px 10px;
  }

  .brand--display img {
    height: 62px;
  }

  .brand--compact img {
    min-width: 102px;
    height: 42px;
  }

  .section { padding: 88px 0; }
  .hero { margin-top: -82px; padding: 124px 0 118px; }
  .hero-landmark {
    --hero-landmark-opacity: 0.3;
    right: -50%;
    top: auto;
    bottom: 80px;
    width: 135vw;
  }

  .hero-sun {
    top: 26%;
    right: -2%;
    width: 166px;
  }

  .hero-heritage {
    bottom: 60px;
    width: calc(100vw - 32px);
    gap: 10px;
    font-size: 0.72rem;
    white-space: normal;
  }

  .hero-heritage::before {
    display: none;
  }

  .section-landmark--visit {
    right: -58%;
    bottom: 8%;
    width: 142vw;
    opacity: 0.1;
  }

  .section-landmark--experience {
    bottom: 4%;
    left: -52%;
    width: 150vw;
    opacity: 0.085;
  }

  .section-landmark--why {
    top: 23%;
    right: -60%;
    width: 154vw;
    opacity: 0.095;
  }
  .why-grid,
  .tour-grid,
  .experience-intro { padding-top: 76px; }

  .visit-steps li,
  .story-card,
  .why-photo,
  .tour-form-card {
    box-shadow: 0 24px 54px rgba(16, 61, 67, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.46), 0 0 0 6px rgba(16, 61, 67, 0.05);
  }

  .story-card:nth-child(1),
  .story-card:nth-child(2),
  .story-card:nth-child(3) {
    --rest-rotate: 0deg;
    margin-left: 0;
  }

  .story-card--split {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 30px 30px;
  }

  .story-card__portrait {
    width: calc(100% - 8px);
    height: 390px;
    justify-self: center;
    transform: rotate(1deg);
  }

  .story-card__portrait figcaption {
    right: 10px;
    bottom: 16px;
  }

  .outdoor-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .outdoor-story__photo {
    min-height: 560px;
  }

  .outdoor-story__photo > img {
    object-position: 50% 55%;
  }

  .story-card__outdoor-copy {
    max-width: none;
    margin: 0;
    padding: 26px 24px;
  }

  .lottie-orbit--story { top: 9%; right: -24%; width: 64vw; }
  .lottie-orbit--drawing { left: -28%; width: 62vw; }
  .lottie-orbit--painting { right: -28%; width: 68vw; }
  .scene-motif--doorway { right: -18px; transform: scale(0.72); }
  .scene-motif--ticket { right: -28px; bottom: 4%; transform: scale(0.72); }
  .scene-motif--route,
  .scene-motif--roofline,
  .scene-motif--arrow-path { display: none; }
  .scene-motif--blocks { right: -20px; bottom: 2%; transform: scale(0.72); }
  .scene-motif--crayon-loop { left: -45px; }
  .scene-motif--sun-ring { top: 7%; left: auto; right: 9%; transform: scale(0.7); }
  .scene-motif--sprout { right: -32px; transform: scale(0.7); }
  .scene-motif--mail { right: -42px; bottom: 5%; transform: scale(0.68); }

  .mobile-tour-bar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 58px;
    padding: 7px 9px 7px 22px;
    justify-content: space-between;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 20px 48px rgba(16, 61, 67, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  }

  .why-grid {
    gap: 30px;
    padding-top: 28px;
  }

  .why-photo {
    margin-bottom: 0;
  }

  .footer-grid a {
    display: flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
  }

  .footer-bottom a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  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;
  }

  body [data-reveal].is-scroll-scrubbed,
  body .scene-decor.is-scroll-scrubbed,
  body .scene-word.is-scroll-scrubbed,
  body .scene-motif.is-scroll-scrubbed {
    opacity: var(--scrub-max-opacity, 1) !important;
    transform: translateY(var(--layout-y, 0px)) !important;
  }

  .decor-scribble path {
    stroke-dashoffset: 0;
  }

  [data-parallax] {
    transform: none !important;
  }

  .hero-landmark,
  .hero-sun,
  .hero-art {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-landmark {
    opacity: var(--hero-landmark-opacity) !important;
  }

  [data-decor-drift] {
    transform: none !important;
  }

  .cursor-follower {
    display: none !important;
  }
}

/* Launch polish v1: keep atmosphere contained and mobile content concise. */
.illustrated-scene,
.site-footer.illustrated-scene {
  isolation: isolate;
  overflow: clip;
}

.illustrated-scene > .shell,
.site-footer.illustrated-scene > .shell {
  position: relative;
  z-index: 3;
}

.scene-atmosphere {
  z-index: 0;
  contain: paint;
  overflow: clip;
}

.section-landmark,
.lottie-orbit,
.illustrated-scene > .tour-blob {
  z-index: 0;
  pointer-events: none;
}

.scene-word,
.section-landmark,
.scene-decor,
.scene-motif,
.lottie-orbit,
.tour-blob {
  display: none !important;
}

/* A few small margin accents retain playfulness without veiling the content. */
.home-page .scene-atmosphere > .scene-decor:nth-child(2),
.home-page .scene-atmosphere > .scene-decor:nth-child(3),
.home-page .scene-atmosphere > .scene-decor:has(.decor-scribble) {
  display: block !important;
  max-width: 76px;
}

.home-page .scene-atmosphere > .scene-decor:nth-child(2) {
  inset: 28px 20px auto auto;
}

.home-page .scene-atmosphere > .scene-decor:nth-child(3) {
  inset: auto auto 28px 20px;
}

.home-page .scene-atmosphere > .scene-decor:has(.decor-scribble) {
  inset: auto 20px 24px auto;
  width: 76px;
}

.home-page .scene-atmosphere .decor-star {
  width: 30px;
}

.home-page .scene-atmosphere .decor-dot {
  width: 12px;
}

.home-page .scene-atmosphere .decor-scribble path {
  stroke-width: 2.5;
  stroke-dashoffset: 0;
}

.experience-intro,
.why-grid,
.family-facts__grid,
.tour-grid {
  padding-top: 0;
}

.scene-word {
  max-width: calc(100% - 48px);
  font-size: clamp(5.5rem, 9vw, 8.5rem);
  letter-spacing: -0.065em;
}

.scene-atmosphere--experience .scene-word,
.scene-atmosphere--visit .scene-word,
.scene-atmosphere--tour .scene-word {
  top: clamp(26px, 3.5vw, 58px);
  left: max(24px, calc((100vw - 1380px) / 2));
}

.scene-atmosphere--why .scene-word,
.scene-atmosphere--reviews .scene-word {
  top: clamp(24px, 3vw, 50px);
  right: max(24px, calc((100vw - 1380px) / 2));
}

.scene-atmosphere--facts .scene-word {
  top: clamp(24px, 3vw, 50px);
  left: max(24px, calc((100vw - 1380px) / 2));
}

main > section[id] {
  scroll-margin-top: calc(var(--header-height) + 26px);
}

@media (max-width: 1100px) {
  .scene-word {
    max-width: calc(100% - 36px);
    font-size: clamp(5rem, 12vw, 7.25rem);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body.home-page {
    padding-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .illustrated-scene .scene-atmosphere,
  .site-footer .scene-atmosphere {
    display: none !important;
  }

  .home-page .illustrated-scene .scene-atmosphere {
    display: block !important;
  }

  .home-page .scene-atmosphere > .scene-decor:nth-child(2) {
    inset: 14px 14px auto auto;
  }

  .home-page .scene-atmosphere > .scene-decor:nth-child(3) {
    inset: auto auto 14px 14px;
  }

  .home-page .scene-atmosphere > .scene-decor:has(.decor-scribble) {
    inset: auto 14px 12px auto;
    width: 48px;
  }

  .home-page .scene-atmosphere .decor-star {
    width: 22px;
  }

  .experience-layout,
  .why-grid,
  .family-facts__grid,
  .tour-grid {
    gap: 36px;
    padding-top: 0;
  }

  .experience-intro {
    top: auto;
    padding-top: 0;
  }

  body [data-reveal].is-scroll-scrubbed {
    opacity: 1 !important;
    transform: translateY(var(--layout-y, 0px)) !important;
  }

  .story-stack {
    display: grid;
    margin-inline: -16px;
    padding: 8px 16px 24px;
    grid-auto-columns: min(84vw, 330px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--logo-green) transparent;
  }

  .story-stack:focus-visible,
  .review-grid:focus-visible,
  .visit-steps:focus-visible {
    outline: 3px solid var(--logo-green-dark);
    outline-offset: 4px;
  }

  .story-card,
  .story-card:nth-child(1),
  .story-card:nth-child(2) {
    min-width: 0;
    min-height: 0;
    margin-left: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .story-card--split {
    display: flex;
    min-height: 600px;
    flex-direction: column;
    padding: 32px 24px 24px;
  }

  .story-card__portrait {
    width: 100%;
    height: 230px;
    margin-top: auto;
    transform: none;
  }

  .story-card--photo {
    min-height: 600px;
  }

  .outdoor-story {
    gap: 22px;
  }

  .outdoor-story__photo {
    min-height: 360px;
  }

  .why-copy {
    order: 1;
  }

  .why-photo {
    min-height: 340px;
    margin: 0 4px 12px;
    order: 2;
  }

  .why-photo__badge {
    width: 96px;
  }

  .reviews-intro {
    gap: 32px;
  }

  .reviews-photo {
    min-height: 320px;
  }

  .review-grid {
    display: grid;
    margin-inline: -16px;
    padding: 8px 16px 24px;
    grid-auto-columns: min(84vw, 330px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--logo-green) transparent;
  }

  .review-card,
  .review-card:nth-child(2) {
    min-width: 0;
    min-height: 270px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .review-card blockquote {
    margin-bottom: 32px;
  }

  .family-facts__grid {
    gap: 34px;
  }

  .visit-intro {
    gap: 30px;
  }

  .visit-copy {
    order: 1;
  }

  .visit-photo {
    min-height: 330px;
    order: 2;
  }

  .visit-steps {
    margin-top: 36px;
  }

  .home-page .mobile-scroll-hint {
    display: block;
    margin: 24px 0 6px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.035em;
  }

  .mobile-scroll-hint + .story-stack,
  .mobile-scroll-hint + .review-grid,
  .mobile-scroll-hint + .visit-steps {
    margin-top: 0;
  }

  .tour .contact-cards {
    display: none;
  }

  .tour-grid {
    gap: 40px;
  }

  .tour-form-card {
    padding: 26px 18px 28px;
  }

  .site-footer {
    padding-top: 72px;
  }

  .mobile-tour-bar {
    display: none !important;
  }

  .legal-main {
    padding: 42px 0;
  }

  .legal-document {
    width: calc(100vw - 32px);
    padding: 28px 20px;
  }

  .legal-document h1 {
    font-size: clamp(2.55rem, 13vw, 3.4rem);
  }

  .legal-document h2 {
    margin-top: 34px;
  }
}

.mobile-scroll-hint {
  display: none;
}
