:root {
  --bg: #f5ead8;
  --surface: #ebddc5;
  --text: #201e1d;
  --n100: #fbf5ea;
  --n200: #e8dcc8;
  --n300: #dccfb8;
  --n400: #c9b99e;
  --n500: #a9977c;
  --n600: #8a7d69;
  --n700: #5f564a;
  --n800: #33302b;
  --accent: #c67139;
  --accent-100: #f6e4d5;
  --accent-300: #e3b891;
  --accent-400: #d79a68;
  --accent-600: #b1602d;
  --accent-700: #8f4d24;
  --accent-800: #6d3a1b;
  --sage: #7a8a5e;
  --sage-700: #566040;
  --shadow-sm: 0 1px 3px rgba(32,30,29,.08), 0 1px 2px rgba(32,30,29,.06);
  --shadow-md: 0 6px 18px rgba(32,30,29,.10);
  --shadow-lg: 0 18px 44px rgba(32,30,29,.16);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--accent-700); text-decoration: none; }
a:hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* Headings are Cormorant Garamond (serif): large display headings at 300 (light), smaller object titles at 400. Figtree (--font-body) is only for body copy, eyebrows/nav/buttons/chips/labels, inputs and small meta. Heading weight never exceeds 400 — hierarchy comes from size, not weight. */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; margin: 0; }
input { font-family: var(--font-body); }

/* ---------- motion ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawerIn { from { opacity: 0; transform: translateX(46px); } to { opacity: 1; transform: none; } }
@keyframes sheetIn { from { opacity: 0; transform: translateY(70px); } to { opacity: 1; transform: none; } }
@keyframes gridIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes ringGrow { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: none; } }
@keyframes pulseDot { 0%, 100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.25); } }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].aw-in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-stagger].aw-in > * { opacity: 1; transform: none; }
[data-stagger].aw-in > *:nth-child(2) { transition-delay: .09s; }
[data-stagger].aw-in > *:nth-child(3) { transition-delay: .18s; }
[data-stagger].aw-in > *:nth-child(4) { transition-delay: .27s; }
[data-stagger].aw-in > *:nth-child(5) { transition-delay: .36s; }
[data-stagger].aw-in > *:nth-child(6) { transition-delay: .45s; }
[data-stagger].aw-in > *:nth-child(7) { transition-delay: .54s; }

.btn { transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease, border-color .35s ease, color .35s ease, opacity .3s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.link { position: relative; cursor: pointer; }
.link::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.link:hover::after { transform: scaleX(1); }
.arrow { display: inline-block; transition: transform .4s var(--ease); }
.link:hover .arrow { transform: translateX(6px); }

/* ---------- banner + header ---------- */
.banner { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 7px 16px; background: var(--n800); color: var(--n200); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; text-align: center; }
.header { position: sticky; top: 0; z-index: 30; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; padding: 16px clamp(18px,5vw,64px); background: rgba(245,234,216,.82); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: padding .4s var(--ease), background .4s ease, box-shadow .4s ease, border-color .4s ease; }
.header.scrolled { padding: 11px clamp(18px,5vw,64px); background: rgba(245,234,216,.96); border-bottom-color: var(--n300); box-shadow: var(--shadow-sm); }
.brand { cursor: pointer; margin-right: auto; }
.logo-crop { width: 168px; height: 46px; overflow: hidden; position: relative; }
.logo-crop img { position: absolute; top: -66px; left: -7px; width: 183px; mix-blend-mode: multiply; }
.brand-sub { font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--n600); margin-top: 2px; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px,2vw,26px); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; }
.nav span { color: var(--n700); cursor: pointer; transition: color .35s ease; }
.nav span.active, .nav span:hover { color: var(--accent-700); }
.cta-dark { padding: 11px 24px; border-radius: 999px; background: var(--n800); color: var(--n100); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; white-space: nowrap; border: 0; font-family: var(--font-body); }
.cta-dark:hover { background: var(--accent-700); }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(24px,4vw,56px); align-items: center; padding: clamp(32px,6vw,84px) clamp(18px,5vw,64px) clamp(28px,5vw,64px); }
.kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent-700); }
.hero h1 { font-family: var(--font-heading); font-weight: 300; font-size: clamp(46px,6.6vw,82px); line-height: 1.06; letter-spacing: -.005em; text-wrap: pretty; margin: 0 0 24px; }
.hero h1 em { font-style: italic; color: var(--n700); }
.hero p { font-size: 16px; line-height: 1.75; color: var(--n700); max-width: 42ch; margin: 0 0 32px; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-accent { padding: 16px 34px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; box-shadow: var(--shadow-sm); border: 0; font-family: var(--font-body); }
.btn-accent:hover { background: var(--accent-600); }
.btn-ghost { padding: 16px 4px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--n800); background: none; border: 0; cursor: pointer; font-family: var(--font-body); }
.btn-outline { padding: 15px 30px; border-radius: 999px; border: 1px solid var(--n400); background: none; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; color: var(--text); font-family: var(--font-body); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-700); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 40px; font-size: 12px; letter-spacing: .1em; color: var(--n600); }
.hero-media { position: relative; min-height: clamp(340px,52vw,560px); animation: riseIn 1s var(--ease) .15s both; }
.hero-frame { position: absolute; inset: 0; border-radius: 200px 200px 24px 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-parallax { position: absolute; inset: -8% 0; will-change: transform; }
.hero-parallax img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(.95) brightness(1.03); }
.hero-badge { position: absolute; bottom: -14px; left: -14px; width: 132px; height: 132px; border-radius: 999px; background: var(--surface); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-sm); }
.hero-badge b { font-family: var(--font-heading); font-size: 30px; line-height: 1; font-weight: 400; }
.hero-badge span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--n600); margin-top: 2px; }

