:root {
  --ink: #25211d;
  --paper: #f8f1e7;
  --ivory: #fffaf2;
  --teal: #5f9690;
  --teal-dark: #315f5c;
  --brass: #c99342;
  --rosewood: #a76152;
  --night: #f1e7da;
  --muted: #716960;
  --line: rgba(37, 33, 29, 0.15);
  --scene-bg: var(--paper);
  --scene-ink: var(--ink);
  --scene-accent: var(--brass);
  --shadow: 0 30px 90px rgba(7, 18, 19, 0.24);
  color: var(--scene-ink);
  background: var(--scene-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--scene-bg);
  color: var(--scene-ink);
  margin: 0;
  overflow-x: hidden;
  transition: background 700ms ease, color 700ms ease;
}

body[data-scene="studio"],
body[data-scene="studio"] {
  --scene-bg: #2b2a26;
  --scene-ink: #fffaf2;
  --scene-accent: #d6a257;
}

body[data-scene="night"] {
  --scene-bg: #f1e7da;
  --scene-ink: #25211d;
  --scene-accent: #b87935;
}

body[data-scene="ivory"] {
  --scene-bg: #f4eee3;
  --scene-ink: #25211d;
  --scene-accent: #5f9690;
}

body[data-scene="brass"] {
  --scene-bg: #d8ad65;
  --scene-ink: #25211d;
  --scene-accent: #8d4f43;
}

body[data-scene="teal"] {
  --scene-bg: #5f9690;
  --scene-ink: #fffaf2;
  --scene-accent: #f2cf8a;
}

body[data-scene="rosewood"] {
  --scene-bg: #a76152;
  --scene-ink: #fffaf2;
  --scene-accent: #f2cf8a;
}

body[data-scene="faq"] {
  --scene-bg: #e6f0eb;
  --scene-ink: #25211d;
  --scene-accent: #4f8f88;
}

body[data-scene="book"] {
  --scene-bg: #f4dfc2;
  --scene-ink: #25211d;
  --scene-accent: #b87935;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .sound-toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

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

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

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

.wave-canvas,
.cursor-light {
  inset: 0;
  pointer-events: none;
  position: fixed;
}

.wave-canvas {
  mix-blend-mode: soft-light;
  opacity: 0.35;
  z-index: 0;
}

.cursor-light {
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(242, 207, 138, 0.18), transparent 31rem);
  opacity: 0.62;
  z-index: 1;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 2;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--scene-bg), transparent 16%);
  border-bottom: 1px solid color-mix(in srgb, var(--scene-ink), transparent 86%);
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 500ms ease, box-shadow 300ms ease, color 500ms ease;
  z-index: 30;
}

.site-header.scrolled {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-mark {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  flex: 0 0 42px;
  height: 42px;
  object-fit: cover;
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 300ms ease;
  width: 42px;
}

.brand:hover .brand-mark {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transform: rotate(-12deg) scale(1.06);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  opacity: 0.7;
  font-size: 0.74rem;
  margin-top: 3px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.nav a {
  border-radius: 999px;
  color: color-mix(in srgb, var(--scene-ink), transparent 20%);
  font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  padding: 10px clamp(8px, 0.7vw, 14px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nav a:hover {
  background: color-mix(in srgb, var(--scene-accent), transparent 74%);
  color: var(--scene-ink);
  transform: translateY(-2px);
}

.nav .nav-book {
  background: var(--scene-accent);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--scene-accent), transparent 64%);
  color: #25211d;
  font-weight: 900;
  padding-inline: clamp(14px, 1vw, 20px);
}

.nav .nav-book:hover,
.nav .nav-book:focus-visible {
  background: color-mix(in srgb, var(--scene-accent), #fff8ec 18%);
  color: #25211d;
  transform: translateY(-2px) scale(1.03);
}

.mobile-book-cta {
  align-items: center;
  background: var(--scene-accent);
  border: 1px solid color-mix(in srgb, var(--scene-bg), transparent 66%);
  border-radius: 999px;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--scene-accent), transparent 66%);
  color: #25211d;
  display: none;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  position: relative;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
  white-space: nowrap;
  z-index: 34;
}

.mobile-book-cta:hover,
.mobile-book-cta:focus-visible {
  background: color-mix(in srgb, var(--scene-accent), #fff8ec 18%);
  transform: translateY(-2px);
}

.mobile-book-cta:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--scene-accent), #fff8ec 24%);
  outline-offset: 4px;
}

.nav-toggle {
  align-items: center;
  background: color-mix(in srgb, var(--scene-ink), transparent 8%);
  border: 1px solid color-mix(in srgb, var(--scene-bg), transparent 70%);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(37, 33, 29, 0.14);
  color: var(--scene-bg);
  display: none;
  height: 44px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  width: 48px;
  z-index: 34;
}

.nav-toggle::before,
.nav-toggle::after {
  content: none;
}

.nav-toggle span {
  background: currentColor;
  border-radius: 999px;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: transform 220ms ease, width 220ms ease, opacity 220ms ease;
  transform-origin: center;
  width: 22px;
  z-index: 1;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -7px);
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
  width: 18px;
}

.nav-toggle span:last-child {
  transform: translate(-50%, 7px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
  width: 23px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
  width: 23px;
}

.sound-toggle {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 236, 0.9);
  border: 1px solid rgba(43, 42, 38, 0.16);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 18px 48px rgba(43, 42, 38, 0.16);
  color: #25211d;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  left: clamp(18px, 4vw, 56px);
  min-height: 46px;
  padding: 11px 15px;
  position: fixed;
  transition: background 220ms ease, color 220ms ease, transform 180ms ease;
  z-index: 35;
}

