:root {
  --ink: #213c3a;
  --muted: #667875;
  --line: #dce7e1;
  --paper: #fffaf1;
  --white: #fffef9;
  --mint: #e2f2e9;
  --green: #2d7768;
  --green-dark: #1e564e;
  --yellow: #f6d267;
  --orange: #f2a45f;
  --blue-soft: #ecf3f8;
  --shadow: 0 22px 60px rgba(31, 69, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid rgba(220, 231, 225, 0.8);
  backdrop-filter: blur(18px);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange));
  transform-origin: left;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(45, 119, 104, 0.2);
}

.header-cta {
  padding: 0 20px;
  font-size: 14px;
}

.primary-button {
  padding: 0 28px;
}

.secondary-button {
  padding: 0 24px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 6vw, 84px) 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 18%;
  right: -120px;
  width: 250px;
  height: 250px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.28;
  transform: translate3d(calc(var(--hero-progress, 0) * -60px), calc(var(--hero-progress, 0) * 120px), 0) scale(calc(1 + var(--hero-progress, 0) * 0.45));
}

.sample-badge {
  position: absolute;
  top: 26px;
  left: clamp(18px, 6vw, 84px);
  padding: 8px 14px;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(45, 119, 104, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.motion-hero .hero-copy {
  transform: translate3d(0, calc(var(--hero-progress, 0) * -44px), 0);
  transition: transform 120ms linear;
}

.motion-hero .hero-visual {
  transform: translate3d(0, calc(var(--hero-progress, 0) * 64px), 0) scale(calc(1 - var(--hero-progress, 0) * 0.08));
  transition: transform 120ms linear;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: Avenir, "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-meta li {
  padding: 8px 14px;
  background: rgba(255, 254, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  padding: 18px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotateX(calc(var(--hero-progress, 0) * 5deg)) rotateZ(calc(var(--hero-progress, 0) * -2deg));
  transform-origin: center;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  min-width: 220px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.floating-card strong {
  font-size: 20px;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 84px);
}

.intro-section,
.program-section,
.access-section {
  background: var(--white);
}

.split,
.access-grid,
.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(46px) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cinematic-section {
  position: relative;
  min-height: 260vh;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 12%, rgba(246, 210, 103, 0.24), transparent 30%),
    linear-gradient(150deg, #09221f 0%, #173f39 48%, #061716 100%);
}

.cinematic-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(60px, 8vw, 110px) clamp(18px, 6vw, 84px);
  overflow: hidden;
}

.cinematic-sticky::before {
  position: absolute;
  right: -12vw;
  bottom: -28vh;
  width: clamp(420px, 58vw, 780px);
  height: clamp(420px, 58vw, 780px);
  content: "";
  background: radial-gradient(circle, rgba(255, 254, 249, 0.13), transparent 68%);
  border-radius: 50%;
  transform: translate3d(0, calc(var(--cinema-progress, 0) * -140px), 0);
}

.cinematic-copy,
.highlight-stage {
  position: relative;
}

.cinematic-copy h2 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.06;
}

.cinematic-copy p:last-child {
  max-width: 520px;
  color: rgba(255, 254, 249, 0.72);
  font-size: 18px;
}

.highlight-stage {
  min-height: min(72vh, 660px);
  perspective: 1200px;
}

.cinematic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
  opacity: 0.42;
  transform: scale(calc(1.06 - var(--cinema-progress, 0) * 0.04));
  filter: saturate(0.92) brightness(0.8);
}

.highlight-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(180deg, rgba(14, 42, 38, 0.18), rgba(8, 24, 22, 0.54)),
    rgba(255, 254, 249, 0.08);
  border: 1px solid rgba(255, 254, 249, 0.18);
  border-radius: 42px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate3d(40px, 70px, -120px) rotateX(8deg) scale(0.9);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(22px);
}

.photo-story-section {
  background:
    linear-gradient(180deg, #fffef9 0%, #f3faf8 100%);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: end;
}

.photo-panel {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.photo-panel-large {
  min-height: 590px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    filter 500ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-panel:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.07);
}

.photo-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 24, 21, 0.74));
}

.photo-panel figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.photo-panel figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: Avenir, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-card::before {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 140px;
  height: 140px;
  content: "";
  background: radial-gradient(circle, rgba(246, 210, 103, 0.72), transparent 66%);
  border-radius: 50%;
}

