/* ============================================================
   YogaBrand — Site styles
   Layout + components, built on tokens.css. Calm, editorial.
   ============================================================ */
@import url("tokens.css");

/* ---------------- Base ---------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg1);
  background: var(--cream-1);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--tracking-heading);
  line-height: var(--lh-heading);
  margin: 0;
}

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

/* ---------------- Layout ---------------- */
.section { padding: var(--section-py-sm) var(--gutter); }
@media (min-width: 768px){ .section { padding: var(--section-py-md) var(--gutter); } }
@media (min-width: 992px){ .section { padding: var(--section-py) var(--gutter); } }
.container { max-width: var(--container-max); margin-inline: auto; }
.section--flush { padding-block: 0; }

/* ---------------- Type helpers ---------------- */
.h1{ font-size:var(--text-h1); line-height:var(--lh-h1); }
.h2{ font-size:var(--text-h2); }
.h3{ font-size:var(--text-h3); }
.h4{ font-size:var(--text-h4); }
.h5{ font-size:var(--text-h5); }
.h6{ font-size:var(--text-h6); }
.eyebrow{ font-family:var(--font-body); font-weight:600; font-size:var(--text-small); margin:0 0 12px; color:var(--burgundy); }
.lead{ font-size:var(--text-medium); line-height:var(--lh-body); color:var(--fg2); margin:0; }
.body{ font-size:var(--text-regular); line-height:var(--lh-body); color:var(--fg2); margin:0; }
.small{ font-size:var(--text-small); line-height:var(--lh-body); }
.muted{ color:var(--fg2); }
.tertiary{ color:var(--fg3); }
/* keep a heading on one line where there's room; wraps naturally on small phones */
@media (min-width:768px){ .nowrap-lg{ white-space:nowrap; } }

/* Centered section intro: eyebrow -> h2 -> lead */
.section-head{ max-width: 520px; margin: 0 auto 72px; text-align: center; }
.section-head .h2{ margin-bottom: 20px; }
.section-head--left{ margin-left: 0; text-align: left; }
@media (max-width: 767px){ .section-head{ margin-bottom: 48px; } }

/* ---------------- Icons ---------------- */
.ico{ display:inline-block; vertical-align:middle; width:24px; height:24px; }
.ico--inverse{ filter: brightness(0) invert(1); }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-body); font-weight:500; font-size:var(--text-small);
  border-radius:var(--radius-button); padding:11px 18px;
  border:1px solid transparent; cursor:pointer; transition:all .2s ease; white-space:nowrap;
}
.btn .ico{ width:18px; height:18px; }
.btn--sage{ background:var(--burgundy); border-color:var(--burgundy); color:var(--on-burgundy); }
.btn--sage:hover{ background:var(--burgundy-dark); border-color:var(--burgundy-dark); }
.btn--dark{ background:var(--burgundy); border-color:var(--burgundy); color:var(--on-burgundy); }
.btn--dark:hover{ background:var(--burgundy-dark); border-color:var(--burgundy-dark); }
.btn--sec{ background:transparent; border-color:var(--ink-15); color:var(--neutral-darkest); backdrop-filter:blur(10px); }
.btn--sec:hover{ background:var(--ink-5); }
.btn--link{ background:none; border:none; padding:0; gap:6px; color:var(--burgundy); font-weight:500; }
.btn--link .ico{ filter: brightness(0) saturate(100%) invert(22%) sepia(28%) saturate(1300%) hue-rotate(300deg) brightness(92%) contrast(90%); }
.btn--link:hover{ gap:10px; }
.btn--lg{ padding:14px 24px; font-size:var(--text-regular); }
.btn:disabled, .btn[aria-disabled="true"]{ opacity:.4; pointer-events:none; }
.btn--block{ width:100%; }

/* ---------------- Badge / tag ---------------- */
.badge{
  display:inline-flex; align-items:center; gap:6px; padding:5px 10px;
  border:1px solid var(--ink-15); border-radius:var(--radius-badge);
  font-size:var(--text-small); font-weight:600;
}
.badge--solid{ background:rgba(255,255,255,.92); }