.sound-toggle[hidden] {
  display: none;
}

.sound-toggle:hover {
  transform: translateY(-2px);
}

.sound-toggle.needs-gesture {
  background: #25211d;
  color: #fff8ec;
}

.sound-toggle.is-playing {
  background: linear-gradient(135deg, #315f5c, #b87935);
  border-color: rgba(255, 248, 236, 0.35);
  color: #fff8ec;
}

.sound-bars {
  align-items: end;
  display: inline-flex;
  gap: 3px;
  height: 16px;
}

.sound-bars i {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 7px;
  width: 3px;
}

.sound-toggle.is-playing .sound-bars i {
  animation: soundMeter 720ms ease-in-out infinite;
}

.sound-toggle.is-playing .sound-bars i:nth-child(2) {
  animation-delay: 120ms;
}

.sound-toggle.is-playing .sound-bars i:nth-child(3) {
  animation-delay: 240ms;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 250, 242, 0.76);
  border-radius: 50%;
  bottom: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 44px rgba(7, 18, 19, 0.28);
  color: #fff;
  display: grid;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: clamp(18px, 3.5vw, 34px);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  width: 58px;
  z-index: 35;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 22px 58px rgba(7, 18, 19, 0.34);
  filter: saturate(1.08);
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(255, 250, 242, 0.92);
  outline-offset: 4px;
}

.whatsapp-float svg {
  fill: currentColor;
  height: 32px;
  width: 32px;
}

.scene {
  background: var(--scene-bg);
  color: var(--scene-ink);
  overflow: clip;
  transition: background 700ms ease, color 700ms ease;
}

.hero {
  min-height: 100vh;
  padding: 150px clamp(20px, 5vw, 72px) 96px;
  position: relative;
}

.hero-media,
.hero-media picture,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media picture {
  display: block;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.88;
  transform: scale(1.08) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 180ms ease-out, opacity 600ms ease;
  width: 100%;
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 250, 242, 0.08) 0 18%, rgba(43, 42, 38, 0.14) 36%, rgba(43, 42, 38, 0.5) 78%),
    linear-gradient(90deg, rgba(43, 42, 38, 0.78), rgba(43, 42, 38, 0.36) 50%, rgba(43, 42, 38, 0.04));
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--scene-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.5rem, 5.25vw, 5.35rem);
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 700px;
}

h1 span {
  animation: titleFold 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  display: block;
  transform-origin: left center;
}

h1 span:nth-child(2) {
  animation-delay: 120ms;
}

h1 span:nth-child(3) {
  animation-delay: 240ms;
}

h2 {
  font-size: clamp(1.85rem, 3.9vw, 4.2rem);
  line-height: 1;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-copy {
  color: color-mix(in srgb, var(--scene-ink), transparent 18%);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 590px;
}

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

.button,
.lesson-card button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  padding: 14px 22px;
  position: relative;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  height: 100%;
  left: -80%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 44%;
}

.button:hover::after {
  animation: buttonShine 540ms ease-out both;
}

.primary {
  background: var(--scene-accent);
  color: #25211d;
}

.ghost {
  border-color: color-mix(in srgb, var(--scene-ink), transparent 58%);
  color: var(--scene-ink);
}

.hero-orbit {
  --orbit-duration: 34s;
  --orbit-size: clamp(190px, 24vw, 360px);
  animation: slowSpin var(--orbit-duration) linear infinite;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 242, 0.95) 0 13%, transparent 14%),
    radial-gradient(circle at center, transparent 0 25%, rgba(255, 248, 236, 0.12) 26% 29%, transparent 30% 42%, rgba(242, 207, 138, 0.22) 43% 45%, transparent 46%),
    radial-gradient(circle, rgba(255, 250, 242, 0.16) 0 1px, transparent 2px),
    conic-gradient(from 40deg, rgba(242, 207, 138, 0.68), rgba(95, 150, 144, 0.34), rgba(167, 97, 82, 0.62), rgba(242, 207, 138, 0.68));
  background-size: auto, auto, 18px 18px, auto;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  display: grid;
  inset: auto clamp(20px, 8vw, 120px) clamp(78px, 10vh, 128px) auto;
  isolation: isolate;
  place-items: center;
  position: absolute;
  padding: 0;
  scale: 1;
  touch-action: manipulation;
  transform-style: preserve-3d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(255, 248, 236, 0.06), inset 0 0 34px rgba(37, 33, 29, 0.24);
  transition: box-shadow 180ms ease, filter 180ms ease, scale 180ms ease;
  width: var(--orbit-size);
  z-index: 1;
}

.hero-orbit:hover,
.hero-orbit:focus-visible {
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.32), 0 0 0 9px rgba(255, 248, 236, 0.08), 0 0 52px rgba(242, 207, 138, 0.2), inset 0 0 36px rgba(37, 33, 29, 0.22);
}

.hero-orbit:focus-visible {
  outline: 2px solid rgba(242, 207, 138, 0.9);
  outline-offset: 7px;
}

.hero-orbit.orbit-burst {
  --orbit-duration: 5.2s;
  box-shadow: 0 0 0 1px rgba(255, 248, 236, 0.32), 0 0 66px rgba(242, 207, 138, 0.34);
  filter: brightness(1.18) saturate(1.08);
  scale: 1.08;
}

