/* ============================================================
   타이마사지 — Thai Sanctuary
   "정원에서 시작되는 깊은 휴식"
   ============================================================ */

:root {
  /* palette — thai temple garden */
  --teal-900: #0d2a26;
  --teal-800: #133935;
  --teal-700: #1c4d47;
  --teal-600: #266a62;
  --teal-500: #2f857c;
  --teal-50:  #e8f1ee;

  --gold-700: #8a6618;
  --gold-600: #b48528;
  --gold-500: #d4a13b;
  --gold-400: #e6bd5e;
  --gold-200: #f3e0aa;

  --rose-500: #c5635a;
  --rose-300: #e9b9a8;

  --cream-100: #fbf7ee;
  --cream-200: #f4ecd8;
  --cream-300: #ebdfc0;

  --ink: #1a1612;
  --ink-soft: #4a4135;
  --muted: #7d7363;

  /* type */
  --serif: "Noto Serif KR", "Nanum Myeongjo", serif;
  --sans:  "Noto Sans KR", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* layout */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 28px;

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============================================================
   reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ============================================================
   ambient — parallax floating layer
   (스크롤에 움직이는 오브젝트들의 컨테이너)
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.float {
  position: absolute;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.float.on { opacity: 1; }

/* lotus (large, top-right) */
.float--lotus-1 {
  top: 8vh;
  right: -120px;
  width: 420px;
  color: var(--rose-300);
  opacity: 0;
}
.float--lotus-1.on { opacity: 0.55; }

/* lotus (small, mid-left) */
.float--lotus-2 {
  top: 80vh;
  left: -80px;
  width: 260px;
  color: var(--gold-400);
}
.float--lotus-2.on { opacity: 0.45; }

/* leaf (palm, top-left) */
.float--leaf-1 {
  top: 30vh;
  left: -60px;
  width: 320px;
  color: var(--teal-500);
}
.float--leaf-1.on { opacity: 0.4; }

/* leaf (palm, mid-right) */
.float--leaf-2 {
  top: 130vh;
  right: -60px;
  width: 380px;
  color: var(--teal-600);
}
.float--leaf-2.on { opacity: 0.35; }

/* kanok (geometric thai ornament) */
.float--kanok-1 {
  top: 60vh;
  left: 18vw;
  width: 110px;
  color: var(--gold-500);
}
.float--kanok-1.on { opacity: 0.7; }

.float--kanok-2 {
  top: 200vh;
  right: 22vw;
  width: 90px;
  color: var(--gold-500);
}
.float--kanok-2.on { opacity: 0.6; }

.float--kanok-3 {
  top: 280vh;
  left: 8vw;
  width: 120px;
  color: var(--rose-500);
}
.float--kanok-3.on { opacity: 0.55; }

/* incense smoke wisps */
.float--smoke {
  position: absolute;
  width: 2px;
  background: linear-gradient(
    to top,
    transparent,
    rgba(212, 161, 59, 0.5) 30%,
    rgba(212, 161, 59, 0.2) 70%,
    transparent
  );
  border-radius: 50%;
  filter: blur(0.5px);
}
.float--smoke-1 { top: 100vh; left: 30vw; height: 200px; }
.float--smoke-2 { top: 220vh; left: 70vw; height: 240px; }
.float--smoke-3 { top: 350vh; left: 45vw; height: 180px; }
.float--smoke-1.on, .float--smoke-2.on, .float--smoke-3.on { opacity: 0.7; }

/* paper grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode: multiply;
}

/* progress strip */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-500));
  transition: width .15s linear;
}

/* ============================================================
   topbar
   ============================================================ */
.topbar {
  position: relative;
  z-index: 5;
  background: var(--teal-900);
  color: var(--cream-200);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar__group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 161, 59, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 161, 59, 0.15); }
  50%      { box-shadow: 0 0 0 7px rgba(212, 161, 59, 0); }
}
.key { color: var(--gold-400); }