/* ---------- sections ---------- */
section { scroll-margin-top: 92px; }
.studios { padding: clamp(28px,5vw,56px) clamp(18px,5vw,64px); border-top: 1px solid var(--n300); }
.studios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px,3vw,40px); }
.eyebrow { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--n600); margin-bottom: 14px; }
.studio-card { padding: 26px 0; border-top: 1px solid var(--n300); }
.studio-card h3 { font-family: var(--font-heading); font-size: 24px; letter-spacing: .02em; font-weight: 400; }
.studio-card .type { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-700); margin: 8px 0 14px; }
.studio-card p { margin: 0; color: var(--n700); font-size: 14.5px; line-height: 1.7; }

.classes { padding: clamp(36px,6vw,80px) clamp(18px,5vw,64px); background: var(--n100); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.sec-head h2 { font-weight: 300; font-size: clamp(32px,4.2vw,48px); line-height: 1.1; text-wrap: pretty; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(16px,2.4vw,28px); }
.card { cursor: pointer; display: flex; flex-direction: column; background: none; border: 0; padding: 0; text-align: left; font-family: var(--font-body); color: var(--text); transition: transform .45s var(--ease); }
.card:hover { transform: translateY(-6px); }
.card-img { height: 300px; border-radius: 24px; overflow: hidden; background: var(--surface); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); filter: saturate(.88) contrast(.96) brightness(1.02); }
.card:hover .card-img img { transform: scale(1.06); }
.card-kind { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-700); margin: 18px 0 8px; }
.card-title { font-family: var(--font-heading); font-weight: 400; font-size: 23px; line-height: 1.15; transition: color .4s ease; }
.card:hover .card-title { color: var(--accent-700); }
.card p { margin: 10px 0 14px; font-size: 14px; line-height: 1.65; color: var(--n700); }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-meta { font-size: 12px; letter-spacing: .08em; color: var(--n600); }
.card-cta { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-700); white-space: nowrap; opacity: 0; transform: translateY(6px); transition: opacity .4s ease, transform .4s ease; }
.card:hover .card-cta { opacity: 1; transform: none; }

