:root {
  --paper: #f8f3ec;
  --cream: #fff9f2;
  --ink: #312b2e;
  --muted: #766b67;
  --blush: #e8b7c2;
  --lavender: #cbb8ea;
  --sage: #7f9b73;
  --sage-dark: #4f6f49;
  --terracotta: #9f442e;
  --line: #ded2c7;
  --shadow: 0 22px 60px rgba(49, 43, 46, 0.11);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(222, 210, 199, 0.38) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(222, 210, 199, 0.32) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(79, 111, 73, 0.55);
  outline-offset: 3px;
}

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

button {
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(127, 155, 115, 0.16);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 210, 199, 0.72);
  background: rgba(248, 243, 236, 0.84);
  backdrop-filter: blur(18px);
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.is-scrolled .site-header {
  border-bottom-color: rgba(222, 210, 199, 0.48);
  background: rgba(248, 243, 236, 0.92);
  box-shadow: 0 14px 34px rgba(49, 43, 46, 0.08);
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 13%, transparent 14%),
    conic-gradient(from 90deg, var(--blush), var(--lavender), var(--sage), var(--blush));
  border: 1px solid rgba(49, 43, 46, 0.12);
  animation: brandSpin 12s linear infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(222, 210, 199, 0.78);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.68);
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: #fff;
}

.button,
.nav-cta {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.3) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform 0.58s ease;
}

.button:hover::after,
.button:focus-visible::after,
.nav-cta:hover::after,
.nav-cta:focus-visible::after {
  transform: translateX(120%);
}

.button > *,
.nav-cta > * {
  position: relative;
  z-index: 1;
}

.button svg,
.nav-cta svg {
  transition: transform 0.22s ease;
}

.button:hover svg,
.button:focus-visible svg,
.nav-cta:hover svg,
.nav-cta:focus-visible svg {
  transform: translateX(2px) rotate(-4deg);
}

.button svg,
.nav-cta svg,
.benefit svg,
.check-list svg,
.mobile-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.button-primary,
.nav-cta {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 14px 28px rgba(79, 111, 73, 0.2);
}

.button-primary:hover,
.nav-cta:hover,
.button-primary:focus-visible,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: #405c3b;
  box-shadow: 0 18px 34px rgba(79, 111, 73, 0.27);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 26px rgba(49, 43, 46, 0.09);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(49, 43, 46, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.menu-button:hover,
.menu-button:focus-visible,
.menu-button.is-open {
  background: #fff;
  border-color: rgba(127, 155, 115, 0.44);
  box-shadow: 0 14px 30px rgba(49, 43, 46, 0.12);
}

.menu-button:active {
  transform: scale(0.96);
}

.menu-icon {
  position: relative;
  width: 20px;
  height: 15px;
  display: block;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top 0.2s ease, opacity 0.16s ease, transform 0.2s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 6.5px;
}

.menu-icon span:nth-child(3) {
  top: 13px;
}

.menu-button.is-open .menu-icon span:nth-child(1) {
  top: 6.5px;
  transform: rotate(45deg);
}

.menu-button.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open .menu-icon span:nth-child(3) {
  top: 6.5px;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.scroll-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.scroll-video-hint {
  position: absolute;
  left: 50%;
  bottom: max(26px, env(safe-area-inset-bottom));
  z-index: 4;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(49, 43, 46, 0.12);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(49, 43, 46, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(49, 43, 46, 0.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  transform: translateX(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-video-hint svg {
  width: 17px;
  height: 17px;
}

.hero-with-video.is-complete .scroll-video-hint {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 76px 0 48px;
  display: flex;
  align-items: center;
}

.hero-with-video {
  display: block;
  position: relative;
  min-height: calc(100vh - 76px);
  background: linear-gradient(180deg, #fff 0%, #fff 42%, var(--paper) 100%);
}

.hero-with-video .hero-grid {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(50px, 7.4vw, 94px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 30px;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions,
.messengers,
.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 34px 0 0;
}

.proof-strip div {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 242, 0.74);
  padding: 15px;
}

.proof-strip dt {
  font: 400 40px/1 "Instrument Serif", Georgia, serif;
  color: var(--sage-dark);
}

.proof-strip dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.asset-stage {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 72vh, 760px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 183, 194, 0.54), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(203, 184, 234, 0.48), transparent 30%),
    linear-gradient(145deg, #fff9f2, #efe3d6);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.inline-scroll-stage {
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  clip-path: inset(0 round 28px);
  overflow: hidden;
}

.inline-scroll-stage::before {
  display: none;
}

.inline-scroll-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: contain;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
}

.inline-scroll-hint {
  z-index: 5;
}

.asset-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(49, 43, 46, 0.24);
  border-radius: 6px;
  z-index: 1;
}

.stage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  opacity: 0.28;
}

.stage-grid span {
  border-right: 1px solid rgba(49, 43, 46, 0.08);
  border-bottom: 1px solid rgba(49, 43, 46, 0.08);
}

.stage-placeholder {
  position: absolute;
  inset: auto 42px 42px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background: rgba(255, 249, 242, 0.78);
  backdrop-filter: blur(12px);
  padding: 22px;
}

.stage-label {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-title {
  margin-top: 8px;
  font: 400 32px/1.1 "Instrument Serif", Georgia, serif;
}

.stage-copy {
  margin-top: 8px;
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
}

.loop {
  position: absolute;
  z-index: 2;
  width: 34%;
  aspect-ratio: 1;
  border: clamp(18px, 3vw, 34px) solid rgba(255, 255, 255, 0.72);
  border-radius: 44% 56% 50% 50%;
  box-shadow: inset 0 0 0 1px rgba(49, 43, 46, 0.08), 0 18px 40px rgba(49, 43, 46, 0.08);
}

.loop-a {
  top: 12%;
  left: 9%;
  background: var(--blush);
  transform: rotate(-18deg);
}

.loop-b {
  top: 22%;
  right: 10%;
  background: var(--lavender);
  transform: rotate(16deg);
}

.loop-c {
  top: 44%;
  left: 28%;
  background: #d8d5bb;
  transform: rotate(34deg);
}

.hero-photo-card {
  position: relative;
  min-height: clamp(480px, 62vh, 690px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #eadfd4;
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-photo-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 249, 242, 0.82);
  backdrop-filter: blur(12px);
}

.hero-photo-note span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo-note strong {
  font: 400 32px/1.08 "Instrument Serif", Georgia, serif;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 34px;
  align-items: center;
  min-height: 58px;
  padding-inline: 22px;
  animation: ticker 42s linear infinite;
}

.ticker span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(62px, 7vw, 96px) 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.eyebrow),
.intro-copy p,
.teacher-copy > p:not(.eyebrow),
.address-card p,
.booking-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.intro-card,
.address-card,
.booking-card,
.teacher-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 242, 0.86);
  box-shadow: var(--shadow);
}

.intro-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: clamp(24px, 5vw, 54px);
}

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

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

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

