/* =========================================================================
   NADINE SURMANN — Yoga & Klangschalen
   A quiet, considered design system. Beige · sand · gold · earth.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1 · Tokens
   ------------------------------------------------------------------------- */
:root {
  /* palette */
  --c-paper:   #f6f1e7;
  --c-cream:   #efe7d7;
  --c-sand:    #e3d4ba;
  --c-clay:    #d4bf99;
  --c-bronze:  #b89968;
  --c-gold:    #c9a874;
  --c-earth:   #6b5d4f;
  --c-cocoa:   #4a3d31;
  --c-ink:     #2a221b;
  --c-mist:    rgba(255,255,255,.55);

  /* types */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:    "DM Mono", "SF Mono", monospace;

  /* scale (fluid) */
  --t-xs:   clamp(.72rem, .68rem + .15vw, .8rem);
  --t-sm:   clamp(.82rem, .78rem + .2vw, .92rem);
  --t-base: clamp(.98rem, .92rem + .25vw, 1.08rem);
  --t-md:   clamp(1.1rem, 1rem + .4vw, 1.25rem);
  --t-lg:   clamp(1.4rem, 1.2rem + .8vw, 1.8rem);
  --t-xl:   clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  --t-2xl:  clamp(2.6rem, 1.8rem + 3.6vw, 5rem);
  --t-3xl:  clamp(3.5rem, 2rem + 6.5vw, 7.5rem);
  --t-hero: clamp(3.2rem, 2rem + 6.5vw, 8rem);

  /* layout */
  --gutter: clamp(1.25rem, 1rem + 2vw, 2.5rem);
  --max:    1440px;
  --rad:    14px;
  --rad-lg: 28px;

  /* easing */
  --ease-out:   cubic-bezier(.2, .7, .15, 1);
  --ease-in:    cubic-bezier(.65, .05, .85, .35);
  --ease-soft:  cubic-bezier(.23, .69, .25, 1);
  --ease-snap:  cubic-bezier(.5, 1.5, .5, 1);
}

/* -------------------------------------------------------------------------
   2 · Reset & base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--c-paper);
}

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

body::before {
  /* subtle paper grain */
  content: "";
  position: fixed; inset: 0;
  background-image: radial-gradient(rgba(74,61,49,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: .55;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: none; color: inherit; }
a { color: inherit; text-decoration: none; cursor: none; }
input, textarea, select { font: inherit; color: inherit; cursor: none; }

::selection { background: var(--c-gold); color: var(--c-ink); }

/* type primitives */
em { font-family: var(--f-display); font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-earth);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow .dot,
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-bronze);
  box-shadow: 0 0 0 6px rgba(184,153,104,.12);
  flex: none;
}

.title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--c-cocoa);
  margin: 1.2rem 0 1.5rem;
}
.title em { color: var(--c-bronze); }
.title--center { text-align: center; }

.section__head {
  max-width: 880px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 var(--gutter);
}
.section__head .eyebrow { justify-content: center; }
.section__head--side {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  text-align: left;
  max-width: var(--max);
  margin: 0 auto 4rem;
}
.section__head--side .title { margin-bottom: 0; }

.section__lead {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-style: italic;
  font-weight: 300;
  color: var(--c-earth);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.4;
}
.section__lead--side {
  max-width: 320px; margin: 0;
  font-style: normal; font-family: var(--f-body);
  font-size: var(--t-base);
}

/* -------------------------------------------------------------------------
   3 · Buttons
   ------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 1.05rem 1.8rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  isolation: isolate;
  transition: color .5s var(--ease-out), transform .4s var(--ease-out);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  z-index: -1;
  transition: transform .6s var(--ease-out), opacity .4s var(--ease-out);
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  z-index: -1;
  background: var(--c-ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .55s var(--ease-out);
}
.btn:hover::after { transform: scaleY(1); transform-origin: top; }
.btn svg { transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { color: var(--c-paper); }
.btn--primary::before { background: var(--c-cocoa); }
.btn--primary:hover { color: var(--c-paper); }

.btn--ghost {
  color: var(--c-cocoa);
  border: 1px solid rgba(74,61,49,.25);
}
.btn--ghost::before { background: transparent; }
.btn--ghost:hover { color: var(--c-paper); }

/* -------------------------------------------------------------------------
   4 · Custom cursor (desktop only)
   ------------------------------------------------------------------------- */
.cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}
.cursor__dot,
.cursor__ring,
.cursor__label {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, width, height, opacity;
}
.cursor__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-cocoa);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s;
}
.cursor__ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(74,61,49,.35);
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              border-color .35s, background .35s, opacity .3s;
}
.cursor__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-paper);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}

/* hover states */
.is-hover-link .cursor__ring { width: 56px; height: 56px; border-color: var(--c-bronze); }
.is-hover-link .cursor__dot  { width: 0; height: 0; }
.is-hover-button .cursor__ring {
  width: 70px; height: 70px;
  background: var(--c-cocoa); border-color: transparent;
}
.is-hover-button .cursor__dot { background: var(--c-paper); }
.is-hover-image .cursor__ring {
  width: 100px; height: 100px;
  background: var(--c-cocoa);
  border-color: transparent;
}
.is-hover-image .cursor__dot   { width: 0; height: 0; }
.is-hover-image .cursor__label { opacity: 1; }

@media (hover: none), (max-width: 900px) {
  body { cursor: auto; }
  a, button, input, textarea, select { cursor: auto; }
  .cursor { display: none; }
}

/* -------------------------------------------------------------------------
   5 · Ambient canvas
   ------------------------------------------------------------------------- */
.ambient {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: .65;
}

/* -------------------------------------------------------------------------
   6 · Preloader
   ------------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--c-paper);
  overflow: hidden;
}
.preloader__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201,168,116,.25), transparent 60%),
    var(--c-paper);
}
.preloader__bowl { position: relative; z-index: 2; }
.preloader__ripple {
  fill: none;
  stroke: var(--c-bronze);
  stroke-width: .6;
  opacity: 0;
  transform-origin: 110px 120px;
  animation: ripple 2.4s var(--ease-out) infinite;
}
@keyframes ripple {
  0%   { transform: scale(.6); opacity: 0; stroke-width: 1.2; }
  20%  { opacity: .85; }
  100% { transform: scale(2.4); opacity: 0; stroke-width: .2; }
}

.preloader__meta {
  position: absolute;
  bottom: 8vh; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 1.4rem; min-width: 280px; z-index: 2;
}
.preloader__line {
  width: 220px; height: 1px;
  background: rgba(74,61,49,.18);
  position: relative; overflow: hidden;
}
.preloader__line span {
  position: absolute; top: 0; left: 0;
  width: 0; height: 100%;
  background: var(--c-cocoa);
  transition: width .3s var(--ease-out);
}
.preloader__row {
  display: flex; justify-content: space-between; width: 100%;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-earth);
}
.preloader__brand em { font-family: var(--f-display); }
.preloader__word {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-bronze);
  letter-spacing: .15em;
}

.is-loaded .preloader {
  pointer-events: none;
  animation: preloaderOut 1.4s var(--ease-soft) forwards;
}
@keyframes preloaderOut {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translateY(-101%); opacity: 1; }
}

/* -------------------------------------------------------------------------
   7 · Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem var(--gutter);
  transition: transform .55s var(--ease-out), background .4s var(--ease-out),
              padding .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
  color: var(--c-cocoa);
}
.nav.is-scrolled {
  background: rgba(246,241,231,.78);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  padding-top: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74,61,49,.07);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav__brand {
  display: inline-flex; align-items: center;
  gap: .7rem;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--c-cocoa);
}
.nav__brand-glyph { color: var(--c-bronze); }
.nav__brand em { color: var(--c-bronze); }

.nav__links {
  display: flex; gap: 2.4rem; justify-content: center;
}
.nav__links a {
  position: relative;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-earth);
  padding: .5rem .2rem;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-bronze);
  transition: width .5s var(--ease-out);
}
.nav__links a:hover { color: var(--c-cocoa); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }

.nav__cta {
  justify-self: end;
  display: inline-flex; align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(74,61,49,.25);
  transition: background .4s var(--ease-out), color .4s var(--ease-out), border-color .4s;
}
.nav__cta:hover { background: var(--c-cocoa); color: var(--c-paper); border-color: var(--c-cocoa); }
.nav__cta svg { transition: transform .4s var(--ease-out); }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(74,61,49,.18);
    flex-direction: column; gap: 5px;
    transition: background .4s, border-color .4s;
  }
  .nav__burger span {
    display: block; width: 18px; height: 1px; background: var(--c-cocoa);
    transition: transform .35s var(--ease-out), opacity .35s;
  }
  .is-menu-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
  .is-menu-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
}

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--c-paper);
  transform: translateY(-100%);
  transition: transform .7s var(--ease-soft);
  display: grid;
}
.is-menu-open .menu { transform: translateY(0); }
.menu__inner {
  align-self: center;
  display: flex; flex-direction: column;
  padding: 6rem var(--gutter) 3rem;
  gap: 1.2rem;
}
.menu__inner a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300;
  color: var(--c-cocoa);
  position: relative; padding: .3rem 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.is-menu-open .menu__inner a {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 80ms + 200ms);
}
.menu__inner a:nth-child(1) { --i: 1; }
.menu__inner a:nth-child(2) { --i: 2; }
.menu__inner a:nth-child(3) { --i: 3; }
.menu__inner a:nth-child(4) { --i: 4; }
.menu__inner a:nth-child(5) { --i: 5; }
.menu__inner a:nth-child(6) { --i: 6; }
.menu__cta {
  display: inline-block; margin-top: 1rem;
  font-style: italic; color: var(--c-bronze) !important;
}
.menu__foot {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: .3rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-earth);
  opacity: 0;
  transition: opacity .6s .8s var(--ease-out);
}
.is-menu-open .menu__foot { opacity: 1; }

/* -------------------------------------------------------------------------
   8 · HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  z-index: 2;
}

.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero__layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.hero__layer--sun {
  top: -20%;
}
.hero__layer--sun svg { width: 90vmin; height: 90vmin; max-width: 1100px; max-height: 1100px; }
.hero__layer--waves { bottom: 0; align-items: flex-end; }
.hero__layer--waves svg { width: 100%; height: 60vh; }
.hero__layer--figure {
  align-items: flex-end;
  padding-bottom: 8vh;
}
.hero__layer--figure svg {
  width: clamp(180px, 24vw, 320px);
  height: auto;
  opacity: .85;
}

.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-earth);
  display: inline-flex; align-items: center; gap: .8rem;
  margin-bottom: 2.5rem;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: .96;
  letter-spacing: -.02em;
  color: var(--c-cocoa);
  display: block;
}
.hero__title span {
  display: block;
  overflow: hidden;
}
.hero__title span > * { display: inline-block; }
.hero__title em { color: var(--c-bronze); font-style: italic; }

.hero__lead {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, .8rem + .8vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--c-earth);
  max-width: 560px;
  margin: 2.5rem auto 0;
  line-height: 1.45;
}

.hero__actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 3rem;
}

.hero__meta {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,61,49,.12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__meta > div {
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem;
}
.hero__metaLabel {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-earth);
}
.hero__metaValue {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-cocoa);
}

.hero__cue {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .8rem;
}
.hero__cue-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--c-cocoa));
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--c-bronze));
  animation: cueLine 2.4s var(--ease-out) infinite;
}
@keyframes cueLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}
.hero__cue-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-earth);
}

.hero__rail {
  position: absolute;
  top: 50%; transform: translateY(-50%) rotate(-90deg);
  display: flex; gap: .8rem;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-earth);
  white-space: nowrap;
}
.hero__rail--left  { left: calc(var(--gutter) - .5rem); transform-origin: left center; }
.hero__rail--right { right: calc(var(--gutter) - .5rem); transform-origin: right center; transform: translateY(-50%) rotate(90deg); }

@media (max-width: 900px) {
  .hero__rail { display: none; }
  .hero__meta { gap: 1.5rem; margin-top: 3rem; }
}

/* -------------------------------------------------------------------------
   9 · Marquee
   ------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(74,61,49,.08);
  border-bottom: 1px solid rgba(74,61,49,.08);
  background: var(--c-cream);
}
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--c-earth);
  animation: marquee 45s linear infinite;
}
.marquee__track span:nth-child(odd) { color: var(--c-bronze); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   10 · ABOUT
   ------------------------------------------------------------------------- */