.teachers { padding: clamp(36px,6vw,80px) clamp(18px,5vw,64px); }
.teachers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px,4vw,56px); align-items: center; }
.teachers h2 { font-weight: 300; font-size: clamp(32px,4.2vw,48px); line-height: 1.1; text-wrap: pretty; margin-bottom: 20px; }
.teachers p.lead { margin: 0 0 26px; max-width: 44ch; font-size: 15.5px; line-height: 1.75; color: var(--n700); text-wrap: pretty; }
.inst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 18px; }
.inst { text-align: center; position: relative; }
.inst-photo { aspect-ratio: 1; border-radius: 999px; overflow: hidden; background: var(--surface); }
.inst-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .6s ease; filter: saturate(.88) brightness(1.02); }
.inst:hover .inst-photo img { transform: scale(1.06); filter: brightness(1.08) saturate(1.02); }
.inst-name { font-family: var(--font-heading); font-weight: 400; font-size: 18px; margin-top: 14px; }
.inst-role { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--n600); margin-top: 4px; }
.inst-card { position: absolute; left: 50%; bottom: calc(100% - 26px); width: 230px; margin-left: -115px; background: var(--bg); border: 1px solid var(--n300); border-radius: 24px; padding: 18px 20px; box-shadow: var(--shadow-lg); z-index: 20; text-align: left; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .4s ease, transform .4s var(--ease); }
.inst:hover .inst-card, .inst:focus-within .inst-card { opacity: 1; transform: none; pointer-events: auto; }
.inst-card h4 { font-family: var(--font-heading); font-size: 20px; line-height: 1.15; margin: 0; font-weight: 400; }
.inst-card .role { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-700); margin: 8px 0 10px; }
.inst-card .lines { font-size: 12.5px; line-height: 1.6; color: var(--n700); }
.inst-card .note { font-size: 12px; line-height: 1.6; color: var(--n600); margin-top: 8px; }
.inst-card button { margin-top: 14px; width: 100%; padding: 11px 14px; border-radius: 999px; background: var(--n800); color: var(--n100); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; border: 0; font-family: var(--font-body); }
.inst-card button:hover { background: var(--accent-700); }