/* ---------------- Stars ---------------- */
.stars{ display:flex; gap:2px; }
.stars .ico{ width:22px; height:22px; filter: brightness(0) saturate(100%) invert(22%) sepia(28%) saturate(1300%) hue-rotate(300deg) brightness(92%) contrast(90%); }

/* ---------------- Card ---------------- */
.card{
  border:1px solid var(--border); border-radius:var(--radius-card);
  background:var(--white); overflow:hidden;
}
.card__body{ padding:24px; }
.card__img{ width:100%; object-fit:cover; }

/* ---------------- Form fields ---------------- */
.field{
  font-family:var(--font-body); font-size:var(--text-small); color:var(--fg1);
  padding:12px 14px; border:1px solid var(--ink-15); border-radius:var(--radius-input);
  background:#fff; width:100%; transition:border-color .2s ease;
}
.field:focus{ outline:none; border-color:var(--burgundy); }
.field::placeholder{ color:var(--neutral-light); }
textarea.field{ resize:vertical; min-height:140px; line-height:var(--lh-body); }
.label{ display:block; font-size:var(--text-small); font-weight:600; margin-bottom:8px; }
.form-row{ margin-bottom:24px; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:50;
  background:var(--cream-3); border-bottom:1px solid var(--border);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:16px var(--gutter); max-width:var(--container-max); margin:0 auto;
}
.nav__left{ display:flex; align-items:center; gap:44px; }
.nav__logo{ display:inline-flex; align-items:center; gap:12px; }
.nav__logo img{ height:66px; width:auto; }
.nav__wordmark{ font-family:var(--font-display); font-weight:400; font-size:2rem; letter-spacing:0.06em; line-height:1; color:var(--burgundy); }
@media (max-width:991px){ .nav__logo img{ height:52px; } .nav__wordmark{ font-size:1.625rem; } }
.nav__links{ display:flex; gap:26px; align-items:center; }
.nav__links a{ font-size:var(--text-small); font-weight:600; color:var(--fg2); transition:color .2s ease; }
.nav__links a:hover, .nav__links a[aria-current="page"]{ color:var(--fg1); }
.nav__cta{ display:flex; gap:10px; align-items:center; }
.nav__toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav__mobile{ display:none; }

