:root {
  --ink: #082f3f;
  --ocean: #056d94;
  --sky: #56c8e8;
  --sun: #f4d23c;
  --coral: #ff6b50;
  --sand: #f6f0df;
  --white: #fffdf5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 clamp(22px, 4vw, 64px);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Figtree", sans-serif; font-size: 13px; font-weight: 800; line-height: .88; letter-spacing: -.02em; }
.brand b { font-size: 17px; }
.brand-mark { width: 36px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.site-header .brand-mark { filter: brightness(0) invert(1); }
nav { display: flex; gap: 34px; font-weight: 600; font-size: 14px; }
nav a, footer > a { border-bottom: 1px solid transparent; }
nav a:hover, footer > a:hover { border-color: currentColor; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ffe56a; }
.button-small { justify-self: end; min-height: 44px; padding: 0 20px; font-size: 14px; }
.button-light { background: var(--white); }

.hero { position: relative; min-height: 880px; height: 100svh; color: white; display: flex; align-items: flex-end; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { object-position: center 56%; }
.hero-shade { background: linear-gradient(90deg, rgba(2,35,46,.68) 0%, rgba(2,35,46,.15) 58%, rgba(2,35,46,.1)), linear-gradient(0deg, rgba(2,35,46,.48), transparent 45%); }
.hero-copy { position: relative; z-index: 2; width: min(860px, 80%); padding: 0 0 clamp(80px, 10vh, 120px) clamp(22px, 7vw, 112px); }
.eyebrow, .section-index, .card-label { font-weight: 800; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; }
h1, h2, h3 { margin: 0; font-family: "Figtree", sans-serif; letter-spacing: -.055em; line-height: .9; }
h1 { max-width: 900px; font-size: clamp(74px, 10vw, 150px); color: var(--sun); }
.hero-intro { max-width: 520px; margin: 28px 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; }
.hero-note { position: absolute; z-index: 2; right: 4vw; bottom: 36px; width: 190px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.6); font-size: 13px; }

.ticker { overflow: hidden; background: var(--sun); border-block: 2px solid var(--ink); padding: 13px 0; font: 800 14px/1 "Figtree", sans-serif; letter-spacing: .08em; white-space: nowrap; }
.ticker-track { display: flex; width: max-content; animation: drift 28s linear infinite; }
.ticker-group { display: flex; flex-shrink: 0; min-width: 100vw; justify-content: space-around; }
.ticker-item { flex-shrink: 0; padding: 0 24px; }
.ticker-item b { padding: 0 22px; }
@keyframes drift { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker-track { animation: none; } .ticker-group[aria-hidden="true"] { display: none; } }

.intro { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; padding: clamp(80px, 11vw, 170px) clamp(22px, 7vw, 112px); }
.section-index { margin: 0; }
.intro h2, .lessons h2, .book h2 { font-size: clamp(62px, 9vw, 130px); }
.intro > div > p { max-width: 700px; font-size: clamp(18px, 2vw, 25px); line-height: 1.5; margin: 38px 0 0; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 450px 450px; }
.feature-photo { margin: 0; overflow: hidden; }
.feature-photo img, .gallery img { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.feature-photo:hover img, .gallery figure:hover img { transform: scale(1.025); }
.feature-photo-large { grid-row: span 2; }
.feature-card { padding: clamp(34px, 5vw, 74px); display: flex; flex-direction: column; justify-content: space-between; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.feature-card.yellow { background: var(--sun); }
.feature-card.coral { background: var(--coral); }
.feature-number { align-self: flex-end; border: 1px solid currentColor; border-radius: 999px; padding: 6px 12px; font-weight: 700; }
.feature-card h3 { margin-top: auto; font-size: clamp(42px, 5vw, 72px); }
.feature-card p { max-width: 530px; margin: 24px 0 0; font-size: 18px; }

.lessons { display: grid; grid-template-columns: 1.2fr 1fr 1fr; background: var(--white); }
.lessons-heading { padding: clamp(70px, 7vw, 110px) clamp(30px, 5vw, 78px); }
.lessons-heading h2 { margin: 30px 0 44px; }
.lessons-heading > p:last-child { max-width: 520px; font-size: 18px; }
.price-card { min-height: 760px; padding: clamp(42px, 5vw, 70px); display: flex; flex-direction: column; justify-content: space-between; color: white; }
.price-dark { background: var(--ink); }
.price-blue { background: var(--ocean); }
.price-card h3 { font-size: clamp(48px, 5vw, 74px); margin: 20px 0 30px; }
.price-card p:not(.card-label) { font-size: 17px; }
.price { display: flex; flex-direction: column; margin-top: auto; padding-top: 70px; }
.price b { font: 900 clamp(64px, 7vw, 104px)/.9 "Figtree", sans-serif; letter-spacing: -.06em; color: var(--sun); }
.price span { margin-top: 8px; font-weight: 700; letter-spacing: .08em; }
.text-link { margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.45); display: flex; justify-content: space-between; font-weight: 800; }

.included { padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 112px); background: var(--sun); display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.included ul { list-style: none; padding: 0; margin: 0; border-top: 2px solid; }
.included li { padding: 20px 0; border-bottom: 1px solid; font: 800 clamp(24px, 3.4vw, 50px)/1.05 "Figtree", sans-serif; letter-spacing: -.04em; }
.included li span { display: inline-block; width: 70px; font: 700 12px/1 "DM Sans", sans-serif; letter-spacing: .1em; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 420px; gap: 2px; background: var(--ink); }
.gallery figure { margin: 0; overflow: hidden; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.book { padding: clamp(90px, 12vw, 180px) clamp(22px, 7vw, 112px); background: var(--ink); color: white; }
.book h2 { margin: 38px 0; color: var(--sun); }
.book > p:not(.section-index) { max-width: 660px; font-size: clamp(18px, 2vw, 24px); }
.book-actions { display: flex; align-items: center; gap: 36px; margin-top: 48px; }
.location-link { border-bottom: 1px solid; padding: 12px 0; font-weight: 700; }
footer { padding: 52px clamp(22px, 7vw, 112px); display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 30px; background: var(--sand); }
footer p { margin: 0; max-width: 300px; font-size: 14px; }
.footer-brand { font-size: 16px; }
.footer-brand b { font-size: 23px; }

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 760px; }
  .hero-copy { width: 95%; }
  .hero-note { display: none; }
  .intro, .included { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: 600px auto 520px auto; }
  .feature-photo-large { grid-row: auto; }
  .feature-card { min-height: 390px; border-left: 0; border-top: 2px solid; }
  .lessons { grid-template-columns: 1fr 1fr; }
  .lessons-heading { grid-column: 1 / -1; }
  .price-card { min-height: 620px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }
}

@media (max-width: 620px) {
  .site-header { height: 76px; }
  .button-small { padding: 0 15px; min-height: 40px; }
  .hero { min-height: 680px; }
  .hero-image { object-position: center 58%; }
  .hero-copy { padding-left: 22px; padding-bottom: 56px; }
  h1 { font-size: clamp(59px, 20vw, 88px); }
  .hero-intro { max-width: 88%; font-size: 17px; }
  .intro { padding-block: 80px; }
  .feature-grid { grid-template-rows: 520px auto 500px auto; }
  .lessons { display: block; }
  .price-card { min-height: 560px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 520px; }
  .gallery figure:nth-child(2), .gallery figure:nth-child(3) { height: 430px; }
  .book-actions { align-items: stretch; flex-direction: column; }
  .location-link { text-align: center; }
  footer { grid-template-columns: 1fr; align-items: start; }
}