.schedule { padding: clamp(36px,6vw,80px) clamp(18px,5vw,64px); background: var(--surface); }
.schedule h2 { font-weight: 300; font-size: clamp(32px,4.8vw,54px); line-height: 1.06; }
.demo-pill { display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; background: var(--accent-100); color: var(--accent-800); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.dot-accent { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.filters { display: flex; flex-wrap: wrap; gap: 24px 28px; margin: 34px 0 8px; padding-bottom: 22px; border-bottom: 1px solid var(--n400); }
.filter-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--n600); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 9px 18px; border-radius: 999px; cursor: pointer; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--n400); background: transparent; color: var(--n700); font-family: var(--font-body); }
.chip.on { border-color: var(--accent); background: var(--accent); color: #fff; }
.results { margin-left: auto; align-self: flex-end; font-size: 12.5px; color: var(--n600); }
.week { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 26px; }
.week.anim { animation: gridIn .45s var(--ease) both; }
.day { display: flex; flex-direction: column; gap: 12px; }
.day-head { display: flex; align-items: baseline; gap: 8px; padding: 12px 4px; border-bottom: 1px solid var(--n400); }
.day-head b { font-family: var(--font-heading); font-size: 20px; letter-spacing: .04em; font-weight: 400; }
.day-head span { font-size: 11.5px; letter-spacing: .1em; color: var(--n600); }
.cls { background: var(--n100); border: 1px solid var(--n200); border-radius: 22px; padding: 18px 18px 16px; display: flex; flex-direction: column; gap: 2px; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.cls:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-300); }
.cls.full { background: var(--n200); border-color: var(--n300); opacity: .78; }
.cls-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.cls-time { font-size: 15px; letter-spacing: .08em; color: var(--n800); }
.cls-type { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--n600); }
.cls-name { font-family: var(--font-heading); font-weight: 400; font-size: 19px; line-height: 1.18; margin-top: 6px; }
.cls-inst { font-size: 12.5px; color: var(--n700); margin-top: 4px; }
.cls-studio { font-size: 11.5px; color: var(--n600); margin-top: 2px; }
.cls-booked { font-size: 11px; letter-spacing: .1em; color: var(--n600); margin-top: 14px; }
.cls-cap { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.mats { display: flex; gap: 4px; }
.mat { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.mat.taken { background: var(--n400); }
.mat.near { background: var(--sage); }
.cap-label { font-size: 11px; letter-spacing: .06em; color: var(--accent-700); }
.cap-label.near { color: var(--sage-700); }
.cap-label.full { color: var(--n500); }
.cls-cta { margin-top: 16px; text-align: center; padding: 12px 16px; border-radius: 999px; cursor: pointer; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; background: var(--n800); color: var(--n100); border: 0; font-family: var(--font-body); }
.cls-cta.wait { background: none; border: 1px solid var(--n400); color: var(--n700); }
.day-empty { font-size: 11px; letter-spacing: .1em; color: var(--n500); padding: 2px 4px; }
.sched-note { margin: 40px 0 0; font-size: 12.5px; line-height: 1.7; color: var(--n600); max-width: 70ch; }

.final { padding: clamp(40px,7vw,96px) clamp(18px,5vw,64px) clamp(70px,8vw,110px); text-align: center; }
.final h2 { font-weight: 300; font-size: clamp(36px,5.6vw,64px); line-height: 1.06; text-wrap: pretty; margin-bottom: 18px; }
.final h2 em { font-style: italic; color: var(--n700); }
.final p { margin: 0 auto 30px; max-width: 40ch; font-size: 15.5px; line-height: 1.75; color: var(--n700); }
.journey { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; margin-top: 38px; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--n600); }
.journey b { color: var(--accent-700); font-weight: 400; }

footer { padding: clamp(30px,5vw,60px) clamp(18px,5vw,64px); border-top: 1px solid var(--n300); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; font-size: 13px; color: var(--n700); }
footer div { line-height: 1.8; }
.footer-legal { color: var(--n600); font-size: 11.5px; }

/* ---------- sticky mobile cta ---------- */
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(245,234,216,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--n300); align-items: center; gap: 12px; }
.sticky-cta .note { flex: 1; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--n600); }
.sticky-cta button { padding: 14px 26px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; border: 0; font-family: var(--font-body); }