.about {
  position: relative;
  padding: 10rem var(--gutter);
  z-index: 2;
}

.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__portrait {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--c-sand);
  box-shadow: 0 30px 60px rgba(74,61,49,.08), 0 8px 20px rgba(74,61,49,.05);
}
.about__portrait svg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about__portraitFrame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,248,235,.5);
  border-radius: calc(var(--rad-lg) - 8px);
  pointer-events: none;
}

.about__caption {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  background: var(--c-paper);
  padding: 1.2rem 1.5rem;
  border-radius: var(--rad);
  display: flex; flex-direction: column;
  gap: .4rem;
  box-shadow: 0 20px 40px rgba(74,61,49,.08);
  max-width: 220px;
}
.about__captionTitle {
  font-family: var(--f-display); font-style: italic;
  font-size: 1.1rem;
  color: var(--c-cocoa);
}
.about__captionLine {
  width: 30px; height: 1px; background: var(--c-bronze);
}
.about__captionMeta {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--c-earth);
}

.about__text {
  position: relative;
}

.about__body {
  margin: 1.5rem 0 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  max-width: 520px;
  color: var(--c-earth);
  font-size: var(--t-md);
  line-height: 1.7;
}

.about__signature {
  display: flex; align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.about__signature svg { width: 140px; height: auto; color: var(--c-cocoa); }
.about__signatureLabel {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-earth);
  max-width: 240px;
  line-height: 1.6;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,61,49,.12);
  max-width: 520px;
}
.about__pillars > div { display: flex; flex-direction: column; gap: .3rem; }
.about__pillars span {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--c-bronze);
  line-height: 1;
}
.about__pillars p {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-earth);
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__caption { right: 1rem; bottom: -1.5rem; }
}