/* ============================================================
   header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled {
  border-color: rgba(0, 0, 0, 0.07);
  background: rgba(251, 247, 238, 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--teal-800);
  color: var(--gold-400);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0;
  position: relative;
}
.brand__mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  opacity: 0.6;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav a {
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width .25s var(--ease);
}
.nav a:hover { color: var(--teal-700); }
.nav a:hover::after { width: 100%; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--teal-800);
  color: var(--cream-100);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.cta-btn:hover { transform: translateY(-1px); background: var(--teal-700); }
.cta-btn .arrow {
  width: 14px; height: 14px;
  transition: transform .2s var(--ease);
}
.cta-btn:hover .arrow { transform: translate(2px, -2px); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--teal-800);
  color: var(--cream-100);
  align-items: center;
  justify-content: center;
}

main { position: relative; z-index: 2; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 10vh, 110px) 0 clamp(80px, 14vh, 140px);
  overflow: visible;
}
.hero__pretitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__pretitle::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold-500);
}
.hero__title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 30px;
}
.hero__title .row { display: block; }
.hero__title .accent {
  color: var(--gold-600);
  font-style: italic;
  font-weight: 500;
  position: relative;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--gold-200);
  z-index: -1;
  border-radius: 2px;
}
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--solid {
  background: var(--teal-800);
  color: var(--cream-100);
}
.btn--solid:hover { background: var(--teal-700); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--teal-800);
  border: 1px solid var(--teal-800);
}
.btn--ghost:hover { background: var(--teal-800); color: var(--cream-100); }

/* hero stats strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(13, 42, 38, 0.1);
  border-bottom: 1px solid rgba(13, 42, 38, 0.1);
  padding: 22px 0;
}
.stat {
  padding: 0 24px;
  border-right: 1px solid rgba(13, 42, 38, 0.08);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--teal-800);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num span.unit {
  font-size: 0.55em;
  margin-left: 4px;
  color: var(--gold-600);
}
.stat__label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   section common
   ============================================================ */
section { position: relative; }
.section {
  padding: clamp(80px, 12vh, 140px) 0;
}
.section__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.section__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section__eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold-500);
}
.section__title {
  font-size: clamp(34px, 4.6vw, 56px);
  color: var(--teal-900);
}
.section__intro {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  max-width: 520px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__copy h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--teal-800);
  margin-bottom: 20px;
}
.about__copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about__signature {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(13, 42, 38, 0.1);
  font-family: var(--serif);
  color: var(--teal-700);
  font-size: 18px;
  font-style: italic;
}

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--teal-800);
}
.about__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(212, 161, 59, 0.25), transparent 60%),
    linear-gradient(180deg, var(--teal-700), var(--teal-900));
}
.about__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about__caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--cream-200);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ============================================================
   PROGRAMS / 메뉴
   ============================================================ */
.programs {
  background: var(--cream-100);
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program {
  position: relative;
  background: var(--cream-200);
  border-radius: var(--r-md);
  padding: 36px 30px 30px;
  border: 1px solid rgba(13, 42, 38, 0.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  overflow: hidden;
}
.program::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.program:hover {
  transform: translateY(-4px);
  background: var(--cream-100);
  box-shadow: 0 24px 60px -30px rgba(13, 42, 38, 0.25);
}
.program:hover::before { transform: scaleX(1); }
.program__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-700);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.program__icon {
  width: 56px; height: 56px;
  margin-bottom: 22px;
  color: var(--teal-700);
}
.program__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 6px;
}
.program__name-en {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.program__desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.program__meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 18px;
  border-top: 1px dashed rgba(13, 42, 38, 0.15);
}
.program__time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.program__price {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--teal-800);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.program__price small {
  font-size: 0.55em;
  color: var(--muted);
  margin-left: 3px;
  font-weight: 400;
}

/* ============================================================
   RITUAL / 과정
   ============================================================ */