/* ---------- drawer ---------- */
.backdrop { position: fixed; inset: 0; background: rgba(32,30,29,.36); backdrop-filter: blur(3px); z-index: 55; animation: fadeIn .35s ease both; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(560px, 100%); background: var(--bg); z-index: 60; overflow-y: auto; box-shadow: var(--shadow-lg); animation: drawerIn .45s var(--ease) both; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px clamp(20px,4vw,34px); position: sticky; top: 0; background: rgba(245,234,216,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--n300); z-index: 5; }
.drawer-step { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--n600); }
.drawer-close { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--n400); background: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; color: var(--n700); }
.drawer-close:hover { border-color: var(--accent); color: var(--accent-700); }
.drawer-body { padding: clamp(22px,4vw,34px); animation: riseIn .45s var(--ease) both; }
.drawer-body h3 { font-family: var(--font-heading); font-size: clamp(28px,4vw,38px); font-weight: 400; line-height: 1.1; margin-bottom: 10px; }
.drawer-body h3.small { font-size: clamp(26px,3.6vw,34px); margin-bottom: 18px; }
.drawer-body p.lead { margin: 0 0 24px; font-size: 14px; line-height: 1.7; color: var(--n700); }
.detail-photo { height: 230px; overflow: hidden; background: var(--surface); }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(.96); }
.rows { display: flex; flex-direction: column; }
.row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid var(--n300); font-size: 13.5px; }
.row:last-child { border-bottom: 1px solid var(--n300); }
.row span.k { color: var(--n600); }
.row span.v { text-align: right; }
.accent { color: var(--accent-700); }
.summary { background: var(--surface); border-radius: 26px; padding: 20px 22px; margin-bottom: 24px; }
.summary .name { font-family: var(--font-heading); font-weight: 400; font-size: 22px; line-height: 1.15; }
.summary .with { font-size: 13px; color: var(--n700); margin-top: 6px; }
.summary .meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 12px; font-size: 12.5px; color: var(--n700); }
.change { display: inline-block; margin-top: 14px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--n600); cursor: pointer; }
.pick-list { display: flex; flex-direction: column; gap: 10px; animation: gridIn .4s var(--ease) both; }
.pick-row { background: var(--n100); border: 1px solid var(--n200); border-radius: 22px; padding: 16px 20px; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.pick-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-300); }
.pick-row.full { opacity: .78; }
.pick-top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pick-top .t { font-size: 15px; letter-spacing: .06em; min-width: 52px; }
.pick-top .n { font-family: var(--font-heading); font-weight: 400; font-size: 19px; }
.pick-bot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; font-size: 12.5px; color: var(--n700); }
.field { display: block; }
.field-label { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--n700); margin-bottom: 9px; }
.input { width: 100%; padding: 16px 22px; border-radius: 999px; border: 1px solid var(--n400); background: var(--n100); font-size: 16px; color: var(--text); outline: none; transition: border-color .3s ease, box-shadow .3s ease; }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-100); }
.form-stack { display: flex; flex-direction: column; gap: 18px; }
.btn-confirm { margin-top: 4px; text-align: center; padding: 18px 32px; border-radius: 999px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); border: 0; font-family: var(--font-body); }
.btn-confirm[disabled] { background: var(--n300); color: var(--n600); box-shadow: none; cursor: not-allowed; }
.hint { font-size: 11.5px; line-height: 1.65; color: var(--n600); padding-bottom: 10px; }
.detail-cta { margin-top: 26px; width: 100%; text-align: center; padding: 17px 28px; border-radius: 999px; cursor: pointer; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); border: 0; font-family: var(--font-body); }
.detail-cta.wait { background: none; border: 1px solid var(--n500); color: var(--n800); box-shadow: none; }

/* payment */
.price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--n300); }
.price-big { font-family: var(--font-heading); font-weight: 400; font-size: 34px; line-height: 1; }
.methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.method { padding: 20px 22px; border-radius: 26px; cursor: pointer; text-align: left; border: 1px solid var(--n400); background: transparent; font-family: var(--font-body); color: var(--text); }
.method.on { border-color: var(--accent); background: var(--accent-100); }
.method b { font-family: var(--font-heading); font-size: 21px; font-weight: 400; display: block; }
.method span { font-size: 12px; color: var(--n600); margin-top: 6px; display: block; }
.qr-panel { margin-top: 26px; background: var(--n100); border: 1px solid var(--n200); border-radius: 28px; padding: 26px 24px; text-align: center; animation: riseIn .5s var(--ease) both; }
.qr-panel h4 { font-family: var(--font-heading); font-size: 24px; margin: 0; font-weight: 400; }
.qr-code { display: grid; grid-template-columns: repeat(21, 1fr); gap: 1px; width: min(220px, 62vw); aspect-ratio: 1; padding: 14px; background: var(--bg); border-radius: 18px; border: 1px solid var(--n300); box-shadow: var(--shadow-sm); margin: 22px auto 16px; animation: ringGrow .6s var(--ease) both; }
.qr-code i { border-radius: 1px; }
.qr-code i.on { background: var(--n800); }
.qr-steps { text-align: left; margin: 22px auto 0; max-width: 340px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--n700); }
.tiny { font-size: 11px; letter-spacing: .08em; color: var(--n600); }
.card-form { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; animation: riseIn .5s var(--ease) both; }
.card-row { display: flex; gap: 12px; flex-wrap: wrap; }
.card-row .field { flex: 1 1 110px; }
.pay-bar { position: sticky; bottom: 0; display: flex; align-items: center; gap: 14px; padding: 16px clamp(22px,4vw,34px) calc(16px + env(safe-area-inset-bottom)); background: rgba(245,234,216,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--n300); }
.pay-bar .total { flex: 1; }
.pay-bar .total span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--n600); }
.pay-bar .total b { font-family: var(--font-heading); font-size: 22px; line-height: 1.2; display: block; font-weight: 400; }
.pay-bar button { padding: 16px 28px; border-radius: 999px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; white-space: nowrap; background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); border: 0; font-family: var(--font-body); }
.pay-bar button[disabled] { background: var(--n300); color: var(--n600); box-shadow: none; cursor: not-allowed; }
.pay-state { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: clamp(26px,4vw,38px); text-align: center; animation: fadeIn .4s ease both; }
.pay-state h4 { font-family: var(--font-heading); font-size: 26px; margin: 0; font-weight: 400; }
.spinner-ring { width: 78px; height: 78px; border-radius: 999px; border: 1px solid var(--accent-300); display: flex; align-items: center; justify-content: center; }
.spinner-ring i { width: 12px; height: 12px; border-radius: 999px; background: var(--accent); animation: pulseDot 1.4s ease-in-out infinite; }