/* -------------------------------------------------------------------------
   11 · COURSES
   ------------------------------------------------------------------------- */
.courses {
  position: relative;
  padding: 8rem var(--gutter);
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 50%, var(--c-paper) 100%);
  z-index: 2;
}

.courses__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.course {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--c-paper);
  border: 1px solid rgba(74,61,49,.08);
  border-radius: var(--rad-lg);
  display: flex; flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
  isolation: isolate;
  transition: transform .6s var(--ease-out), border-color .4s, background .6s;
  color: var(--c-cocoa);
}
.course::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,116,.18), transparent 60%);
  opacity: 0;
  transition: opacity .6s var(--ease-out);
  z-index: -1;
}
.course:hover {
  transform: translateY(-6px);
  border-color: rgba(184,153,104,.4);
}
.course:hover::before { opacity: 1; }

.course__num {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .2em;
  color: var(--c-bronze);
}

.course__icon {
  width: 80px; height: 80px;
  color: var(--c-bronze);
  margin: .5rem 0;
  transition: transform .6s var(--ease-out);
}
.course:hover .course__icon { transform: rotate(8deg) scale(1.05); }

.course__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.05;
  color: var(--c-cocoa);
}

.course__lead {
  color: var(--c-earth);
  line-height: 1.6;
}

.course__list {
  list-style: none;
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(74,61,49,.08);
  border-bottom: 1px solid rgba(74,61,49,.08);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-earth);
}
.course__list li {
  display: flex; align-items: center; gap: .8rem;
}
.course__list li::before {
  content: ""; width: 6px; height: 1px; background: var(--c-bronze);
}