.hero-orbit span {
  pointer-events: none;
  position: absolute;
}

.hero-orbit::before,
.hero-orbit::after {
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 50%;
  content: "";
  inset: 10%;
  position: absolute;
}

.hero-orbit::after {
  border-color: rgba(242, 207, 138, 0.72);
  border-style: dashed;
  box-shadow: 0 0 28px rgba(242, 207, 138, 0.16);
  inset: 29%;
}

.orbit-core {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 242, 0.08), transparent 56%),
    #070807 url("assets/wb.png") center / 154% 154% no-repeat;
  border: 1px solid rgba(242, 207, 138, 0.9);
  border-radius: 50%;
  color: transparent;
  display: grid;
  filter: contrast(1.12) saturate(1.08);
  font-family: Georgia, serif;
  font-size: 0;
  font-weight: 900;
  overflow: hidden;
  place-items: center;
  box-shadow: 0 0 0 5px rgba(7, 8, 7, 0.82), 0 0 0 8px rgba(242, 207, 138, 0.22), 0 16px 34px rgba(0, 0, 0, 0.26);
  width: clamp(58px, 7vw, 86px);
  z-index: 2;
}

.orbit-ring {
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 50%;
  inset: 22%;
}

.orbit-ring-b {
  border-color: rgba(242, 207, 138, 0.42);
  border-style: dotted;
  inset: 6%;
}

.orbit-tick {
  background: linear-gradient(180deg, rgba(242, 207, 138, 0), rgba(242, 207, 138, 0.86), rgba(242, 207, 138, 0));
  height: 34px;
  top: 2%;
  transform-origin: 50% calc(var(--orbit-size) / 2 - 4px);
  width: 1px;
}

.orbit-tick:nth-of-type(5) { transform: rotate(90deg); }
.orbit-tick:nth-of-type(6) { transform: rotate(180deg); }
.orbit-tick:nth-of-type(7) { transform: rotate(270deg); }

.hero-orbit > span:not(.orbit-core, .orbit-ring, .orbit-tick) {
  animation: labelPulse 4.6s ease-in-out infinite;
  backdrop-filter: blur(12px);
  background: rgba(37, 33, 29, 0.64);
  border: 1px solid rgba(255, 248, 236, 0.34);
  border-radius: 999px;
  color: var(--ivory);
  font-weight: 800;
  padding: 8px 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  z-index: 3;
}

.hero-orbit > span:nth-last-child(4) { top: 7%; transform: translateY(0); }
.hero-orbit > span:nth-last-child(3) { right: 5%; transform: translateX(0); animation-delay: 0.5s; }
.hero-orbit > span:nth-last-child(2) { bottom: 7%; transform: translateY(0); animation-delay: 1s; }
.hero-orbit > span:nth-last-child(1) { left: 5%; transform: translateX(0); animation-delay: 1.5s; }

.hero-panel {
  border-top: 1px solid rgba(255, 248, 236, 0.24);
  bottom: 0;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(20px, 5vw, 72px);
  max-width: 820px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  z-index: 2;
}

.hero-panel div {
  backdrop-filter: blur(16px);
  background: rgba(255, 248, 236, 0.1);
  padding: 18px;
  transform-style: preserve-3d;
  transition: transform 320ms ease, background 320ms ease;
}

.hero-panel div:hover {
  background: rgba(255, 248, 236, 0.18);
  transform: rotateX(8deg) translateY(-8px);
}

.stat,
.icon {
  color: var(--scene-accent);
  display: block;
  font-family: Georgia, serif;
}

.stat {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 6px;
}

section:not(.hero):not(.marquee) {
  padding: clamp(76px, 10vw, 142px) clamp(20px, 5vw, 72px);
}

.identity {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  min-height: 100vh;
}

.identity-copy p:not(.eyebrow),
.sound p,
.step-card p,
.contact-copy p,
.hosting p,
.lesson-card p,
.recommendation p {
  color: color-mix(in srgb, var(--scene-ink), transparent 30%);
  font-size: 1rem;
  line-height: 1.7;
}

.identity-deck {
  justify-self: center;
  max-width: 660px;
  min-height: 620px;
  position: relative;
  width: 100%;
}

.photo-card {
  background: color-mix(in srgb, var(--scene-ink), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--scene-ink), transparent 82%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform-style: preserve-3d;
}

.photo-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-card figcaption {
  background: color-mix(in srgb, var(--scene-bg), transparent 12%);
  bottom: 0;
  font-weight: 900;
  left: 0;
  padding: 14px 16px;
  position: absolute;
  right: 0;
}

.photo-main {
  inset: 0 auto auto 6%;
  z-index: 1;
  width: min(450px, 78%);
}

.photo-side {
  right: 7%;
  top: 25%;
  transform: rotate(5deg);
  z-index: 2;
  width: min(330px, 53%);
}

@media (min-width: 1500px) {
  .identity {
    gap: clamp(42px, 4vw, 72px);
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 0.72fr);
  }

  .identity-deck {
    max-width: 610px;
  }

  .photo-main {
    left: 2%;
    width: min(420px, 72%);
  }

  .photo-side {
    right: 1%;
    top: 27%;
    width: min(310px, 50%);
  }
}