/* confirmation */
.done { padding: clamp(26px,4vw,38px); text-align: center; animation: riseIn .5s var(--ease) both; }
.done-ring { width: 112px; height: 112px; margin: 8px auto 28px; border-radius: 999px; background: var(--accent-100); display: flex; align-items: center; justify-content: center; animation: ringGrow .6s var(--ease) both; }
.done-ring.grey { background: var(--n200); }
.done-ring .glyph { width: 70px; height: 70px; border-radius: 999px; border: 1px solid var(--n400); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 400; font-size: 26px; color: var(--n700); }
.done h3 { font-size: clamp(32px,5vw,46px); line-height: 1.06; text-wrap: pretty; margin-bottom: 16px; font-family: var(--font-heading); font-weight: 300; }
.done h3 em { font-style: italic; }
.done p.lead { margin: 0 0 28px; font-size: 15px; line-height: 1.75; color: var(--n700); }
.ticket { background: var(--surface); border-radius: 28px; padding: 24px 26px; text-align: left; }
.ticket .name { font-family: var(--font-heading); font-weight: 400; font-size: 25px; line-height: 1.15; }
.ticket .with { font-size: 13px; color: var(--n700); margin-top: 6px; }
.sent { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 10px 18px; border-radius: 999px; background: var(--accent-100); color: var(--accent-800); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; }
.sent i { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.mybooking { margin-top: 18px; border: 1px solid var(--n300); border-radius: 26px; padding: 20px 22px; text-align: left; animation: riseIn .45s var(--ease) both; font-size: 13.5px; line-height: 1.8; color: var(--n700); }
.done-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.done-actions .btn-outline, .done-actions .cta-dark { padding: 14px 26px; font-size: 11px; letter-spacing: .16em; }
.message-link { display: inline-block; margin-top: 20px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--n600); }
.done .fineprint { margin: 22px 0 10px; font-size: 12px; line-height: 1.7; color: var(--n600); }

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  .drawer { top: auto; left: 0; width: 100%; height: 92vh; border-radius: 28px 28px 0 0; animation: sheetIn .4s var(--ease) both; }
  .cards { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; scrollbar-width: none; }
  .cards > * { flex: 0 0 76%; scroll-snap-align: start; }
  .hero-parallax { transform: none !important; }
  [data-reveal], [data-stagger] > * { transition-duration: .38s; }
  [data-stagger].aw-in > * { transition-delay: 0s; }
  .final { padding-bottom: 120px; }
  .inst-card { width: 200px; margin-left: -100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}