.course__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.course__price {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--c-cocoa);
}
.course__price small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-earth);
  margin-left: .3rem;
}
.course__link {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-bronze);
  display: inline-flex; align-items: center; gap: .5rem;
  position: relative;
  padding-bottom: 4px;
}
.course__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--c-bronze);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform .5s var(--ease-out);
}
.course__link:hover::after { transform-origin: left; transform: scaleX(0); }
.course__link span { transition: transform .4s var(--ease-out); }
.course__link:hover span { transform: translateX(4px); }

.course--feature {
  background: var(--c-cocoa);
  color: var(--c-paper);
  border-color: transparent;
}
.course--feature .course__num,
.course--feature .course__icon { color: var(--c-clay); }
.course--feature .course__title { color: var(--c-paper); }
.course--feature .course__lead  { color: rgba(246,241,231,.78); }
.course--feature .course__list  { color: rgba(246,241,231,.65); border-color: rgba(246,241,231,.12); }
.course--feature .course__list li::before { background: var(--c-clay); }
.course--feature .course__price { color: var(--c-paper); }
.course--feature .course__price small { color: rgba(246,241,231,.6); }
.course--feature .course__link  { color: var(--c-clay); }
.course--feature .course__link::after { background: var(--c-clay); }
.course--feature::before { background: radial-gradient(ellipse at 50% 0%, rgba(201,168,116,.25), transparent 60%); }

.course__badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-cocoa);
  background: var(--c-clay);
  padding: .4rem .7rem;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .courses__grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   12 · EXPERIENCE / BENEFITS
   ------------------------------------------------------------------------- */
.experience {
  position: relative;
  padding: 10rem var(--gutter);
  overflow: hidden;
  z-index: 2;
}
.experience__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.experience__bg svg { width: 100%; height: 100%; }

.benefits {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(74,61,49,.1);
  border-left: 1px solid rgba(74,61,49,.1);
}
.benefits li {
  position: relative;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(74,61,49,.1);
  border-bottom: 1px solid rgba(74,61,49,.1);
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .6s var(--ease-out);
}
.benefits li:hover { background: rgba(255,255,255,.4); }

.benefits__num {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .2em;
  color: var(--c-bronze);
}
.benefits__icon {
  width: 40px; height: 40px;
  color: var(--c-bronze);
  margin: .3rem 0;
}
.benefits h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--c-cocoa);
}
.benefits p {
  color: var(--c-earth);
  line-height: 1.6;
  max-width: 320px;
}

@media (max-width: 900px) {
  .benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .benefits { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   13 · TESTIMONIALS / VOICES
   ------------------------------------------------------------------------- */
.voices {
  position: relative;
  padding: 8rem 0;
  background: var(--c-cocoa);
  color: var(--c-paper);
  overflow: hidden;
  z-index: 2;
}
.voices .eyebrow { color: rgba(246,241,231,.55); }
.voices .eyebrow .dot { background: var(--c-clay); box-shadow: 0 0 0 6px rgba(212,191,153,.12); }
.voices .title { color: var(--c-paper); }
.voices .title em { color: var(--c-clay); }

.voices__stage {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.voices__viewport {
  overflow: hidden;
  border-left: 1px solid rgba(246,241,231,.12);
  border-right: 1px solid rgba(246,241,231,.12);
}

.voices__rail {
  display: flex;
  transition: transform .9s var(--ease-soft);
  will-change: transform;
}

.voice {
  flex: 0 0 100%;
  padding: 3rem clamp(2rem, 6vw, 6rem);
  text-align: center;
}

.voice blockquote {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.4rem);
  line-height: 1.35;
  color: var(--c-paper);
  position: relative;
  margin-bottom: 2.5rem;
}
.voice blockquote::before {
  content: "\201C";
  position: absolute;
  top: -3rem; left: 50%;
  transform: translateX(-50%);
  font-size: 7rem;
  line-height: 1;
  color: var(--c-clay);
  opacity: .35;
  font-style: italic;
}
.voice em { color: var(--c-clay); }

.voice figcaption {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem;
}
.voice__name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--c-clay);
}
.voice__role,
.voice__stars {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(246,241,231,.55);
}
.voice__stars { color: var(--c-clay); letter-spacing: .35em; }