.program-card,
.price-card,
.step,
.benefit,
.gallery-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 242, 0.82);
  box-shadow: 0 18px 46px rgba(49, 43, 46, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.program-card {
  overflow: hidden;
}

.program-card:hover,
.price-card:not(.featured):hover,
.benefit:hover,
.step:hover,
details:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.price-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 30px 70px rgba(49, 43, 46, 0.2);
}

.program-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eadfd4;
}

.program-photo img,
.teacher-photo img,
.gallery-photo img,
.address-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-photo img,
.teacher-photo img,
.address-photo img {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.program-card:hover .program-photo img,
.teacher-card:hover .teacher-photo img,
.address-card:hover .address-photo img {
  transform: scale(1.045);
}

.card-body {
  padding: 24px;
}

.chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--terracotta);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-card h3,
.price-card h3,
.benefit h3,
.step h3 {
  margin-top: 16px;
}

.program-card p,
.price-card p,
.benefit p,
.step p {
  margin-top: 12px;
  color: var(--muted);
}

.soft-band {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.65), rgba(232, 183, 194, 0.18));
  border-block: 1px solid rgba(222, 210, 199, 0.72);
}

.split,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
}

.benefit > svg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 12px;
  color: var(--sage-dark);
  background: rgba(127, 155, 115, 0.13);
}

.benefit h3 {
  margin-top: 0;
  font-size: 27px;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.step span {
  display: block;
  color: var(--terracotta);
  font: 400 54px/1 "Instrument Serif", Georgia, serif;
  opacity: 0.55;
}

.prices-section {
  background: linear-gradient(180deg, rgba(203, 184, 234, 0.18), rgba(255, 249, 242, 0.34));
  border-block: 1px solid rgba(222, 210, 199, 0.72);
}

.price-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  background: var(--ink);
  color: #fff;
  transform: translateY(-14px);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-kicker {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .price-kicker {
  color: var(--blush);
}

.price {
  margin-top: 18px;
  color: var(--sage-dark);
  font: 400 54px/1 "Instrument Serif", Georgia, serif;
}

.featured .price {
  color: #fff;
}

.price-card .button {
  margin-top: auto;
}

.gallery-section {
  background: var(--ink);
  color: #fff;
}

.gallery-section .eyebrow {
  color: var(--blush);
}

.gallery-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-photo:nth-child(n + 17) {
  display: none;
}

.gallery-photo {
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.gallery-photo.is-featured,
.gallery-photo:nth-child(9n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-photo img {
  transition: transform 0.4s ease;
}

.gallery-photo:hover img {
  transform: scale(1.045);
}

.teacher-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(255, 249, 242, 0.92), rgba(232, 183, 194, 0.2));
}

.teacher-photo {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eadfd4;
}

.teacher-photo img {
  object-position: center top;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--sage-dark);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 242, 0.86);
  padding: 0 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  content: "+";
  font-size: 24px;
  color: var(--sage-dark);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 0 20px;
  color: var(--muted);
}