.marquee {
  background:
    linear-gradient(90deg, rgba(248, 241, 231, 0.96), rgba(232, 217, 200, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(43, 42, 38, 0.04) 34px 35px);
  border-bottom: 1px solid rgba(43, 42, 38, 0.12);
  border-top: 1px solid rgba(43, 42, 38, 0.12);
  color: #25211d;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px) 0;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: min(16vw, 210px);
  z-index: 2;
}

.marquee::before {
  background: linear-gradient(90deg, #f1e7da, transparent);
  left: 0;
}

.marquee::after {
  background: linear-gradient(270deg, #f1e7da, transparent);
  right: 0;
}

.marquee-head {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(28px, 3.4vw, 44px);
  padding: 0 clamp(20px, 5vw, 72px);
}

.marquee-head span {
  background: #25211d;
  border-radius: 999px;
  color: #fff8ec;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 14px;
  text-transform: uppercase;
}

.marquee-mask {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.marquee-track {
  --marquee-distance: -50%;
  animation: marquee var(--marquee-duration, 42s) linear infinite;
  align-items: center;
  display: flex;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.marquee-track-b {
  animation-direction: reverse;
  margin-left: -12vw;
}

.marquee-track span {
  align-items: center;
  animation: chip-breathe 4.8s ease-in-out infinite;
  background: #fff8ec;
  border: 1px solid rgba(43, 42, 38, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(43, 42, 38, 0.08);
  display: inline-flex;
  font-size: clamp(1.05rem, 2vw, 1.65rem);
  font-weight: 900;
  gap: 12px;
  line-height: 1;
  padding: clamp(12px, 1.7vw, 18px) clamp(18px, 3vw, 34px);
  transform-origin: center;
}

.marquee-track-a span:nth-of-type(2n),
.marquee-track-b span:nth-of-type(2n + 1) {
  background: #25211d;
  border-color: #25211d;
  color: #fff8ec;
}

.marquee-track span:nth-of-type(2n) {
  animation-delay: -1.6s;
}

.marquee-track span:nth-of-type(3n) {
  animation-delay: -3.2s;
}

.marquee-track span strong {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 0.82em;
}

.marquee-track i {
  background: var(--brass);
  border-radius: 999px;
  display: block;
  height: 9px;
  opacity: 0.85;
  width: 9px;
}

.reel {
  min-height: 100vh;
}

.reel-pin {
  align-items: center;
  align-content: center;
  display: grid;
  gap: clamp(14px, 2vh, 22px);
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 92svh;
  overflow: hidden;
  padding: clamp(76px, 8vh, 92px) clamp(20px, 5vw, 72px) clamp(44px, 7vh, 78px);
}

.reel-intro {
  justify-self: start;
  max-width: 780px;
}

.reel-intro h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  margin-bottom: 0;
}

.reel-track {
  align-items: stretch;
  align-self: stretch;
  display: flex;
  gap: 22px;
  height: clamp(330px, 48svh, 500px);
  min-height: 0;
  width: max-content;
  will-change: transform;
}

.reel-panel {
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 0 0 clamp(520px, 48vw, 780px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.reel-panel img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  width: 100%;
}

.reel-panel::after {
  background: linear-gradient(0deg, rgba(37, 33, 29, 0.68), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.reel-panel div {
  bottom: 0;
  color: var(--ivory);
  left: 0;
  max-width: 460px;
  padding: clamp(18px, 2.6vw, 30px);
  position: absolute;
  z-index: 1;
}

.reel-panel span {
  color: var(--brass);
  display: block;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.reel-panel h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
  line-height: 1.04;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 920px;
}

.lessons {
  background: #f1e7da;
  color: #25211d;
}

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

.lesson-card {
  border-radius: 8px;
  cursor: pointer;
  min-height: 360px;
  perspective: 1200px;
}

.flip-inner {
  border-radius: 8px;
  height: 100%;
  min-height: 360px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms ease;
}

.lesson-card.flipped .flip-inner {
  box-shadow: var(--shadow);
  transform: rotateY(180deg) translateZ(1px);
}

.lesson-card.active .flip-front {
  border-color: rgba(184, 121, 53, 0.8);
  box-shadow: 0 0 0 2px rgba(184, 121, 53, 0.18), 0 18px 54px rgba(184, 121, 53, 0.18);
}

.flip-face {
  backface-visibility: hidden;
  border: 1px solid color-mix(in srgb, var(--scene-ink), transparent 82%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-start;
  padding: 28px;
  position: absolute;
}

.flip-front {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 248, 236, 0.2), transparent 32%),
    linear-gradient(135deg, #315f5c 0%, #5f665c 48%, #a76152 100%);
  color: var(--ivory);
  border-color: rgba(167, 97, 82, 0.28);
  box-shadow: 0 22px 70px rgba(49, 95, 92, 0.12);
}

.flip-front p {
  color: rgba(255, 250, 242, 0.8);
}

.flip-back {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 214, 150, 0.26), transparent 34%),
    linear-gradient(135deg, #b87935 0%, #b06757 46%, #365f64 100%);
  color: var(--ivory);
  justify-content: center;
  transform: rotateY(180deg);
}

.flip-back h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.icon {
  font-size: 2.4rem;
  margin-bottom: auto;
}

.lesson-card button {
  background: #2f2b26;
  color: var(--ivory);
  margin-top: 20px;
}

.merge {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.14), transparent 42%),
    var(--scene-bg);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 100vh;
  padding: clamp(86px, 9vw, 128px) clamp(20px, 5vw, 72px) !important;
  gap: clamp(28px, 5vw, 72px);
}

.merge-image {
  align-self: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(37, 33, 29, 0.18);
  overflow: hidden;
  padding: 0;
}

.merge-image img {
  aspect-ratio: 1448 / 1086;
  border-radius: 8px;
  height: auto;
  object-fit: contain;
  object-position: center top;
  transform: none;
  width: 100%;
}

.sound {
  align-content: center;
  display: grid;
  padding: 0;
  scroll-margin-top: 112px;
}

.strings {
  background:
    radial-gradient(ellipse at 105% 50%, rgba(37, 33, 29, 0.42), transparent 26%),
    radial-gradient(ellipse at -8% 50%, rgba(255, 248, 236, 0.18), transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 13.5%, rgba(255, 248, 236, 0.16) 13.5% calc(13.5% + 1px), transparent calc(13.5% + 1px) 16%),
    repeating-linear-gradient(0deg, rgba(255, 248, 236, 0.025) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #513020 0%, #7e4b31 28%, #94613d 48%, #315f5c 100%);
  border: 1px solid rgba(255, 248, 236, 0.28);
  border-radius: 8px 42px 42px 8px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 248, 236, 0.08), inset 20px 0 38px rgba(37, 33, 29, 0.34);
  display: grid;
  gap: 13px;
  margin-top: 26px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 42px) clamp(22px, 4vw, 36px) 30px clamp(72px, 8vw, 92px);
  position: relative;
  transform-style: preserve-3d;
}

.strings::before {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.34), rgba(255, 248, 236, 0.74), rgba(255, 248, 236, 0.22)),
    linear-gradient(#2f241d, #2f241d);
  border-radius: 999px;
  bottom: 86px;
  box-shadow: 8px 0 22px rgba(37, 33, 29, 0.26);
  content: "";
  left: clamp(46px, 5vw, 60px);
  position: absolute;
  top: 24px;
  width: 9px;
  z-index: 1;
}

.strings::after {
  background:
    radial-gradient(circle, rgba(37, 33, 29, 0.58) 0 38%, transparent 39%),
    repeating-radial-gradient(circle, transparent 0 13px, rgba(242, 207, 138, 0.22) 14px 15px);
  border: 1px solid rgba(242, 207, 138, 0.34);
  border-radius: 50%;
  content: "";
  height: min(24vw, 170px);
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  right: max(-80px, -8vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(24vw, 170px);
}

.strings button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ivory);
  cursor: pointer;
  font-size: 0;
  height: 28px;
  position: relative;
  text-align: left;
  transition: transform 160ms ease;
  z-index: 2;
}

.strings button::before {
  align-items: center;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 248, 236, 0.38), transparent 25%),
    linear-gradient(135deg, rgba(49, 95, 92, 0.92), rgba(37, 33, 29, 0.9));
  border: 1px solid rgba(255, 248, 236, 0.28);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(37, 33, 29, 0.26);
  color: var(--ivory);
  content: attr(data-note);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  left: clamp(-58px, -6vw, -44px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}

.strings button::after {
  background: linear-gradient(90deg, rgba(255, 248, 236, 0.95), rgba(255, 248, 236, 0.62), rgba(255, 248, 236, 0.92));
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(37, 33, 29, 0.28), 0 0 16px rgba(255, 248, 236, 0.14);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.strings button:nth-of-type(1)::after { height: 3px; opacity: 0.92; }
.strings button:nth-of-type(2)::after { height: 2.6px; opacity: 0.88; }
.strings button:nth-of-type(3)::after { height: 2.2px; opacity: 0.84; }
.strings button:nth-of-type(4)::after { height: 1.8px; opacity: 0.8; }
.strings button:nth-of-type(5)::after { height: 1.4px; opacity: 0.78; }
.strings button:nth-of-type(6)::after { height: 1px; opacity: 0.75; }

.strings button:hover,
.strings button:focus-visible {
  transform: translateX(4px);
}

.strings button:focus-visible {
  outline: 2px solid rgba(242, 207, 138, 0.92);
  outline-offset: 6px;
}

.strings button.playing {
  animation: stringPulse 520ms ease;
  transform: scaleX(1.018);
}

.strings button.playing::before {
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 248, 236, 0.5), transparent 25%),
    linear-gradient(135deg, #c99342, #a76152 52%, #315f5c);
  box-shadow: 0 0 0 6px rgba(242, 207, 138, 0.16), 0 12px 28px rgba(37, 33, 29, 0.3);
}

.strings button.playing::after {
  background: linear-gradient(90deg, rgba(255, 250, 242, 1), rgba(242, 207, 138, 0.96), rgba(255, 250, 242, 1));
  box-shadow: 0 0 22px rgba(242, 207, 138, 0.58);
}

.strings output {
  background: rgba(37, 33, 29, 0.22);
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.86);
  display: inline-flex;
  font-weight: 800;
  min-height: 24px;
  padding: 10px 14px;
  position: relative;
  width: fit-content;
  z-index: 2;
}