.highlight-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
}

.highlight-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  color: #10302b;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.highlight-card h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.12;
}

.highlight-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 254, 249, 0.74);
  font-size: 18px;
}

.point-section {
  background: #f4f8f3;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.point-card,
.program-list article,
.voice-grid blockquote,
.info-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 12px 34px rgba(31, 69, 63, 0.08);
}

.point-card {
  padding: 30px;
}

.point-card,
.program-list article,
.voice-grid blockquote,
.info-list,
.price-box {
  transition:
    box-shadow 260ms ease,
    transform 260ms ease,
    border-color 260ms ease;
}

.point-card:hover,
.program-list article:hover,
.voice-grid blockquote:hover,
.info-list:hover,
.price-box:hover {
  border-color: rgba(45, 119, 104, 0.34);
  box-shadow: 0 28px 70px rgba(31, 69, 63, 0.16);
  transform: translateY(-6px);
}

.point-card span,
.program-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 50%;
  font-weight: 900;
}

.point-card p,
.program-list p,
.section-heading p,
.price-panel p,
.access-grid p,
.reserve-section p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 440px;
  margin-bottom: 24px;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-list article {
  padding: 34px;
}

.price-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #285f56, #183f3a);
}

.price-section::before {
  position: absolute;
  inset: -25% -10% auto auto;
  width: 44vw;
  min-width: 320px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(246, 210, 103, 0.38), transparent 68%);
  border-radius: 50%;
  transform: translate3d(calc(var(--scroll-progress, 0) * -80px), calc(var(--scroll-progress, 0) * 80px), 0);
}

.price-panel {
  position: relative;
  align-items: center;
  color: var(--white);
}

.price-panel .section-label,
.price-panel p {
  color: #f9dc86;
}

.price-box {
  justify-self: end;
  min-width: min(100%, 420px);
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.price-box span,
.price-box small,
.price-box strong {
  display: block;
}

.price-box span,
.price-box small {
  color: var(--muted);
  font-weight: 800;
}

.price-box strong {
  margin: 6px 0;
  color: var(--green-dark);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}

.voice-section {
  background: #f8f1e4;
}

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

.voice-grid blockquote {
  margin: 0;
  padding: 30px;
}

.voice-grid p {
  font-size: 20px;
  font-weight: 800;
}

.voice-grid cite {
  color: var(--muted);
  font-style: normal;
}

.info-list {
  padding: 12px 30px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--green-dark);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.reserve-section {
  padding: clamp(64px, 8vw, 120px) clamp(18px, 6vw, 84px);
  text-align: center;
  background: var(--mint);
}

.reserve-section p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.reserve-section .primary-button {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 84px);
  background: var(--green-dark);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 254, 249, 0.82);
  font-size: 13px;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .header-cta {
    min-height: 42px;
  }

  .hero,
  .split,
  .access-grid,
  .price-panel,
  .cinematic-sticky,
  .photo-story-grid,
  .point-grid,
  .program-list,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 74px;
  }

  .sample-badge {
    position: static;
    grid-column: 1;
    justify-self: start;
    margin-bottom: -8px;
  }

  .cinematic-section {
    min-height: auto;
  }

  .cinematic-sticky {
    position: relative;
    min-height: auto;
  }

  .highlight-stage {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .cinematic-photo {
    position: relative;
    min-height: 360px;
    opacity: 1;
    filter: none;
  }

  .highlight-card {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .photo-panel,
  .photo-panel-large {
    min-height: 380px;
  }

  .hero-visual {
    padding: 0;
  }

  .floating-card {
    right: 14px;
    bottom: 18px;
  }

  .section-heading {
    display: block;
  }

  .price-box {
    justify-self: stretch;
  }

  .site-footer {
    display: block;
  }
}

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

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

  .reveal,
  .highlight-card,
  .motion-hero .hero-copy,
  .motion-hero .hero-visual,
  .hero-visual img {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .floating-card {
    position: static;
    margin: -26px 16px 0;
  }

  .point-card,
  .program-list article,
  .voice-grid blockquote {
    padding: 24px;
  }

  .photo-panel,
  .photo-panel-large {
    min-height: 320px;
    border-radius: 26px;
  }

  .info-list {
    padding: 8px 22px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