.address-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(24px, 5vw, 54px);
  overflow: hidden;
}

.address-content {
  max-width: 600px;
}

.address-actions {
  flex-shrink: 0;
  margin-top: 0;
}

.address-photo {
  position: relative;
  min-height: 315px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eadfd4;
  box-shadow: 0 18px 46px rgba(49, 43, 46, 0.1);
}

.address-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 249, 242, 0.86);
  box-shadow: 0 14px 36px rgba(49, 43, 46, 0.12);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.address-photo figcaption svg {
  width: 18px;
  height: 18px;
  color: var(--sage-dark);
  flex: 0 0 auto;
}

.booking-section {
  padding-top: 40px;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  background:
    radial-gradient(circle at 12% 14%, rgba(232, 183, 194, 0.42), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(203, 184, 234, 0.4), transparent 28%),
    var(--cream);
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-link {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(49, 43, 46, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(127, 155, 115, 0.46);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-link > svg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 11px;
  color: var(--sage-dark);
  background: rgba(127, 155, 115, 0.13);
}

.contact-link.is-primary {
  color: #fff;
  background: var(--sage-dark);
  border-color: rgba(79, 111, 73, 0.28);
}

.contact-link.is-primary > svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.contact-link strong,
.contact-link small {
  display: block;
}

.contact-link strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.contact-link.is-primary strong {
  color: #fff;
}

.contact-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-link.is-primary small {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 46px 0 86px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer p {
  margin-top: 12px;
  max-width: 440px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.mobile-cta {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 65;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(49, 43, 46, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(49, 43, 46, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease, bottom 0.24s ease;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

body.is-back-to-top-visible .back-to-top {
  opacity: 0.86;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.has-cookie-notice .back-to-top {
  bottom: 116px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #fff;
  background: var(--sage-dark);
  opacity: 1;
  transform: translateY(-2px) scale(1);
}

.privacy-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  width: min(760px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(49, 43, 46, 0.1);
  border-radius: 18px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(49, 43, 46, 0.16);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.privacy-notice > svg {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 10px;
  color: var(--sage-dark);
  background: rgba(127, 155, 115, 0.13);
}

.privacy-notice p {
  font-size: 14px;
  line-height: 1.45;
}

.privacy-notice p a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.privacy-actions a,
.privacy-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.privacy-actions a {
  color: var(--sage-dark);
}

.privacy-actions button {
  border: 0;
  color: #fff;
  background: var(--sage-dark);
  cursor: pointer;
}

.privacy-actions button:hover,
.privacy-actions button:focus-visible {
  background: #405c3b;
}

.legal-main {
  padding: 70px 0 90px;
}

.legal-document {
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 56px);
  background: rgba(255, 249, 242, 0.9);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
}

.legal-document p,
.legal-document ul {
  margin-top: 14px;
}

.legal-document ul {
  padding-left: 20px;
}

.legal-document a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(9px);
  transition:
    opacity 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.78s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-head.reveal {
  transform: translate3d(0, 18px, 0);
}

.section-head.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal.is-visible.program-card:hover,
.reveal.is-visible.price-card:not(.featured):hover,
.reveal.is-visible.benefit:hover,
.reveal.is-visible.step:hover {
  transform: translateY(-5px);
}

.reveal.is-visible.price-card.featured:hover {
  transform: translateY(-18px);
}

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

@keyframes brandSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-panel {
    width: min(100% - 40px, var(--container));
    margin: 0 auto 14px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-panel.is-open {
    display: grid;
  }

  .mobile-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    padding: 0 12px;
    font-weight: 800;
  }

  .hero-grid,
  .intro-card,
  .split,
  .faq-grid,
  .booking-card,
  .teacher-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-with-video {
    min-height: auto;
  }

  .hero-with-video .hero-grid {
    position: static;
    top: auto;
  }

  .asset-stage {
    min-height: min(580px, 72vh);
  }

  .hero-photo-card {
    min-height: min(520px, 68vh);
  }

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

  .price-card.featured {
    transform: none;
  }

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

  .address-card {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .address-content {
    max-width: none;
  }

  .address-photo {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    height: 62px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .mobile-panel {
    width: min(100% - 24px, var(--container));
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px 0 20px;
  }

  .hero-with-video {
    min-height: auto;
  }

  .hero-with-video .hero-grid {
    gap: 18px;
  }

  .hero-visual {
    position: relative;
    min-height: auto;
    z-index: 2;
    align-self: start;
  }

  .hero-visual.reveal,
  .hero-visual.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .scroll-video {
    object-fit: contain;
  }

  .scroll-video-hint {
    bottom: max(18px, env(safe-area-inset-bottom));
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(34px, 11.2vw, 48px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 1.05;
  }

  h3 {
    font-size: 25px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

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

  .hero-actions,
  .messengers,
  .address-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    text-align: center;
  }

  .proof-strip,
  .program-grid,
  .pricing-grid,
  .steps,
  .real-gallery {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    gap: 8px;
  }

  .proof-strip div {
    min-height: auto;
    padding: 9px;
  }

  .proof-strip dt {
    font-size: 28px;
  }

  .proof-strip dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head p:not(.eyebrow),
  .intro-copy p,
  .teacher-copy > p:not(.eyebrow),
  .address-card p,
  .booking-copy p {
    font-size: 16px;
  }

  .asset-stage {
    min-height: 390px;
  }

  .inline-scroll-stage {
    position: relative;
    top: auto;
    min-height: min(56vh, 480px);
    border-radius: 22px;
    clip-path: inset(0 round 22px);
  }

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

  .hero-photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .hero-photo-note strong {
    font-size: 25px;
  }

  .asset-stage::before {
    inset: 12px;
  }

  .stage-placeholder {
    inset: auto 14px 14px;
    padding: 14px;
  }

  .stage-title {
    font-size: 25px;
  }

  .stage-copy {
    font-size: 13px;
  }

  .loop {
    width: 40%;
    border-width: 16px;
  }

  .ticker-track {
    min-height: 48px;
    gap: 24px;
  }

  .ticker span {
    font-size: 11px;
  }

  .intro-card,
  .booking-card,
  .teacher-card,
  .address-card {
    padding: 20px;
  }

  .contact-panel {
    width: 100%;
  }

  .contact-link {
    min-height: 70px;
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .contact-link > svg {
    width: 40px;
    height: 40px;
  }

  .address-photo {
    min-height: 240px;
  }

  .address-photo figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
  }

  .card-body,
  .price-card,
  .step,
  .benefit {
    padding: 20px;
  }

  .program-photo {
    aspect-ratio: 1 / 0.82;
  }

  .step {
    min-height: auto;
  }

  .step span {
    font-size: 44px;
  }

  .price-card {
    min-height: auto;
  }

  .price {
    font-size: 48px;
  }

  .gallery-photo,
  .gallery-photo.is-featured,
  .gallery-photo:nth-child(9n + 1) {
    min-height: 270px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-photo:nth-child(n + 10) {
    display: none;
  }

  .teacher-photo {
    min-height: 360px;
  }

  .benefit {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .benefit > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  summary {
    min-height: 58px;
    font-size: 15px;
  }

  details {
    padding: 0 16px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

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

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    display: none;
  }

  body.is-after-hero.is-before-gallery .mobile-cta {
    display: block;
  }

  .mobile-cta a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--sage-dark);
    box-shadow: 0 14px 36px rgba(49, 43, 46, 0.24);
    font-weight: 800;
  }

  .site-footer {
    padding-bottom: 98px;
  }

  body.is-scroll-video-active .mobile-cta {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 82px;
    width: 46px;
    height: 46px;
  }

  body.has-cookie-notice .back-to-top {
    bottom: 156px;
  }

  body.is-after-hero.is-before-gallery .back-to-top {
    bottom: 86px;
  }

  body.is-after-hero.is-before-gallery.has-cookie-notice .back-to-top {
    bottom: 178px;
  }

  .privacy-notice {
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  body.is-after-hero.is-before-gallery .privacy-notice {
    bottom: 84px;
  }

  .privacy-notice > svg {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .privacy-notice p {
    font-size: 13px;
  }

  .privacy-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .privacy-actions a,
  .privacy-actions button {
    flex: 1;
    justify-content: center;
  }

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

  .legal-document p,
  .legal-document li {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  h1 {
    font-size: clamp(32px, 10.6vw, 40px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

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

  .hero-with-video {
    min-height: auto;
  }

  .proof-strip {
    gap: 8px;
  }

  .proof-strip dt {
    font-size: 26px;
  }

  .proof-strip dd {
    font-size: 10px;
  }

  .asset-stage {
    min-height: 340px;
  }

  .inline-scroll-stage {
    min-height: min(52vh, 410px);
    border-radius: 20px;
    clip-path: inset(0 round 20px);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo-card {
    min-height: 320px;
  }

  .stage-title {
    font-size: 22px;
  }

  .stage-copy {
    display: none;
  }

  .price {
    font-size: 43px;
  }

  .gallery-photo,
  .gallery-photo.is-featured,
  .gallery-photo:nth-child(9n + 1) {
    min-height: 235px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition-delay: 0ms;
  }

  .brand-mark {
    animation: none;
  }
}