.journey {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  min-height: 100vh;
}

.journey-sticky {
  align-self: start;
  position: relative;
  top: auto;
}

.journey-stack {
  display: grid;
  gap: clamp(56px, 7vw, 96px);
  perspective: 1200px;
}

.step-card {
  background: rgba(255, 248, 236, 0.1);
  border: 1px solid rgba(255, 248, 236, 0.17);
  border-radius: 8px;
  min-height: 300px;
  padding: 30px;
  position: relative;
  top: auto;
  transform-origin: center top;
}

.step-card[data-reveal] {
  transform: none;
}

.step-card:nth-child(2) {
  top: auto;
}

.step-card:nth-child(3) {
  top: auto;
}

.step-card span,
.hosting article span {
  color: var(--scene-accent);
  display: block;
  font-weight: 900;
  margin-bottom: 66px;
  text-transform: uppercase;
}

.step-card h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.fit-grid {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact {
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 121, 53, 0.18), transparent 28%),
    linear-gradient(135deg, #f4dfc2 0%, #f8f1e7 52%, #ead0ae 100%);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.quiz,
.recommendation,
.lead-form,
.hosting article,
.faq-grid article {
  background: color-mix(in srgb, var(--scene-bg), #fff8ec 10%);
  border: 1px solid color-mix(in srgb, var(--scene-ink), transparent 82%);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(8, 16, 17, 0.1);
  padding: clamp(22px, 4vw, 38px);
}

label,
fieldset {
  border: 0;
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
}

legend,
label {
  color: color-mix(in srgb, var(--scene-ink), transparent 28%);
  font-weight: 900;
}

input,
select,
textarea {
  background: color-mix(in srgb, var(--scene-bg), #fff8ec 20%);
  border: 1px solid color-mix(in srgb, var(--scene-ink), transparent 80%);
  border-radius: 8px;
  color: var(--scene-ink);
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--scene-accent);
  outline: 3px solid color-mix(in srgb, var(--scene-accent), transparent 78%);
}

input[type="range"] {
  accent-color: var(--scene-accent);
  padding-left: 0;
  padding-right: 0;
}

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

fieldset legend {
  grid-column: 1 / -1;
}

fieldset label {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--scene-ink), transparent 82%);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  min-height: 48px;
  padding: 10px;
}