@media (max-width: 991px){
  .nav__links{ display:none; }
  .nav__cta .btn--sec{ display:none; }
  .nav__toggle{ display:inline-flex; }
  .nav__mobile{
    display:block; background:var(--cream-3); border-bottom:1px solid var(--border);
    padding:8px var(--gutter) 20px;
  }
  .nav__mobile[hidden]{ display:none; }
  .nav__mobile a{ display:block; padding:12px 0; font-weight:600; border-bottom:1px solid var(--ink-10); }
  .nav__mobile .btn{ width:100%; margin-top:16px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{ display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:64px; }
.hero__copy{ margin:0 5vw 0 auto; max-width:460px; padding:64px 0; }
.hero__copy .h1{ margin-bottom:20px; }
.hero__copy .lead{ margin-bottom:32px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:16px; }
.hero__media{ position:relative; display:flex; align-items:center; height:100%; min-height:560px; }
.hero__media-front{ position:absolute; left:0; width:45%; z-index:2; }
.hero__media-front img{ aspect-ratio:2/3; width:100%; object-fit:cover; border-radius:var(--radius-image); }
.hero__media-back{ margin-left:10%; width:100%; }
.hero__media-back img{ width:100%; max-height:640px; object-fit:cover;
  border-top-left-radius:var(--radius-image); border-bottom-left-radius:var(--radius-image); }
@media (max-width: 991px){
  .hero{ grid-template-columns:1fr; gap:32px; }
  .hero__copy{ margin:0; padding:48px 0 0; max-width:none; }
  .hero__media{ min-height:auto; }
}

/* Hero — full-bleed background video.
   The footage has cream pillarbox bars baked in; instead of cropping (which
   loses the figure) we fade those edges into a matching cream so they vanish. */
.hero-video{ position:relative; display:flex; align-items:center; min-height:88vh; overflow:hidden; background:#d5d0c1; }
.hero-video__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%; z-index:0; }
/* z1: cream fade that swallows the baked-in bars.
   Base (mobile portrait): the side bars are cropped off-screen by object-fit:cover,
   so only the BOTTOM bar needs hiding — no side fade (it would just cover the figure). */
.hero-video__fade{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(0deg,
      rgba(210,206,191,1) 0%, rgba(210,206,191,1) 4%, rgba(210,206,191,0) 16%); }
/* Landscape phones/tablets can be wide enough to expose the side bars → add side fade back */
@media (max-width:991px) and (orientation:landscape){
  .hero-video__fade{
    background:
      linear-gradient(90deg,
        rgba(210,206,191,1) 0%, rgba(210,206,191,1) 21%,
        rgba(210,206,191,0) 37%, rgba(210,206,191,0) 63%,
        rgba(210,206,191,1) 79%, rgba(210,206,191,1) 100%),
      linear-gradient(0deg,
        rgba(210,206,191,1) 0%, rgba(210,206,191,1) 4%, rgba(210,206,191,0) 16%); }
}
/* Desktop: push the figure to the right side; the right bar slides off-screen,
   so only the left edge needs a cream fade (over the wide left text area). */
@media (min-width:992px){
  .hero-video__bg{ transform:translateX(22%); }
  .hero-video__fade{
    background:
      linear-gradient(90deg,
        rgba(210,206,191,1) 0%, rgba(210,206,191,1) 46%,
        rgba(210,206,191,0) 60%, rgba(210,206,191,0) 100%),
      linear-gradient(0deg,
        rgba(210,206,191,1) 0%, rgba(210,206,191,1) 4%, rgba(210,206,191,0) 16%); }
}
/* z2: dark scrim for left-aligned text legibility */
.hero-video__scrim{ position:absolute; inset:0; z-index:2;
  background:linear-gradient(90deg, rgba(8,9,10,.70) 0%, rgba(8,9,10,.45) 42%, rgba(8,9,10,.18) 72%, rgba(8,9,10,.10) 100%); }
.hero-video__inner{ position:relative; z-index:3; width:100%; max-width:var(--container-max);
  margin:0 auto; padding:120px var(--gutter); }
.hero-video__copy{ max-width:560px; }
.hero-video__copy .eyebrow{ color:#fff; opacity:.9; }
.hero-video__copy .h1{ color:#fff; margin-bottom:20px; }
.hero-video__copy .lead{ color:rgba(255,255,255,.86); margin-bottom:32px; }
@media (max-width: 991px){
  .hero-video{ min-height:74vh; }
  .hero-video__inner{ padding:80px var(--gutter); }
}

/* Ghost button (light outline, for dark/photographic backgrounds) */
.btn--ghost{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.55); color:#fff; backdrop-filter:blur(6px); }
.btn--ghost:hover{ background:rgba(255,255,255,.16); border-color:#fff; }

/* Simple page header (interior pages) */
.page-head{ text-align:center; }
.page-head .container{ max-width:760px; margin:0 auto; }
.page-head .h1{ margin-bottom:20px; }

/* ============================================================
   STATS / video
   ============================================================ */
.stats-grid{ display:grid; grid-template-columns:1fr 0.5fr; align-items:stretch; }
.video-thumb{
  position:relative; border:none; padding:0; cursor:pointer; overflow:hidden;
  border-radius:var(--radius-image); background:none;
}
.video-thumb img{ aspect-ratio:3/2; width:100%; object-fit:cover; }
.video-thumb .scrim{ position:absolute; inset:0; background:var(--ink-50); }
.video-thumb .play{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:80px; height:80px; }
.figs{ display:grid; gap:48px; padding:48px; align-content:center; }
.fig__n{ font-family:var(--font-display); font-weight:400; font-size:var(--text-h1); line-height:1; margin-bottom:8px; color:var(--burgundy); }
.fig__l{ font-family:var(--font-display); font-weight:400; font-size:var(--text-h6); }
@media (max-width:991px){
  .stats-grid{ grid-template-columns:1fr; }
  .figs{ grid-template-columns:repeat(3,1fr); padding:32px 0; }
}
@media (max-width:767px){ .figs{ grid-template-columns:1fr; } }

/* ============================================================
   FEATURES (benefit cards)
   ============================================================ */
.feat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.feat-card{ display:flex; flex-direction:column; }
.feat-card .card__body{ flex:1; }
.feat-card__tag{ font-size:var(--text-small); font-weight:600; margin:0 0 8px; }
.feat-card .h5{ margin-bottom:8px; }
.feat-card .body{ margin-bottom:0; }
.feat-card .btn--link{ margin-top:20px; }
.feat-card img{ width:100%; height:150px; object-fit:cover; }
@media (max-width:991px){ .feat-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:767px){ .feat-grid{ grid-template-columns:1fr; } }

/* ============================================================
   SERVICES (class types, centered icon)
   ============================================================ */
.svc-wrap{ display:flex; flex-direction:column; align-items:center; }
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:48px; width:100%; }
.svc{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.svc .ico{ width:48px; height:48px; margin-bottom:24px; }
.svc .h4{ margin-bottom:24px; }
.svc-actions{ display:flex; align-items:center; gap:16px; margin-top:72px; flex-wrap:wrap; justify-content:center; }
@media (max-width:991px){ .svc-grid{ grid-template-columns:1fr; gap:48px; } }

/* ============================================================
   EVENTS
   ============================================================ */
.evt-feat{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; margin-bottom:72px; }
.evt-feat__media{ position:relative; border-radius:var(--radius-image); overflow:hidden; }
.evt-feat__media img{ aspect-ratio:3/2; width:100%; object-fit:cover; }
.evt-feat__media .scrim{ position:absolute; inset:0; background:var(--ink-50); }
.evt-feat__media .badge{ position:absolute; top:16px; right:16px; }
.evt-feat__media .play{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:72px; height:72px; }
.evt-meta{ display:flex; align-items:center; gap:8px; font-size:var(--text-small); margin-bottom:16px; }
.evt-meta .ico{ width:22px; height:22px; }
.evt-feat__body .h5{ margin-bottom:16px; }
.evt-feat__body .body{ margin-bottom:24px; }
@media (max-width:991px){ .evt-feat{ grid-template-columns:1fr; } }

.filter-bar{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.chip{
  padding:8px 16px; border-radius:var(--radius-button); font-size:var(--text-small);
  font-weight:500; cursor:pointer; border:1px solid transparent; background:transparent;
  color:var(--fg2); transition:all .2s ease;
}
.chip:hover{ border-color:var(--ink-15); }
.chip[aria-pressed="true"]{ background:var(--burgundy); border-color:var(--burgundy); color:var(--on-burgundy); }
.chip--outline{ border-color:var(--ink-15); }

.evt-row{
  display:grid; grid-template-columns:1fr max-content; gap:32px; align-items:center;
  border-top:1px solid var(--border); padding:32px 0;
}
.evt-row:last-child{ border-bottom:1px solid var(--border); }
.evt-row__meta{ display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.evt-row__meta > span{ display:flex; align-items:center; gap:8px; font-size:var(--text-small); }
.evt-row .h5{ margin-bottom:16px; }
.evt-row .body{ max-width:640px; margin:0; }
.evt-row__go .ico{ width:56px; height:56px; }
@media (max-width:600px){
  .evt-row{ grid-template-columns:1fr; gap:20px; }
}

/* Event cards grid (events page) */
.evt-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
@media (max-width:991px){ .evt-cards{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .evt-cards{ grid-template-columns:1fr; } }
.evt-card img{ aspect-ratio:3/2; }
.evt-card .h5{ margin-bottom:12px; }
.evt-card__row{ display:flex; align-items:center; gap:16px; margin-bottom:16px; flex-wrap:wrap; }
.evt-card .body{ margin-bottom:20px; }
.evt-card__foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.price-figure{ font-family:var(--font-display); font-size:var(--text-h6); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.tst-card{ display:flex; flex-direction:column; justify-content:space-between; }
.tst-quote{ font-size:var(--text-medium); line-height:var(--lh-body); font-weight:400; margin:24px 0; }
.tst-person{ display:flex; align-items:center; gap:16px; }
.tst-person img{ width:48px; height:48px; border-radius:9999px; object-fit:cover; }
.tst-person__name{ font-weight:600; margin:0; }
.tst-person__role{ color:var(--fg3); margin:0; }
@media (max-width:991px){ .tst-grid{ grid-template-columns:1fr; gap:48px; } }

/* ============================================================
   GALLERY carousel
   ============================================================ */
/* Native scroll-snap carousel — intentional, smooth swiping on touch; 3-up desktop,
   2-up tablet, 1-up phone. Scrolls only the strip (never the page/section). */
.gallery__viewport{ overflow-x:auto; overflow-y:hidden; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; scrollbar-width:none; overscroll-behavior-x:contain; cursor:grab; }
.gallery__viewport::-webkit-scrollbar{ display:none; }
.gallery__viewport.is-grabbing{ cursor:grabbing; scroll-snap-type:none; }
.gallery__track{ display:flex; gap:16px; }
.gallery__track img{ flex:0 0 calc((100% - 32px) / 3); width:calc((100% - 32px) / 3);
  height:280px; object-fit:cover; border-radius:var(--radius-image);
  scroll-snap-align:start; scroll-snap-stop:always; -webkit-user-drag:none; user-select:none; }
@media (max-width:991px){ .gallery__track img{ flex-basis:calc((100% - 16px) / 2); width:calc((100% - 16px) / 2); height:240px; } }
@media (max-width:640px){ .gallery__track img{ flex-basis:100%; width:100%; height:240px; } }
.gallery__dots{ display:flex; justify-content:center; align-items:center; gap:8px; margin-top:32px; }
.gallery__dot{ width:8px; height:8px; border-radius:50%; border:none; cursor:pointer; padding:0; background:var(--ink-20); transition:background .2s ease; }
.gallery__dot[aria-current="true"]{ background:var(--burgundy); }

/* Static masonry-ish gallery (past events) */
.photo-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.photo-grid img{ width:100%; aspect-ratio:1; object-fit:cover; border-radius:var(--radius-image); }
@media (max-width:640px){ .photo-grid{ grid-template-columns:1fr 1fr; } }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-text{ text-align:center; }
.cta-text .container{ max-width:520px; margin:0 auto; }
.cta-text .h2{ margin-bottom:20px; }
.cta-text .lead{ margin-bottom:32px; }
.cta-actions{ display:flex; justify-content:center; flex-wrap:wrap; gap:16px; }
.cta-img{ width:100%; max-height:520px; object-fit:cover; }
/* Burgundy CTA band (cream text + cream/outline buttons) */
.cta-burgundy{ background:var(--burgundy); color:var(--on-burgundy); }
.cta-burgundy .h2{ color:var(--on-burgundy); }
.cta-burgundy .lead{ color:rgba(251,246,238,.85); }
.cta-burgundy .btn--dark{ background:var(--on-burgundy); border-color:var(--on-burgundy); color:var(--burgundy); }
.cta-burgundy .btn--dark:hover{ background:#fff; border-color:#fff; }
.cta-burgundy .btn--sec{ background:rgba(255,255,255,.06); border-color:rgba(251,246,238,.5); color:var(--on-burgundy); }
.cta-burgundy .btn--sec:hover{ background:rgba(255,255,255,.16); border-color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--burgundy); color:var(--on-burgundy); padding:80px var(--gutter) 0; }
.footer__top{ display:flex; flex-direction:column; align-items:center; padding-bottom:64px; }
.footer__logo{ display:inline-flex; flex-direction:column; align-items:center; gap:14px; margin-bottom:32px; }
.footer__logo img{ height:130px; width:auto; }
.footer__wordmark{ font-family:var(--font-display); font-weight:400; font-size:2.5rem; letter-spacing:0.06em; line-height:1; color:var(--on-burgundy); }
.footer__nav{ display:flex; gap:24px; list-style:none; padding:0; margin:0 0 28px; flex-wrap:wrap; justify-content:center; }
.footer__nav a{ font-weight:600; }
.footer__nav a:hover{ color:rgba(251,246,238,.65); }
.footer__social{ display:flex; gap:18px; }
.footer__social a{ display:inline-flex; }
.footer__social a:hover{ color:rgba(251,246,238,.65); }
.footer__social .ico{ width:24px; height:24px; }
.footer__rule{ height:1px; background:rgba(251,246,238,.18); }
.footer__legal{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; padding:32px 0 24px; font-size:var(--text-small); }
.footer__legal p{ color:rgba(251,246,238,.72); margin:0; }
/* footer newsletter button: cream on burgundy */
.footer__news .btn--dark{ background:var(--on-burgundy); border-color:var(--on-burgundy); color:var(--burgundy); }
.footer__news .btn--dark:hover{ background:#fff; border-color:#fff; }
.footer__legal ul{ display:flex; gap:24px; list-style:none; padding:0; margin:0; flex-wrap:wrap; }
.footer__legal a{ text-decoration:underline; }

/* Footer newsletter */
.footer__news{ display:flex; gap:12px; max-width:420px; width:100%; margin:0 auto 32px; }
.footer__news .field{ flex:1; }
@media (max-width:480px){ .footer__news{ flex-direction:column; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
@media (max-width:991px){ .pricing-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .pricing-grid{ grid-template-columns:1fr; } }
.price-card{ display:flex; flex-direction:column; padding:32px; }
.price-card--featured{ border-color:var(--burgundy); border-width:1.5px; }
.price-card__tag{ font-size:var(--text-small); font-weight:600; margin:0 0 16px; display:flex; align-items:center; gap:10px; }
.price-card__amount{ font-family:var(--font-display); font-size:var(--text-h2); line-height:1; margin:0; }
.price-card__unit{ font-family:var(--font-body); font-size:var(--text-small); color:var(--fg3); }
.price-card__desc{ color:var(--fg2); margin:16px 0 24px; font-size:var(--text-regular); }
.price-card__list{ list-style:none; padding:0; margin:0 0 32px; display:grid; gap:12px; }
.price-card__list li{ display:flex; align-items:flex-start; gap:10px; font-size:var(--text-small); }
.price-card__list .ico{ width:20px; height:20px; flex:none; }
.price-card .btn{ margin-top:auto; }

/* ============================================================
   ABOUT — profile + timeline + philosophy
   ============================================================ */
.profile{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center; }
.profile__img img{ width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius-image); }
.profile__body .eyebrow{ margin-bottom:12px; }
.profile__body .h2{ margin-bottom:24px; }
.profile__body .body + .body{ margin-top:16px; }
@media (max-width:991px){ .profile{ grid-template-columns:1fr; gap:32px; } }

.quals{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
@media (max-width:767px){ .quals{ grid-template-columns:1fr; } }
.qual{ display:flex; flex-direction:column; align-items:flex-start; }
.qual .ico{ width:40px; height:40px; margin-bottom:20px; }
.qual .h5{ margin-bottom:12px; }

.timeline{ max-width:760px; margin:0 auto; }
.timeline__item{ display:grid; grid-template-columns:max-content 1fr; gap:32px; padding:32px 0; border-top:1px solid var(--border); }
.timeline__item:last-child{ border-bottom:1px solid var(--border); }
.timeline__year{ font-family:var(--font-display); font-size:var(--text-h5); }
.timeline__item .h5{ margin-bottom:8px; }
@media (max-width:600px){ .timeline__item{ grid-template-columns:1fr; gap:8px; } }

.philosophy{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.philosophy img{ width:100%; aspect-ratio:3/2; object-fit:cover; border-radius:var(--radius-image); }
@media (max-width:991px){ .philosophy{ grid-template-columns:1fr; gap:32px; } }

/* ============================================================
   FAQ / accordion
   ============================================================ */
.faq{ max-width:760px; margin:0 auto; }
.faq__item{ border-top:1px solid var(--border); }
.faq__item:last-child{ border-bottom:1px solid var(--border); }
.faq__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:24px;
  background:none; border:none; cursor:pointer; padding:28px 0; text-align:left;
  font-family:var(--font-display); font-size:var(--text-h6); color:var(--fg1);
}
.faq__q .ico{ width:24px; height:24px; flex:none; transition:transform .2s ease; }
.faq__q[aria-expanded="true"] .ico{ transform:rotate(180deg); }
.faq__a{ overflow:hidden; max-height:0; transition:max-height .35s ease; }
.faq__a p{ padding:0 0 28px; color:var(--fg2); margin:0; line-height:var(--lh-body); }

/* ============================================================
   CLASSES list
   ============================================================ */
.class-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
@media (max-width:767px){ .class-grid{ grid-template-columns:1fr; } }
.class-card{ display:grid; grid-template-columns:0.8fr 1.2fr; }
.class-card > img{ width:100%; height:100%; object-fit:cover; }
.class-card__body{ padding:28px; display:flex; flex-direction:column; }
.class-card__meta{ display:flex; gap:8px; flex-wrap:wrap; margin:12px 0 16px; }
.class-card__foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:auto; padding-top:20px; }
@media (max-width:520px){ .class-card{ grid-template-columns:1fr; } .class-card > img{ aspect-ratio:3/2; } }

/* ============================================================
   RESERVATION (full-page booking flow)
   ============================================================ */
.book{ max-width:720px; margin:0 auto; }
.book__panel{ border:1px solid var(--border); border-radius:var(--radius-card); background:#fff; overflow:hidden; }
.book__stepper{ display:flex; gap:6px; padding:24px; border-bottom:1px solid var(--border); }
.book__stepper > div{ flex:1; }
.book__bar{ height:3px; border-radius:2px; background:var(--ink-15); }
.book__bar.is-done{ background:var(--burgundy); }
.book__steplabel{ font-size:var(--text-tiny); margin-top:6px; color:var(--fg3); }
.book__steplabel.is-done{ color:var(--fg1); }
.book__stage{ padding:32px; min-height:300px; }
.book__stage > .body{ margin-bottom:20px; }
.book__panes > section{ display:none; }
.book__panes > section.is-active{ display:block; animation: fadein .5s ease; }
@keyframes fadein{ from{ opacity:0; } to{ opacity:1; } }

.cal{ display:grid; grid-template-columns:repeat(7,1fr); gap:6px; }
.cal__dow{ text-align:center; font-size:var(--text-tiny); color:var(--fg3); font-weight:600; padding-bottom:4px; }
.cal__day{
  aspect-ratio:1; border-radius:var(--radius-button); border:1px solid var(--ink-15);
  background:#fff; color:var(--fg1); cursor:pointer; font-size:var(--text-small);
  transition:all .15s ease; display:flex; align-items:center; justify-content:center;
}
.cal__day:hover{ border-color:var(--burgundy); }
.cal__day[aria-pressed="true"]{ background:var(--burgundy); border-color:var(--burgundy); color:var(--on-burgundy); }
.cal__day:disabled{ opacity:.3; cursor:not-allowed; }
.cal__day.is-empty{ border:none; background:none; cursor:default; }

.opt-list{ display:grid; gap:10px; }
.opt{
  display:flex; align-items:center; gap:10px; padding:14px 16px; text-align:left;
  border-radius:var(--radius-button); border:1px solid var(--ink-15); background:#fff;
  cursor:pointer; font-size:var(--text-small); transition:all .15s ease; width:100%;
}
.opt:hover{ border-color:var(--burgundy); }
.opt[aria-pressed="true"]{ border-color:var(--burgundy); background:var(--burgundy-tint); }
.opt--class{ justify-content:space-between; padding:18px 20px; }
.opt--class .opt__name{ font-family:var(--font-display); font-size:var(--text-h6); }
.opt .ico{ width:20px; height:20px; flex:none; }

.book__confirm{ text-align:center; }
.book__confirm .ico{ width:56px; height:56px; margin:0 auto 16px; }
.book__confirm .h5{ margin-bottom:16px; }
.summary{ display:inline-grid; grid-template-columns:auto auto; gap:10px 28px; text-align:left; margin:8px auto 0; font-size:var(--text-small); }
.summary dt{ color:var(--fg3); margin:0; }
.summary dd{ margin:0; }

.book__nav{ display:flex; justify-content:space-between; gap:12px; padding:20px 24px; border-top:1px solid var(--border); }

.policy{ margin-top:48px; }
.policy .card__body{ padding:32px; }
.policy h3{ margin-bottom:16px; }
.policy ul{ margin:0; padding-left:20px; color:var(--fg2); }
.policy li{ margin-bottom:8px; line-height:var(--lh-body); }

/* ============================================================
   PAYMENT (PayPay)
   ============================================================ */
.pay-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
@media (max-width:991px){ .pay-grid{ grid-template-columns:1fr; gap:48px; } }
.qr-card{ text-align:center; padding:40px; }
.qr{ width:240px; height:240px; margin:0 auto 24px; border:1px solid var(--border); border-radius:var(--radius-image); display:block; background:#fff; }
.pay-steps{ list-style:none; counter-reset:s; padding:0; margin:0; display:grid; gap:24px; }
.pay-steps li{ counter-increment:s; display:grid; grid-template-columns:max-content 1fr; gap:20px; align-items:start; }
.pay-steps li::before{
  content:counter(s); display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:9999px; background:var(--sea-mist);
  font-family:var(--font-display); font-size:var(--text-h6); color:var(--neutral-darkest);
}
.pay-steps .h6{ margin-bottom:6px; }
.upload{
  border:1px dashed var(--ink-20); border-radius:var(--radius-input); padding:28px;
  text-align:center; cursor:pointer; transition:border-color .2s ease; display:block;
}
.upload:hover{ border-color:var(--neutral-darkest); }
.upload .ico{ width:32px; height:32px; margin:0 auto 8px; }
.upload__name{ font-size:var(--text-small); color:var(--fg2); margin-top:8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
@media (max-width:991px){ .contact-grid{ grid-template-columns:1fr; gap:48px; } }
.info-list{ list-style:none; padding:0; margin:0; display:grid; gap:28px; }
.info-list li{ display:grid; grid-template-columns:max-content 1fr; gap:18px; align-items:start; }
.info-list .ico{ width:24px; height:24px; margin-top:2px; }
.info-list .h6{ margin-bottom:4px; }
.info-list a{ text-decoration:underline; }
.map{ width:100%; border:0; border-radius:var(--radius-image); aspect-ratio:16/10; }
.hours{ list-style:none; padding:0; margin:12px 0 0; display:grid; gap:8px; max-width:320px; }
.hours li{ display:flex; justify-content:space-between; gap:24px; font-size:var(--text-small); padding-bottom:8px; border-bottom:1px solid var(--ink-10); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:48px 32px; }
@media (max-width:991px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{ display:flex; flex-direction:column; }
.blog-card > img{ aspect-ratio:3/2; }
.blog-card__meta{ display:flex; align-items:center; gap:16px; margin-bottom:16px; flex-wrap:wrap; }
.blog-card__meta .small{ font-weight:600; }
.blog-card .h5{ margin-bottom:8px; }
.blog-card .btn--link{ margin-top:20px; }

.newsletter{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
@media (max-width:767px){ .newsletter{ grid-template-columns:1fr; gap:24px; } }
.newsletter form{ display:flex; gap:12px; }
.newsletter .field{ flex:1; }
.newsletter__note{ font-size:var(--text-small); color:var(--fg3); margin-top:12px; }
@media (max-width:480px){ .newsletter form{ flex-direction:column; } }

/* ============================================================
   Utilities
   ============================================================ */
.stack-16 > * + *{ margin-top:16px; }
.stack-24 > * + *{ margin-top:24px; }
.mt-32{ margin-top:32px; }
.mt-40{ margin-top:40px; }
.center{ text-align:center; }
.visually-hidden{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.skip-link{ position:absolute; left:-999px; top:0; z-index:100; background:var(--neutral-darkest); color:#fff; padding:10px 16px; border-radius:var(--radius-button); }
.skip-link:focus{ left:16px; top:16px; }
.toast{
  position:fixed; left:50%; bottom:32px; transform:translateX(-50%) translateY(20px);
  background:var(--neutral-darkest); color:#fff; padding:14px 22px; border-radius:var(--radius-button);
  font-size:var(--text-small); opacity:0; pointer-events:none; transition:all .3s ease; z-index:200;
  display:flex; align-items:center; gap:10px;
}
.toast.is-show{ opacity:1; transform:translateX(-50%) translateY(0); }
.toast .ico{ width:20px; height:20px; }