.voices__nav {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,231,.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-paper);
  transition: background .4s var(--ease-out), border-color .4s, transform .4s;
}
.voices__nav:hover { background: var(--c-paper); color: var(--c-cocoa); border-color: var(--c-paper); }
.voices__nav svg { width: 14px; height: 14px; }

.voices__dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 2.5rem;
}
.voices__dots button {
  width: 30px; height: 1px; background: rgba(246,241,231,.25);
  transition: background .4s, height .4s;
}
.voices__dots button.is-active { background: var(--c-clay); height: 2px; }

@media (max-width: 600px) {
  .voices__stage { grid-template-columns: 1fr; }
  .voices__nav { display: none; }
}

/* -------------------------------------------------------------------------
   14 · GALLERY
   ------------------------------------------------------------------------- */
.gallery {
  position: relative;
  padding: 10rem var(--gutter);
  z-index: 2;
}

.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 1rem;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  background: var(--c-sand);
  transition: transform .8s var(--ease-out);
}
.tile__art { position: absolute; inset: 0; }
.tile__art svg {
  width: 100%; height: 100%;
  transition: transform 1.2s var(--ease-out);
}
.tile:hover .tile__art svg { transform: scale(1.06); }

.tile figcaption {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-paper);
  padding: .6rem .8rem;
  background: rgba(42,34,27,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  display: inline-flex; align-self: flex-start;
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.tile:hover figcaption { opacity: 1; transform: translateY(0); }

.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 2; }
}

/* -------------------------------------------------------------------------
   15 · CONTACT
   ------------------------------------------------------------------------- */
.contact {
  position: relative;
  padding: 10rem var(--gutter);
  background: var(--c-cream);
  overflow: hidden;
  z-index: 2;
}
.contact__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.contact__bg svg { width: 100%; height: 100%; }

.contact__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  z-index: 1;
}

.contact__intro .title { margin-bottom: 1.5rem; }

.contact__lead {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-style: italic;
  color: var(--c-earth);
  max-width: 400px;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.contact__meta {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,61,49,.12);
}
.contact__meta li { display: flex; flex-direction: column; gap: .25rem; }
.contact__metaLabel {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-bronze);
}
.contact__meta a { color: var(--c-cocoa); transition: color .3s; }
.contact__meta a:hover { color: var(--c-bronze); }
.contact__meta li span:not(.contact__metaLabel) {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--c-cocoa);
  line-height: 1.4;
}

.contact__socials {
  display: flex; gap: .8rem; align-items: center;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-earth);
}
.contact__socials a { transition: color .3s; }
.contact__socials a:hover { color: var(--c-bronze); }
.contact__socials span { color: rgba(74,61,49,.3); }

/* form */
.form {
  position: relative;
  background: var(--c-paper);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--rad-lg);
  box-shadow: 0 30px 60px rgba(74,61,49,.06);
  display: flex; flex-direction: column; gap: 1.5rem;
}