fieldset input {
  min-height: auto;
  width: auto;
}

.recommendation {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.recommendation::before {
  background: linear-gradient(135deg, color-mix(in srgb, var(--scene-accent), transparent 72%), transparent 48%);
  content: "";
  height: 220px;
  position: absolute;
  right: -92px;
  top: -92px;
  transform: rotate(24deg);
  width: 220px;
}

.hosting {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
}

.faq {
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 150, 144, 0.18), transparent 30%),
    linear-gradient(135deg, #e6f0eb 0%, #f5efe4 100%);
  display: grid;
  gap: clamp(28px, 5vw, 58px);
}

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

.faq-grid article {
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(95, 150, 144, 0.16));
  border-color: rgba(79, 143, 136, 0.28);
  min-height: 230px;
}

.lead-form {
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(242, 207, 138, 0.2));
  border-color: rgba(184, 121, 53, 0.3);
}

.faq-grid h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.faq-grid p {
  color: color-mix(in srgb, var(--scene-ink), transparent 30%);
  line-height: 1.7;
}

.hosting-grid article {
  min-height: 280px;
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.hosting-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px) rotateX(5deg);
}

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

.thank-you-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(95, 150, 144, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(184, 121, 53, 0.2), transparent 30%),
    linear-gradient(135deg, #fff8ec 0%, #f4dfc2 100%);
  color: #25211d;
}

.thank-you-scene {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 100svh;
  overflow: auto;
  padding: clamp(22px, 5vw, 64px);
  position: relative;
  width: 100%;
}

