:root{
  --background: oklch(0.975 0.008 80);
  --foreground: oklch(0.24 0.03 350);
  --muted: oklch(0.94 0.012 75);
  --muted-foreground: oklch(0.49 0.035 350);
  --surface: oklch(0.945 0.015 70);
  --blush: oklch(0.89 0.045 5);
  --accent: oklch(0.45 0.13 355);
  --accent-foreground: oklch(0.98 0 0);
  --dark: oklch(0.21 0.025 350);
  --border: oklch(0.885 0.012 75);
  --header-bg: oklch(0.22 0.03 350 / 0.8);
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,blockquote{ font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; }
em{ font-style: italic; font-weight: 300; }
a{ color: inherit; text-decoration: none; }
img, video{ display: block; }
button{ font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- reveal primitives (JS adds .in) ---------- */
.rv-h{ opacity: 0; transform: translateY(30px); filter: blur(12px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.rv-h.in{ opacity: 1; transform: none; filter: blur(0); }
.rv-t{ opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv-t.in{ opacity: 1; transform: none; }
.rv-m{ clip-path: inset(100% 0 0 0); transition: clip-path 1.1s var(--ease); }
.rv-m.in{ clip-path: inset(0 0 0 0); }

/* parallax inner images */
.plx-wrap{ overflow: hidden; position: relative; }
.plx-wrap > img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); will-change: transform; }

.eyebrow{ font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); display: flex; gap: 96px; }
.pill-cta{ display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--foreground);
  border-radius: 9999px; padding: 8px 8px 8px 24px; font-size: 14px; font-weight: 500; transition: background .2s; }
.pill-cta:hover{ background: rgba(255,255,255,.9); }
.pill-cta .badge{ width: 36px; height: 36px; border-radius: 9999px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; }
.pill-cta.dark-cta{ background: var(--foreground); color: #fff; }
.pill-cta.dark-cta:hover{ background: oklch(0.30 0.03 350); }
svg.icon{ width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- header ---------- */
header{ position: fixed; top: 24px; left: 0; right: 0; z-index: 50; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; }
.wordmark{ line-height: 1; color: #fff; transition: color .35s; }
.wordmark .wm-1{ display: block; font-family: var(--font-display); font-weight: 500; font-size: 22px; }
.wordmark .wm-2{ display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: .75; margin-top: 4px; }
header.scrolled .wordmark{ color: var(--foreground); }
nav.pill{ display: flex; align-items: center; gap: 4px; background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); color: #fff; border-radius: 9999px; padding: 8px; }
nav.pill a.nav-link{ padding: 8px 20px; font-size: 14px; border-radius: 9999px; opacity: .8; transition: opacity .2s; }
nav.pill a.nav-link:hover{ opacity: 1; }
nav.pill a.nav-cta{ margin-left: 8px; display: flex; align-items: center; gap: 8px; padding: 8px 20px;
  font-size: 14px; font-weight: 500; border-radius: 9999px; background: #fff; color: var(--foreground); transition: background .2s; }
nav.pill a.nav-cta:hover{ background: rgba(255,255,255,.9); }

/* ---------- hero ---------- */
.hero{ position: relative; height: 100vh; min-height: 780px; width: 100%; overflow: hidden; }
.hero video, .hero .hero-fallback{ position: absolute; inset: -12% 0 0 0; height: 124%; width: 100%; object-fit: cover; will-change: transform; }
.hero .ov1{ position: absolute; inset: 0; background: rgba(0,0,0,.30); }
.hero .ov2{ position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent 55%); }
.hero-content{ position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 64px; }
.hero-row{ display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.hero-eyebrow{ color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .25em; font-size: 12px; }
.hero h1{ color: #fff; font-size: 76px; line-height: 1.04; margin-top: 20px; }
.hero .hero-desc{ margin-top: 32px; color: rgba(255,255,255,.85); font-size: 20px; line-height: 29px; width: 620px; }
.hero-ctas{ display: flex; align-items: center; gap: 24px; flex-shrink: 0; padding-bottom: 4px; }
.hero-ctas .ghost{ color: #fff; display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; }
.hero-strip{ margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: space-between; letter-spacing: .2em;
  color: rgba(255,255,255,.7); text-transform: uppercase; font-size: 12px; }
.hero-strip .pg b{ color: #fff; font-weight: 400; }
.hero-strip .mid{ display: flex; align-items: center; gap: 24px; }

/* ---------- about ---------- */
.about{ position: relative; padding: 144px 48px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; }
.about-visual{ grid-column: span 5; position: sticky; top: 128px; height: fit-content; }
.about-main{ aspect-ratio: 3/4; }
.about-float{ position: absolute; right: -40px; bottom: -64px; width: 220px; aspect-ratio: 3/4;
  overflow: hidden; border: 6px solid var(--background); }
.about-float img{ width: 100%; height: 100%; object-fit: cover; }
.about-copy{ grid-column: 7 / span 6; }
.about-copy .eyebrow{ margin-bottom: 48px; }
.about-copy h2{ font-size: 58px; line-height: 1.06; }
.about-copy p.story{ margin-top: 24px; color: var(--muted-foreground); line-height: 1.65; font-size: 17px; max-width: 560px; }
.about-copy p.story:first-of-type{ margin-top: 40px; }
.about-copy .pullquote{ margin-top: 40px; font-family: var(--font-display); font-style: italic;
  font-size: 26px; line-height: 1.35; color: var(--accent); max-width: 540px; }
.about-copy .sig{ margin-top: 24px; font-family: var(--font-display); font-style: italic; font-size: 22px; }
.about-copy .cta-row{ margin-top: 40px; }

/* ---------- practice ---------- */
.practice{ padding: 128px 48px; background: var(--surface); }
.practice-intro{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; margin-bottom: 80px; }
.practice-intro h2{ grid-column: span 7; font-size: 58px; line-height: 1.06; }
.practice-intro p{ grid-column: 9 / span 4; padding-top: 16px; color: var(--muted-foreground); line-height: 1.65; }
.stats{ display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats > div{ padding: 40px; }
.stats > div + div{ border-left: 1px solid var(--border); }
.stats .num{ font-family: var(--font-display); font-size: 56px; line-height: 1.1; }
.stats .lbl{ font-size: 14px; color: var(--muted-foreground); margin-top: 12px; max-width: 220px; }
.principles{ margin-top: 96px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; }
.principles .plx-wrap{ grid-column: span 4; aspect-ratio: 3/4; }
.principles-grid{ grid-column: 6 / span 7; display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; align-content: start; }
.principle{ border-top: 1px solid var(--border); padding: 24px 0 40px; }
.principle .idx{ font-size: 12px; color: var(--muted-foreground); }
.principle h4{ font-size: 28px; margin-top: 8px; }
.jp-quote{ margin: 96px auto 0; max-width: 880px; text-align: center; }
.jp-quote blockquote{ font-size: 30px; font-style: italic; line-height: 1.4; }
.jp-quote p{ font-size: 14px; color: var(--muted-foreground); margin-top: 16px; }

/* ---------- moments carousel ---------- */
.moments{ padding: 128px 48px; }
.moments-head{ padding-left: 335px; }
.moments-head .eyebrow{ margin-bottom: 64px; }
.moments-head h2{ font-size: 58px; line-height: 1.06; }
.carousel{ margin-top: 80px; position: relative; }
.carousel-row{ display: flex; gap: 12px; }
.carousel-intro{ flex-shrink: 0; width: 324px; }
.carousel-intro p{ width: 270px; font-size: 17px; color: var(--muted-foreground); line-height: 1.6; }
.carousel-viewport{ position: relative; overflow: hidden; flex: 1; min-width: 0; }
.carousel-track{ display: flex; gap: 12px; transition: transform .7s var(--ease); }
.cardm{ flex-shrink: 0; }
.cardm .imgw{ aspect-ratio: 3/4; overflow: hidden; background: var(--muted); }
.cardm .imgw img{ width: 100%; height: 100%; object-fit: cover; }
.cardm .lbl{ padding-top: 24px; font-size: 12px; letter-spacing: .2em; color: var(--muted-foreground); text-transform: uppercase; }
.cardm .cap{ font-size: 20px; margin-top: 8px; font-family: var(--font-display); }
.puck{ position: absolute; top: 35%; left: 50%; transform: translate(-50%,-50%) scale(.85); z-index: 10;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  display: flex; align-items: center; justify-content: center; gap: 16px; border-radius: 9999px;
  width: 126px; height: 126px; background: rgba(72,60,66,.18);
  -webkit-backdrop-filter: blur(84px); backdrop-filter: blur(84px); cursor: pointer; }
.carousel:hover .puck{ opacity: 1; transform: translate(-50%,-50%) scale(1); pointer-events: auto; }
.puck button{ display: flex; align-items: center; justify-content: center; color: #fff; transition: opacity .2s; cursor: pointer; }
.puck button:disabled{ opacity: .3; cursor: default; }
.puck svg.icon{ width: 28px; height: 28px; }

/* ---------- story videos ---------- */
.stories{ padding: 128px 48px; background: color-mix(in oklab, var(--blush) 40%, var(--background)); overflow: hidden; }
.stories h2{ font-size: 58px; text-align: center; line-height: 1.06; }
.stories .sub{ text-align: center; color: var(--muted-foreground); margin: 24px auto 0; max-width: 580px; }
.reels{ margin-top: 80px; display: flex; justify-content: center; gap: 40px; align-items: flex-start; }
.reel{ width: 340px; aspect-ratio: 9/16; border-radius: 28px; overflow: hidden; position: relative;
  background: var(--dark); box-shadow: 0 25px 50px -12px rgba(40,20,35,.35); will-change: transform; }
.reel.center{ transform: scale(1.06); }
.reel video{ width: 100%; height: 100%; object-fit: cover; }
.reel .sound{ position: absolute; bottom: 16px; right: 16px; width: 40px; height: 40px; border-radius: 9999px;
  background: rgba(255,255,255,.2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; color: #fff; }

/* ---------- membership ---------- */
.membership{ padding: 128px 48px; background: var(--dark); color: #fff;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; align-items: center; }
.membership .plx-wrap{ grid-column: span 5; aspect-ratio: 3/4; }
.membership-copy{ grid-column: 7 / span 6; }
.membership-copy .eyebrow{ color: rgba(255,255,255,.5); }
.membership-copy h2{ font-size: 58px; line-height: 1.06; margin-top: 24px; }
.price-line{ margin-top: 40px; display: flex; align-items: flex-end; gap: 12px; }
.price-line .price{ font-family: var(--font-display); font-size: 72px; line-height: 1; }
.price-line .per{ color: rgba(255,255,255,.6); padding-bottom: 8px; }
.features{ margin-top: 40px; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.features > div{ padding: 20px 0; display: flex; align-items: center; gap: 16px; font-size: 15px; }
.features > div + div{ border-top: 1px solid rgba(255,255,255,.15); }
.features svg.icon{ width: 20px; height: 20px; color: var(--blush); flex-shrink: 0; }
.membership-copy .cta-row{ margin-top: 48px; }

/* ---------- testimonials ---------- */
.testimonials{ padding: 128px 48px; }
.testimonials .eyebrow{ justify-content: center; }
.testimonials h2{ font-size: 58px; text-align: center; margin-top: 24px; }
.quotes{ margin: 80px auto 0; max-width: 1024px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.quote-card{ background: var(--surface); padding: 48px; }
.quote-card blockquote{ font-size: 24px; line-height: 1.4; }
.quote-card .attr{ margin-top: 32px; font-size: 14px; color: var(--muted-foreground); }

/* ---------- schedule ---------- */
.schedule{ padding: 128px 48px; background: var(--surface); }
.schedule-head{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; margin-bottom: 72px; align-items: end; }
.schedule-head h2{ grid-column: span 7; font-size: 58px; line-height: 1.06; }
.schedule-head p{ grid-column: 9 / span 4; color: var(--muted-foreground); line-height: 1.65; }
.schedule-grid{ display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.sch-day{ border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 20px 36px; min-height: 220px; }
.sch-day .dow{ font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); }
.sch-day .times{ margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.sch-day .time{ font-family: var(--font-display); font-size: 22px; line-height: 1.1; }
.sch-day .time small{ display: block; font-family: var(--font-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-foreground); margin-top: 2px; }
.schedule .note{ margin-top: 40px; font-size: 14px; color: var(--muted-foreground); }

/* ---------- private parties ---------- */
.parties{ padding: 128px 48px; background: color-mix(in oklab, var(--blush) 45%, var(--background));
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 56px; align-items: center; overflow: hidden; }
.parties .plx-wrap{ grid-column: span 5; aspect-ratio: 3/4; }
.parties-copy{ grid-column: 7 / span 6; }
.parties-copy .eyebrow{ margin-bottom: 20px; }
.parties-copy h2{ font-size: 50px; line-height: 1.08; }
.parties-copy .locale{ margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--accent); }
.parties-copy p.body{ margin-top: 24px; color: var(--muted-foreground); line-height: 1.7; font-size: 16px; max-width: 560px; }
.parties-copy .closing{ margin-top: 28px; font-family: var(--font-display); font-size: 22px; line-height: 1.4; max-width: 560px; }
.parties-copy .cta-row{ margin-top: 32px; }

/* ---------- signup ---------- */
.signup{ padding: 144px 48px; background: var(--surface);
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 64px; }
.signup-left{ grid-column: span 5; }
.signup-left h2{ font-size: 58px; line-height: 1.06; margin-top: 24px; }
.signup-left .lede{ margin-top: 32px; color: var(--muted-foreground); line-height: 1.65; max-width: 520px; }
.steps{ margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.steps > div{ display: flex; align-items: center; gap: 20px; }
.steps .n{ width: 36px; height: 36px; border-radius: 9999px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); flex-shrink: 0; }
.signup-left .imgw{ margin-top: 64px; max-width: 380px; aspect-ratio: 4/5; overflow: hidden; }
.signup-left .imgw img{ width: 100%; height: 100%; object-fit: cover; }
.form-card{ grid-column: 7 / span 6; background: var(--background); padding: 48px; border: 1px solid var(--border); height: fit-content; }
.form-card h3{ font-size: 30px; }
.form-card form{ margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.field label{ display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.field input[type=text], .field input[type=email], .field textarea{
  width: 100%; border: 1px solid var(--border); background: transparent; padding: 14px 16px;
  font-family: inherit; font-size: 15px; color: inherit; outline: none; transition: border-color .2s; resize: vertical; }
.field input:focus, .field textarea:focus{ border-color: var(--accent); }
.radio-group{ display: flex; flex-direction: column; gap: 2px; }
.radio-group label.opt{ display: flex; align-items: center; gap: 12px; padding: 12px 4px; font-size: 14px; cursor: pointer; }
.radio-group input{ accent-color: var(--accent); width: 16px; height: 16px; }
.char-count{ font-size: 12px; color: var(--muted-foreground); text-align: right; margin-top: 6px; }
.submit-btn{ width: 100%; border-radius: 9999px; background: var(--accent); color: var(--accent-foreground);
  padding: 16px; font-size: 15px; font-weight: 500; transition: opacity .2s; }
.submit-btn:hover{ opacity: .9; }
.form-micro{ font-size: 12px; color: var(--muted-foreground); text-align: center; margin-top: 16px; }
.form-success{ display: none; text-align: center; padding: 64px 24px; }
.form-success svg{ width: 32px; height: 32px; stroke: var(--accent); fill: none; stroke-width: 2; margin: 0 auto 24px; }
.form-success p{ font-family: var(--font-display); font-size: 26px; line-height: 1.35; }

/* ---------- instagram ---------- */
.insta{ padding: 128px 48px; }
.insta-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.insta-head .eyebrow{ margin-bottom: 24px; }
.insta-head h2{ font-size: 58px; line-height: 1.06; }
.insta-grid{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta-grid a{ position: relative; aspect-ratio: 1; overflow: hidden; display: block; background: var(--muted); }
.insta-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta-grid a:hover img{ transform: scale(1.06); }
.ig-ov{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: oklch(0.24 0.03 350 / 0.45); color: #fff; opacity: 0; transition: opacity .35s var(--ease); }
.insta-grid a:hover .ig-ov{ opacity: 1; }
.ig-ov svg.icon{ width: 26px; height: 26px; }

/* ---------- footer ---------- */
footer{ background: var(--dark); color: #fff; padding: 80px 48px;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; align-items: center; }
footer .logo-col{ grid-column: span 3; }
footer .logo-col img{ width: 160px; height: auto; }
footer .tag-col{ grid-column: span 5; font-family: var(--font-display); font-size: 28px; line-height: 1.4; }
footer .links-col{ grid-column: 10 / span 3; display: flex; flex-direction: column; gap: 16px; }
footer .links-col a{ display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
footer .links-col a:hover{ color: #fff; }
footer .links-col svg.icon{ width: 14px; height: 14px; }
footer .bottom{ grid-column: 1 / -1; margin-top: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15);
  display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .2em; }

/* ============================================================
   MOBILE — app-like experience (<768px)
   ============================================================ */
.mbar, .sheet{ display: none; }

@media (max-width: 767px){
  *{ -webkit-tap-highlight-color: transparent; }
  body{ font-size: 15px; }

  /* --- top header: wordmark only --- */
  header{ top: 16px; padding: 0 20px; }
  header nav.pill{ display: none; }

  /* --- bottom app bar --- */
  .mbar{ position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 8px;
    background: var(--header-bg); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-radius: 9999px; padding: 8px; color: #fff; box-shadow: 0 12px 32px rgba(20,10,16,.35); }
  .mbar-menu{ display: flex; align-items: center; gap: 10px; padding: 12px 20px;
    font-size: 14px; font-weight: 500; color: #fff; border-radius: 9999px; }
  .mbar-menu svg.icon{ width: 18px; height: 18px; }
  .mbar-cta{ display: flex; align-items: center; gap: 8px; background: #fff; color: var(--foreground);
    border-radius: 9999px; padding: 12px 22px; font-size: 14px; font-weight: 500; }

  /* --- slide-up sheet menu --- */
  .sheet{ display: block; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .sheet-backdrop{ position: absolute; inset: 0; background: rgba(15,8,12,.45);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    opacity: 0; transition: opacity .4s var(--ease); }
  .sheet-panel{ position: absolute; left: 0; right: 0; bottom: 0; background: var(--dark); color: #fff;
    border-radius: 28px 28px 0 0; padding: 14px 28px calc(36px + env(safe-area-inset-bottom));
    transform: translateY(104%); transition: transform .55s var(--ease);
    max-height: 88svh; overflow: auto; }
  .sheet.open{ pointer-events: auto; }
  .sheet.open .sheet-backdrop{ opacity: 1; }
  .sheet.open .sheet-panel{ transform: translateY(0); }
  .grabber{ width: 44px; height: 5px; border-radius: 9999px; background: rgba(255,255,255,.25); margin: 0 auto 8px; }
  .sheet-head{ display: flex; justify-content: space-between; align-items: center; padding: 8px 0 20px; }
  .sheet-head .sh-wm{ font-family: var(--font-display); font-size: 19px; }
  .sheet-head .sh-wm small{ display: block; font-family: var(--font-sans); font-size: 9px;
    letter-spacing: .3em; text-transform: uppercase; opacity: .6; margin-top: 4px; }
  .sheet-close{ width: 44px; height: 44px; border-radius: 9999px; border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center; color: #fff; }
  .sheet-links{ display: flex; flex-direction: column; }
  .sheet-links a{ display: flex; align-items: baseline; gap: 16px; padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12); font-family: var(--font-display); font-size: 32px;
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .sheet-links a:active{ opacity: .7; }
  .sheet-links a.accent{ color: var(--blush); }
  .sheet.open .sheet-links a:nth-child(1){ opacity: 1; transform: none; transition-delay: .12s; }
  .sheet.open .sheet-links a:nth-child(2){ opacity: 1; transform: none; transition-delay: .18s; }
  .sheet.open .sheet-links a:nth-child(3){ opacity: 1; transform: none; transition-delay: .24s; }
  .sheet.open .sheet-links a:nth-child(4){ opacity: 1; transform: none; transition-delay: .30s; }
  .sheet.open .sheet-links a:nth-child(5){ opacity: 1; transform: none; transition-delay: .36s; }
  .sheet-foot{ margin-top: 28px; display: flex; gap: 24px; font-size: 13px; color: rgba(255,255,255,.6); }
  body.sheet-open{ overflow: hidden; }

  /* --- hero --- */
  .hero{ height: 100svh; min-height: 640px; }
  .hero-content{ padding: 0 20px 120px; }
  .hero-row{ flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero h1{ font-size: clamp(38px, 10.5vw, 46px); }
  .hero .hero-desc{ width: 100%; font-size: 16px; line-height: 1.55; margin-top: 20px; }
  .hero-eyebrow{ font-size: 10px; }
  .hero-ctas{ padding-bottom: 0; gap: 20px; flex-wrap: wrap; }
  .hero-strip{ margin-top: 36px; font-size: 9px; letter-spacing: .18em; }
  .hero-strip .mid{ display: none; }

  .eyebrow{ gap: 40px; }

  /* --- about --- */
  .about{ display: block; padding: 96px 20px; }
  .about-visual{ position: static; }
  .about-float{ right: 0; bottom: -40px; width: 140px; border-width: 4px; }
  .about-copy{ margin-top: 76px; }
  .about-copy .eyebrow{ margin-bottom: 28px; }
  .about-copy h2{ font-size: 36px; }
  .about-copy p.story{ font-size: 16px; }
  .about-copy .pullquote{ font-size: 21px; }

  /* --- practice --- */
  .practice{ padding: 96px 20px; }
  .practice-intro{ display: block; margin-bottom: 48px; }
  .practice-intro h2{ font-size: 36px; }
  .practice-intro p{ padding-top: 20px; }
  .stats{ grid-template-columns: 1fr 1fr; border-bottom: none; }
  .stats > div{ padding: 24px 16px; border-bottom: 1px solid var(--border); }
  .stats > div + div{ border-left: none; }
  .stats > div:nth-child(even){ border-left: 1px solid var(--border); }
  .stats .num{ font-size: 40px; }
  .stats .lbl{ font-size: 12px; }
  .principles{ display: block; margin-top: 64px; }
  .principles-grid{ margin-top: 48px; column-gap: 24px; }
  .principle{ padding: 16px 0 24px; }
  .principle h4{ font-size: 20px; }
  .jp-quote{ margin-top: 64px; }
  .jp-quote blockquote{ font-size: 21px; }

  /* --- moments: native swipe --- */
  .moments{ padding: 96px 0 96px 20px; }
  .moments-head{ padding-left: 0; padding-right: 20px; }
  .moments-head .eyebrow{ margin-bottom: 28px; }
  .moments-head h2{ font-size: 36px; }
  .carousel{ margin-top: 48px; }
  .carousel-row{ display: block; }
  .carousel-intro{ width: auto; padding-right: 20px; }
  .carousel-intro p{ width: auto; font-size: 15px; }
  .carousel-viewport{ margin-top: 32px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .carousel-viewport::-webkit-scrollbar{ display: none; }
  .carousel-track{ transform: none !important; width: max-content !important; padding-right: 20px; }
  .cardm{ width: 76vw !important; scroll-snap-align: start; }
  .cardm .cap{ font-size: 17px; }
  .puck{ display: none; }

  /* --- stories: native swipe reels --- */
  .stories{ padding: 96px 0; }
  .stories h2{ font-size: 34px; padding: 0 20px; }
  .stories .sub{ padding: 0 20px; font-size: 14px; }
  .reels{ margin-top: 48px; justify-content: flex-start; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory; padding: 12px 20px 24px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .reels::-webkit-scrollbar{ display: none; }
  .reel, .reel.center{ width: 74vw; flex-shrink: 0; scroll-snap-align: center; transform: none !important; }

  /* --- membership --- */
  .membership{ display: block; padding: 96px 20px; }
  .membership-copy{ margin-top: 48px; }
  .membership-copy h2{ font-size: 34px; }
  .price-line .price{ font-size: 54px; }
  .features > div{ font-size: 14px; }

  /* --- schedule --- */
  .schedule{ padding: 96px 20px; }
  .schedule-head{ display: block; margin-bottom: 40px; }
  .schedule-head h2{ font-size: 34px; }
  .schedule-head p{ margin-top: 20px; }
  .schedule-grid{ grid-template-columns: 1fr 1fr; }
  .sch-day{ min-height: 0; padding: 20px 16px 24px; }
  .sch-day .time{ font-size: 18px; }

  /* --- private parties --- */
  .parties{ display: block; padding: 96px 20px; }
  .parties-copy{ margin-top: 40px; }
  .parties-copy h2{ font-size: 32px; }
  .parties-copy .closing{ font-size: 19px; }

  /* --- testimonials --- */
  .testimonials{ padding: 96px 20px; }
  .testimonials h2{ font-size: 34px; }
  .quotes{ grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .quote-card{ padding: 32px; }
  .quote-card blockquote{ font-size: 20px; }

  /* --- signup --- */
  .signup{ display: block; padding: 96px 20px; }
  .signup-left h2{ font-size: 36px; }
  .signup-left .imgw{ display: none; }
  .form-card{ margin-top: 56px; padding: 28px 22px; }
  .form-card h3{ font-size: 25px; }
  .field input[type=text], .field input[type=email], .field textarea{ font-size: 16px; }

  /* --- instagram --- */
  .insta{ padding: 96px 20px; }
  .insta-head{ display: block; margin-bottom: 40px; }
  .insta-head h2{ font-size: 34px; }
  .insta-head .pill-cta{ margin-top: 28px; }
  .insta-grid{ grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* --- footer --- */
  footer{ display: block; padding: 80px 20px 150px; }
  footer .logo-col img{ width: 120px; }
  footer .tag-col{ margin-top: 40px; font-size: 22px; }
  footer .links-col{ margin-top: 40px; }
  footer .bottom{ margin-top: 48px; flex-direction: column; gap: 10px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce){
  .rv-h, .rv-t, .rv-m{ opacity: 1; transform: none; filter: none; clip-path: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ============================================================
   INTERIOR PAGES (multi-page site)
   ============================================================ */
.page-intro{ padding: 176px 48px 0; }
.page-intro .eyebrow{ margin-bottom: 22px; }
.page-intro h1{ font-size: 72px; line-height: 1.05; max-width: 920px; }
.page-intro h1 em{ font-style: italic; font-weight: 300; }
.page-intro .lead{ margin-top: 26px; color: var(--muted-foreground); font-size: 18px; line-height: 1.65; max-width: 640px; }

/* footer page-nav column */
footer .nav-col{ grid-column: 7 / span 3; display: flex; flex-direction: column; gap: 14px; }
footer .nav-col a{ color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
footer .nav-col a:hover{ color: #fff; }
footer .nav-col .col-h{ font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
/* when nav-col present, shift links col */
footer.has-nav .tag-col{ grid-column: 4 / span 3; }
footer.has-nav .links-col{ grid-column: 10 / span 3; }

/* generic interior CTA band */
.cta-band{ padding: 120px 48px; background: var(--dark); color: #fff; text-align: center; }
.cta-band h2{ font-size: 50px; line-height: 1.08; max-width: 760px; margin: 0 auto; }
.cta-band p{ color: rgba(255,255,255,.7); margin: 22px auto 0; max-width: 520px; line-height: 1.6; }
.cta-band .cta-row{ margin-top: 40px; display: flex; justify-content: center; }

@media (max-width: 767px){
  .page-intro{ padding: 120px 20px 0; }
  .page-intro h1{ font-size: 38px; }
  .page-intro .lead{ font-size: 16px; }
  footer .nav-col{ margin-top: 40px; }
  .cta-band{ padding: 88px 20px; }
  .cta-band h2{ font-size: 32px; }
}

@media (max-width: 767px){
  .sheet.open .sheet-links a:nth-child(6){ opacity:1; transform:none; transition-delay:.42s; }
}

/* ============================================================
   HOME landing helpers
   ============================================================ */
.home-intro{ padding: 128px 48px 40px; display: grid; grid-template-columns: repeat(12,1fr); gap: 48px; align-items: end; }
.home-intro h2{ grid-column: span 7; font-size: 58px; line-height: 1.06; }
.home-intro .ri{ grid-column: 9 / span 4; }
.home-intro .ri p{ color: var(--muted-foreground); line-height: 1.65; }
.home-intro .ri .cta-row{ margin-top: 28px; }
.highlights{ padding: 24px 48px 128px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hl{ border-top: 1px solid var(--border); padding-top: 24px; }
.hl .n{ font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); }
.hl h3{ font-size: 26px; margin-top: 10px; }
.hl p{ margin-top: 12px; color: var(--muted-foreground); line-height: 1.6; font-size: 15px; }
.hl a.more{ display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--accent); }
@media (max-width: 767px){
  .home-intro{ display: block; padding: 88px 20px 24px; }
  .home-intro h2{ font-size: 34px; }
  .home-intro .ri{ margin-top: 28px; }
  .highlights{ display: block; padding: 8px 20px 88px; }
  .hl{ margin-top: 28px; }
}

nav.pill a.nav-link.active{ opacity: 1; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }

/* ============================================================
   INTERIOR PAGE HERO (banner with page title)
   ============================================================ */
.page-hero{ position: relative; height: 58vh; min-height: 440px; max-height: 640px; width: 100%;
  overflow: hidden; display: flex; align-items: flex-end; }
.page-hero img.bg{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .ov1{ position: absolute; inset: 0; background: rgba(0,0,0,.38); }
.page-hero .ov2{ position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.58), transparent 62%); }
.page-hero .ph-inner{ position: relative; width: 100%; padding: 0 48px 56px; }
.page-hero .eyebrow{ color: rgba(255,255,255,.72); }
.page-hero h1{ color: #fff; font-size: 72px; line-height: 1.05; margin-top: 18px; max-width: 1000px; }
.page-hero h1 em{ font-style: italic; font-weight: 300; }
.page-hero .ph-lead{ margin-top: 20px; color: rgba(255,255,255,.85); font-size: 19px; line-height: 1.5; max-width: 600px; }
@media (max-width: 767px){
  .page-hero{ height: 60vh; min-height: 380px; }
  .page-hero .ph-inner{ padding: 0 20px 36px; }
  .page-hero h1{ font-size: 38px; }
  .page-hero .ph-lead{ font-size: 15px; }
  .page-hero .eyebrow{ gap: 40px; }
}