.form__row { display: flex; flex-direction: column; gap: 1.5rem; }
.form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form__row--actions {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.field {
  position: relative;
  padding-top: 1.5rem;
  display: block;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: .8rem 0 .6rem;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--c-cocoa);
  outline: 0;
}
.field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; }
.field__label {
  position: absolute;
  left: 0; top: 1.6rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-earth);
  pointer-events: none;
  transition: transform .4s var(--ease-out), color .4s;
  transform-origin: left center;
}
.field input:focus ~ .field__label,
.field input:not(:placeholder-shown) ~ .field__label,
.field textarea:focus ~ .field__label,
.field textarea:not(:placeholder-shown) ~ .field__label,
.field select:focus ~ .field__label,
.field select:valid ~ .field__label {
  transform: translateY(-1.4rem) scale(.85);
  color: var(--c-bronze);
}
.field.has-error .field__line { background: #b65a4a; }
.field.has-error .field__label { color: #b65a4a; }
.field__line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(74,61,49,.2);
}
.field__line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--c-bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.field input:focus ~ .field__line::after,
.field textarea:focus ~ .field__line::after,
.field select:focus ~ .field__line::after { transform: scaleX(1); }
.field__chev {
  position: absolute;
  right: 0; top: 1.9rem;
  color: var(--c-earth);
  pointer-events: none;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: var(--t-sm);
  color: var(--c-earth);
  cursor: none;
  max-width: 300px;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  flex: none;
  width: 18px; height: 18px;
  border: 1px solid rgba(74,61,49,.3);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-paper);
  transition: background .3s, border-color .3s;
  margin-top: 2px;
}
.check__box svg {
  width: 12px; height: 12px;
  opacity: 0; transform: scale(.5);
  transition: opacity .3s var(--ease-snap), transform .3s var(--ease-snap);
}
.check input:checked ~ .check__box { background: var(--c-cocoa); border-color: var(--c-cocoa); }
.check input:checked ~ .check__box svg { opacity: 1; transform: scale(1); }
.check a { color: var(--c-bronze); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.form__success {
  position: absolute;
  inset: 0;
  background: var(--c-paper);
  border-radius: var(--rad-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(.96);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.form.is-sent .form__success { opacity: 1; pointer-events: auto; transform: scale(1); }
.form__success svg { color: var(--c-bronze); }
.form__success p {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-cocoa);
  line-height: 1.5;
  max-width: 360px;
}
.form__success em { color: var(--c-bronze); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__meta { grid-template-columns: 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   16 · FOOTER
   ------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--c-paper);
  padding: 4rem var(--gutter) 2rem;
  overflow: hidden;
  z-index: 2;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--c-cocoa);
}
.footer__brandGlyph { color: var(--c-bronze); }
.footer__brand em { color: var(--c-bronze); }

.footer__tag {
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  font-style: italic;
  color: var(--c-earth);
}
.footer__tag em { color: var(--c-bronze); }

.footer__big {
  font-family: var(--f-display);
  font-size: clamp(4rem, 18vw, 18rem);
  font-weight: 300;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74,61,49,.18);
  line-height: .85;
  text-align: center;
  margin: 1rem 0 1.5rem;
  user-select: none;
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,61,49,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-earth);
}
.footer__bottom ul { list-style: none; display: flex; gap: 1.5rem; }
.footer__bottom a:hover { color: var(--c-bronze); }

/* -------------------------------------------------------------------------
   17 · Reveal animations
   ------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal-delay="3"] { transition-delay: .36s; }

/* hero word stagger */
.hero__title span > * {
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.hero__title span:nth-child(1) > * { transition-delay: .8s; }
.hero__title span:nth-child(2) > * { transition-delay: .95s; }
.hero__title span:nth-child(3) > * { transition-delay: 1.1s; }
.is-loaded .hero__title span > * { transform: translateY(0); }

.hero__eyebrow,
.hero__lead,
.hero__actions,
.hero__meta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.is-loaded .hero__eyebrow { transition-delay: .6s; opacity: 1; transform: none; }
.is-loaded .hero__lead    { transition-delay: 1.4s; opacity: 1; transform: none; }
.is-loaded .hero__actions { transition-delay: 1.55s; opacity: 1; transform: none; }
.is-loaded .hero__meta    { transition-delay: 1.7s; opacity: 1; transform: none; }

.hero__cue {
  opacity: 0;
  transition: opacity 1.2s 2s var(--ease-out);
}
.is-loaded .hero__cue { opacity: 1; }

.hero__rail {
  opacity: 0;
  transition: opacity 1.2s 2.2s var(--ease-out);
}
.is-loaded .hero__rail { opacity: .85; }

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