.thank-you-scene::before {
  background:
    linear-gradient(90deg, rgba(37, 33, 29, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 33, 29, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.52;
  position: absolute;
}

.thank-you-card {
  align-items: center;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(37, 33, 29, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(37, 33, 29, 0.15);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  justify-self: center;
  max-width: 680px;
  overflow: visible;
  padding: clamp(24px, 3.4vw, 38px);
  position: relative;
  text-align: center;
  width: min(100%, 680px);
  z-index: 1;
}

.thank-you-card::after {
  content: none;
}

.thank-you-mark {
  align-items: center;
  background: #25211d;
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(37, 33, 29, 0.22);
  display: grid;
  height: clamp(64px, 9vw, 74px);
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: clamp(64px, 9vw, 74px);
  z-index: 1;
}

.thank-you-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.thank-you-copy,
.thank-you-steps,
.thank-you-actions {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.thank-you-copy {
  max-width: 640px;
}

.thank-you-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.04;
  margin-bottom: 14px;
  max-width: 100%;
}

.thank-you-copy p:not(.eyebrow) {
  color: rgba(37, 33, 29, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.62;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.thank-you-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 610px;
  width: 100%;
}

.thank-you-steps article {
  background: linear-gradient(135deg, rgba(95, 150, 144, 0.12), rgba(255, 248, 236, 0.78));
  border: 1px solid rgba(37, 33, 29, 0.1);
  border-radius: 8px;
  min-height: 0;
  padding: clamp(16px, 2.4vw, 22px);
}

.thank-you-steps span {
  color: #b87935;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.thank-you-steps h2 {
  font-family: inherit;
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.thank-you-steps p {
  color: rgba(37, 33, 29, 0.66);
  line-height: 1.58;
  margin-bottom: 0;
}

.thank-you-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.hidden {
  display: none;
}

.footer {
  align-items: center;
  background: #2f2b26;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(62px) rotateX(12deg) scale(0.98);
  transform-origin: center top;
  transition: opacity 700ms ease, transform 950ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}

.hero-panel[data-reveal] {
  opacity: 1;
  transform: none;
}

.lesson-grid [data-reveal]:nth-child(2),
.hosting-grid [data-reveal]:nth-child(2) {
  transition-delay: 120ms;
}

.lesson-grid [data-reveal]:nth-child(3),
.hosting-grid [data-reveal]:nth-child(3) {
  transition-delay: 240ms;
}

@keyframes titleFold {
  from {
    filter: blur(12px);
    opacity: 0;
    transform: rotateX(72deg) translateY(44px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

@keyframes buttonShine {
  0% {
    left: -80%;
    opacity: 0;
  }

  14%,
  74% {
    opacity: 1;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes scratchSpin {
  0% {
    transform: rotate(0) scale(1);
  }

  42% {
    transform: rotate(0.78turn) scale(1.08);
  }

  100% {
    transform: rotate(1turn) scale(1);
  }
}

@keyframes reverseSpin {
  to {
    transform: rotate(-1turn);
  }
}

@keyframes labelPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@keyframes marquee {
  to {
    transform: translateX(var(--marquee-distance));
  }
}

@keyframes chip-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(0.7deg);
  }
}

@keyframes soundMeter {
  0%,
  100% {
    height: 6px;
  }

  50% {
    height: 16px;
  }
}

@keyframes stringPulse {
  0% {
    filter: brightness(1);
    transform: scaleX(1);
  }
  38% {
    filter: brightness(1.4);
    transform: scaleX(1.045);
  }
  100% {
    filter: brightness(1);
    transform: scaleX(1.018);
  }
}

@media (min-width: 961px) and (max-height: 940px) {
  .hero {
    min-height: 100svh;
    padding-bottom: clamp(80px, 9vh, 104px);
    padding-top: clamp(146px, 16vh, 156px);
  }

  .hero-media {
    top: clamp(34px, 5vh, 48px);
  }

  .hero-image {
    transform-origin: center top;
  }

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

  h1 {
    font-size: clamp(2.3rem, 4.1vw, 4.4rem);
    line-height: 0.98;
    margin-bottom: 14px;
    max-width: 640px;
  }

  .hero-copy {
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.5;
    max-width: 540px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button,
  .lesson-card button {
    min-height: 42px;
    padding: 10px 18px;
  }

  .hero-orbit {
    --orbit-size: clamp(210px, 19vw, 270px);
    inset: auto clamp(54px, 8vw, 122px) clamp(72px, 9vh, 94px) auto;
  }

  .hero-panel {
    border-top: 1px solid rgba(255, 248, 236, 0.18);
    bottom: 0;
    display: grid;
    max-width: 760px;
  }

  .hero-panel div {
    padding: 12px 16px;
  }

  .hero-panel .stat {
    font-size: 1.35rem;
  }

  .hero-panel span:not(.stat) {
    font-size: 0.86rem;
  }
}

@media (max-width: 960px) {
  body.nav-open .site-header {
    backdrop-filter: none;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: var(--ivory);
  }

  body.nav-open .brand-mark {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  }

  .mobile-book-cta {
    display: inline-flex;
    margin-left: auto;
  }

  body.nav-open .mobile-book-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .nav-toggle {
    display: grid;
    height: 48px;
    width: 50px;
  }

  body.nav-open .nav-toggle {
    background: var(--ivory);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    color: #25211d;
    transform: none;
  }

  .nav {
    align-content: center;
    background:
      radial-gradient(circle at 78% 16%, rgba(242, 207, 138, 0.24), transparent 30%),
      radial-gradient(circle at 12% 88%, rgba(95, 150, 144, 0.38), transparent 36%),
      linear-gradient(135deg, rgba(37, 33, 29, 0.97), rgba(49, 95, 92, 0.95) 52%, rgba(167, 97, 82, 0.96));
    backdrop-filter: blur(22px);
    border: 0;
    clip-path: circle(0 at calc(100% - 48px) 42px);
    color: var(--ivory);
    display: grid;
    gap: clamp(8px, 1.25vh, 12px);
    height: 100dvh;
    inset: 0;
    justify-content: stretch;
    justify-items: center;
    max-width: none;
    min-height: 100dvh;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(92px, 13vh, 124px) clamp(22px, 8vw, 70px) clamp(28px, 6vh, 52px);
    pointer-events: none;
    position: fixed;
    transform: scale(1.02);
    transition: clip-path 620ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100vw;
    z-index: 33;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav::before {
    border: 1px solid rgba(255, 248, 236, 0.18);
    border-radius: 50%;
    content: "";
    height: min(86vw, 430px);
    left: 50%;
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(86vw, 430px);
  }

  .nav::after {
    border-bottom: 1px solid rgba(255, 248, 236, 0.12);
    color: rgba(255, 248, 236, 0.62);
    content: "Wissam Barazi";
    font-size: 0.76rem;
    font-weight: 900;
    left: clamp(22px, 8vw, 70px);
    letter-spacing: 0;
    padding-bottom: 14px;
    position: absolute;
    right: clamp(22px, 8vw, 70px);
    text-transform: uppercase;
    top: 86px;
  }

  .nav.open {
    clip-path: circle(145% at calc(100% - 48px) 42px);
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav a {
    align-items: center;
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(255, 248, 236, 0.16);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
    color: var(--ivory);
    display: flex;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.05rem, 4.8vw, 1.55rem);
    font-weight: 900;
    justify-content: space-between;
    line-height: 1.1;
    max-width: 540px;
    min-height: clamp(44px, 6.4vh, 60px);
    opacity: 0;
    padding: clamp(11px, 2.2vw, 15px) clamp(16px, 4.5vw, 24px);
    transform: translateY(26px) rotateX(12deg);
    transform-origin: center;
    transition: opacity 360ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), background 180ms ease, border-color 180ms ease;
    width: min(100%, 540px);
  }

  .nav a::after {
    background: var(--scene-accent);
    border-radius: 999px;
    content: "";
    height: 6px;
    opacity: 0.86;
    width: 6px;
  }

  .nav.open a {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }

  .nav.open a:nth-child(1) { transition-delay: 90ms; }
  .nav.open a:nth-child(2) { transition-delay: 135ms; }
  .nav.open a:nth-child(3) { transition-delay: 180ms; }
  .nav.open a:nth-child(4) { transition-delay: 225ms; }
  .nav.open a:nth-child(5) { transition-delay: 270ms; }
  .nav.open a:nth-child(6) { transition-delay: 315ms; }
  .nav.open a:nth-child(7) { transition-delay: 360ms; }
  .nav.open a:nth-child(8) { transition-delay: 405ms; }
  .nav.open a:nth-child(9) { transition-delay: 450ms; }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 248, 236, 0.17);
    border-color: rgba(242, 207, 138, 0.5);
    color: var(--ivory);
    transform: translateX(8px);
  }

  .nav .nav-book {
    background: var(--scene-accent);
    border-color: rgba(255, 248, 236, 0.34);
    color: #25211d;
  }

  .nav .nav-book:hover,
  .nav .nav-book:focus-visible {
    background: color-mix(in srgb, var(--scene-accent), #fff8ec 20%);
    color: #25211d;
  }

  .hero {
    min-height: 100svh;
    padding-top: 124px;
  }

  .hero-panel,
  .identity,
  .lesson-grid,
  .faq-grid,
  .merge,
  .journey,
  .fit-grid,
  .contact,
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 48px;
    position: relative;
    left: auto;
    right: auto;
  }

  .hero-orbit {
    --orbit-size: clamp(138px, 32vw, 168px);
    bottom: clamp(292px, 32vh, 360px);
    opacity: 0.95;
    right: clamp(18px, 6vw, 34px);
    top: auto;
    width: var(--orbit-size);
    z-index: 6;
  }

  .hero-orbit > span:not(.orbit-core, .orbit-ring, .orbit-tick) {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .orbit-core {
    width: clamp(58px, 14vw, 76px);
  }

  .orbit-tick {
    height: 24px;
  }

  .reel {
    min-height: auto;
  }

  .reel-pin {
    align-content: start;
    min-height: auto;
    overflow: visible;
    padding-bottom: clamp(72px, 12vw, 96px);
  }

  .reel-track {
    display: grid;
    gap: 16px;
    height: auto;
    min-height: 0;
    transform: none !important;
    will-change: auto;
    width: 100%;
  }

  .reel-panel {
    aspect-ratio: 4 / 5;
    flex-basis: auto;
    height: auto;
    min-height: clamp(360px, 70svh, 520px);
    width: 100%;
  }

  .reel-panel img {
    transform: none !important;
  }

  .reel-panel div {
    padding: clamp(20px, 6vw, 32px);
  }

  .reel-panel h3 {
    font-size: clamp(2rem, 8.6vw, 3.2rem);
    line-height: 1;
  }

  .identity-deck {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: visible;
    padding-bottom: 8px;
    width: 100%;
  }

  .photo-card {
    position: relative;
  }

  .photo-card img {
    aspect-ratio: 4 / 4.35;
  }

  .photo-main {
    inset: auto;
    justify-self: start;
    transform: rotate(-2deg) !important;
    width: min(82%, 430px);
  }

  .photo-side {
    inset: auto;
    justify-self: end;
    margin-top: clamp(-92px, -16vw, -56px);
    transform: rotate(2.5deg) !important;
    width: min(74%, 360px);
  }

  .merge-image {
    align-self: stretch;
    min-height: 0;
  }

  .merge {
    gap: clamp(36px, 10vw, 54px);
    min-height: 0;
    padding-bottom: clamp(70px, 12vw, 92px) !important;
  }

  .merge .sound {
    align-content: start;
    padding-top: clamp(6px, 2vw, 12px);
  }

  .journey-sticky,
  .step-card {
    position: relative;
    top: auto !important;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-card {
    grid-template-areas:
      "mark"
      "copy"
      "steps"
      "actions";
    grid-template-columns: 1fr;
  }

  .thank-you-mark {
    justify-self: start;
  }

  .thank-you-card::after {
    height: 360px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .brand small {
    display: none;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

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

  h1 {
    font-size: clamp(2rem, 9.2vw, 3.05rem);
    line-height: 0.99;
    max-width: 10.5ch;
  }

  h2,
  .reel-intro h2 {
    font-size: clamp(1.65rem, 7.2vw, 2.55rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: clamp(0.98rem, 4vw, 1.08rem);
    line-height: 1.58;
  }

  .reel-panel h3 {
    font-size: clamp(1.65rem, 7.2vw, 2.55rem);
    line-height: 1.04;
  }

  .hero-orbit {
    --orbit-size: clamp(166px, 43vw, 194px);
    bottom: clamp(270px, 32vh, 350px);
    opacity: 0.94;
    top: auto;
  }

  .hero-orbit > span:not(.orbit-core, .orbit-ring, .orbit-tick) {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 6px 9px;
  }

  .photo-side {
    inset: auto;
    margin-top: clamp(-70px, -15vw, -46px);
    width: min(76%, 330px);
  }

  .thank-you-scene {
    padding: 18px;
  }

  .thank-you-card {
    padding: 24px;
    width: calc(100vw - 40px);
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-copy h1 {
    max-width: 100%;
  }

  .thank-you-steps article {
    min-width: 0;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  .footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