.ritual {
  background:
    linear-gradient(180deg, var(--teal-800), var(--teal-900));
  color: var(--cream-200);
  padding: clamp(90px, 14vh, 160px) 0;
  position: relative;
  overflow: hidden;
}
.ritual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 161, 59, 0.12), transparent 60%);
  pointer-events: none;
}
.ritual .section__eyebrow { color: var(--gold-400); }
.ritual .section__eyebrow::before { background: var(--gold-400); }
.ritual .section__title { color: var(--cream-100); }
.ritual .section__intro { color: rgba(244, 236, 216, 0.75); }

.ritual__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.ritual__steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(212, 161, 59, 0.4) 0,
    rgba(212, 161, 59, 0.4) 6px,
    transparent 6px,
    transparent 12px
  );
}
.ritual__step {
  text-align: center;
  padding: 0 18px;
  position: relative;
}
.ritual__node {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--teal-900);
  border: 1px solid var(--gold-500);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--gold-400);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.ritual__step:hover .ritual__node {
  background: var(--gold-500);
  color: var(--teal-900);
  transform: scale(1.08);
}
.ritual__name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream-100);
  margin-bottom: 8px;
}
.ritual__desc {
  font-size: 13px;
  color: rgba(244, 236, 216, 0.65);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--cream-100);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__copy h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  color: var(--teal-900);
  margin-bottom: 26px;
  line-height: 1.15;
}
.contact__copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 460px;
}
.contact__list {
  display: grid;
  gap: 18px;
}
.contact__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(13, 42, 38, 0.08);
}
.contact__label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-700);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 4px;
}
.contact__value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--teal-800);
}
.contact__value a:hover { color: var(--gold-600); }

.contact__card {
  background: var(--teal-900);
  color: var(--cream-100);
  padding: 50px 44px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.contact__card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  opacity: 0.2;
}
.contact__card::before {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 160px; height: 160px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  opacity: 0.15;
}
.contact__card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-400);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact__card h3 {
  font-size: clamp(26px, 2.8vw, 34px);
  color: var(--cream-100);
  margin-bottom: 22px;
  line-height: 1.3;
  position: relative;
}
.contact__card p {
  color: rgba(244, 236, 216, 0.78);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact__card .btn--solid {
  background: var(--gold-500);
  color: var(--teal-900);
}
.contact__card .btn--solid:hover { background: var(--gold-400); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--teal-900);
  color: rgba(244, 236, 216, 0.6);
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 236, 216, 0.1);
}
.footer__brand .brand__name { color: var(--cream-100); }
.footer__brand .brand__sub { color: var(--gold-400); }
.footer__brand p {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.8;
  max-width: 360px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul { display: grid; gap: 10px; font-size: 13px; }
.footer__col a:hover { color: var(--gold-400); }
.footer__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__biz {
  color: rgba(244, 236, 216, 0.45);
}

/* ============================================================
   reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
.reveal--delay-4 { transition-delay: .32s; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .menu-toggle.open + .nav,
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: var(--pad);
    background: var(--cream-100);
    padding: 22px 26px;
    border-radius: var(--r-md);
    box-shadow: 0 24px 60px -30px rgba(0,0,0,.25);
    border: 1px solid rgba(0,0,0,.06);
    gap: 18px;
  }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .programs__grid { grid-template-columns: 1fr 1fr; }
  .ritual__steps { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .ritual__steps::before { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { aspect-ratio: 4 / 3; max-width: 560px; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid rgba(13, 42, 38, 0.08);
    padding-bottom: 22px;
  }
  .stat:nth-child(3), .stat:nth-child(4) {
    padding-top: 22px;
  }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .programs__grid { grid-template-columns: 1fr; }
  .ritual__steps { grid-template-columns: 1fr; gap: 36px 0; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .topbar__inner { font-size: 10px; }
  .topbar__group { gap: 14px; }
  .float--lotus-1 { width: 280px; opacity: 0; }
  .float--lotus-1.on { opacity: 0.35; }
  .float--leaf-1, .float--leaf-2 { width: 220px; }
  .contact__card { padding: 36px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .float, .progress, .reveal { transition: none !important; }
  html { scroll-behavior: auto; }
}
