/* JUNGLE — site_v3 shared styles
   Aesop / Le Labo quiet. Photo-led. Brand restraint. */

@import url("colors_and_type.css");

* { box-sizing: border-box; }

p {
  font-family: "Termina", sans-serif !important;
  font-size: 13px !important;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 24px;
}
.announce em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 13px;
  opacity: 0.86;
  margin: 0 0.4em;
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 96px 22px 40px;
  border-bottom: 1px solid rgba(244,239,229,0.12);
  background: var(--jungle-charcoal);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
  transition: padding 220ms ease;
}
body.nav-scrolled .nav {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ---------- PAGE SUBNAV ---------- */
.page-subnav {
  background: var(--jungle-bone);
  border-bottom: 1px solid var(--line);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 69px;
  z-index: 29;
  transition: top 220ms ease;
}
.page-subnav .page-header-inner {
  width: 100%;
}
body.nav-scrolled .page-subnav { top: 0; }
@media (max-width: 760px) {
  .page-subnav { padding: 12px 20px; top: 0; }
}
.nav-hamburger {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 35;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(20,12,8,0.78);
  border: 1px solid rgba(244,239,229,0.18);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 200ms, background 200ms;
  opacity: 1;
  transform: translateY(0);
}
.nav-hamburger:hover { border-color: var(--jungle-white-sand); background: var(--jungle-charcoal); }
.nav-hamburger span {
  width: 16px;
  height: 1.5px;
  background: var(--jungle-white-sand);
  display: block;
  transition: transform 220ms, opacity 220ms;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--jungle-charcoal);
  /* Above .page-subnav (z-index 29) so sticky subnavs on /about, /studios,
     etc. don't bleed through the drawer overlay. Stays under .nav-hamburger
     (35) so the close button remains tappable. */
  z-index: 32;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  padding: 92px 32px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-drawer a {
  font-family: var(--font-ui);
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  text-decoration: none;
  padding: 10px 14px;
  transition: color 200ms;
}
.nav-drawer a:hover { color: var(--jungle-copper); }
.nav-drawer .nav-drawer-divider {
  width: 60px;
  height: 1px;
  background: rgba(244,239,229,0.25);
  margin: 6px 0;
}
.nav-drawer .nav-drawer-cta {
  margin-top: 8px;
  background: var(--jungle-copper);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.nav-drawer .nav-drawer-cta:hover { background: var(--jungle-white-sand); color: var(--jungle-charcoal); }
.nav-drawer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 360px;
}
.nav-drawer-group > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 200ms;
}
.nav-drawer-group > summary::-webkit-details-marker { display: none; }
.nav-drawer-group > summary:hover { color: var(--jungle-copper); }
.nav-drawer-caret {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 220ms ease;
}
.nav-drawer-group[open] .nav-drawer-caret { transform: rotate(180deg); }
.nav-drawer-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 0 10px;
}
.nav-drawer-sub a {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.7);
  padding: 6px 14px;
}
.nav-drawer-sub a:hover { color: var(--jungle-copper); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 30px; }
}
.nav-mark { display: none !important; }

.nav-word {
  height: 25px !important;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--jungle-white-sand);
  transition: color 220ms cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--jungle-white-sand);
}
.nav-links a:hover { color: var(--jungle-copper); }
.nav-links a.nav-staff {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(244,239,229,0.25);
  opacity: 0.7;
}
.nav-links a.nav-staff:hover { opacity: 1; color: var(--jungle-copper); }
.nav-links a.nav-member {
  opacity: 0.85;
}
.nav-links a.nav-member:hover { opacity: 1; color: var(--jungle-copper); }
/* Studios dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  letter-spacing: inherit;
  color: var(--jungle-white-sand);
  text-decoration: none;
  padding: 4px 0;
  text-transform: uppercase;
  transition: color 220ms cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-dropdown-trigger:hover { color: var(--jungle-copper); }
.nav-dropdown-trigger.active::after {
  content: "";
  position: absolute;
  left: 0; right: 14px;
  bottom: -2px;
  height: 1px;
  background: var(--jungle-white-sand);
}
.nav-dropdown-caret {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 220ms ease;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 240px;
  background: var(--jungle-charcoal);
  border: 1px solid rgba(244,239,229,0.18);
  border-radius: 6px;
  margin-top: 0;
  padding: 18px 0 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 0ms, 0ms;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* Invisible hover bridge so the menu doesn't close while crossing the gap */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 16px;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after { pointer-events: auto; }
/* Hover-grace: keep menu open ~180ms after mouse leaves */
.nav-dropdown-menu {
  transition-property: opacity, transform;
  transition-duration: 180ms;
}
.nav-dropdown:not(:hover):not(:focus-within) .nav-dropdown-menu {
  transition-delay: 180ms;
}
.nav-dropdown-menu a {
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--jungle-white-sand);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(244,239,229,0.06); color: var(--jungle-copper); }
.nav-dropdown-menu a.active { color: var(--jungle-copper); }
.nav-dropdown-menu a.active::after { display: none; }
.nav-soon-pill {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  background: var(--jungle-copper);
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 8px;
  position: relative;
  top: -1px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1px solid rgba(244,239,229,0.55);
  border-radius: 999px;
  transition: background 220ms, color 220ms;
}
.nav-cta { color: var(--jungle-white-sand); }
.nav-cta:hover { background: var(--jungle-white-sand); color: var(--jungle-charcoal); border-color: var(--jungle-white-sand); }

/* ---------- HERO (full-bleed photo poster) ---------- */
.hero {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 640px;
  overflow: hidden;
  background: var(--jungle-charcoal);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,41,38,0.18) 0%, rgba(43,41,38,0) 30%, rgba(43,41,38,0) 60%, rgba(43,41,38,0.45) 100%);
}
.hero-overlay.hero-overlay--centered {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  gap: 28px;
  padding-bottom: 0 !important;
}
.hero-overlay.hero-overlay--centered .hero-tag {
  max-width: none;
  margin: 0;
}
.hero-tag--centered {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.01em;
  color: var(--jungle-white-sand);
}
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px 56px;
  color: var(--jungle-white-sand);
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-wordmark {
  margin: 0;
  text-align: center;
  line-height: 0;
}
.hero-wordmark img {
  width: min(78vw, 1100px);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.25));
}
.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: 22px;
  line-height: 1.3;
  max-width: 28ch;
  margin: 0;
}
.hero-locs {
  display: flex;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-locs a {
  border-bottom: 1px solid rgba(244,237,224,0.45);
  padding-bottom: 3px;
}
.hero-locs a:hover { border-color: var(--jungle-white-sand); }

/* ---------- SECTION CHROME ---------- */
.section {
  padding: 56px 40px;
}
.section-tight { padding: 36px 40px; }
.section-dark {
  background: #8C6A4E;
  color: var(--jungle-white-sand);
}
.section-dark .eyebrow { color: rgba(244,237,224,0.7); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--jungle-loam);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: none;
  width: 28px;
  height: 1px;
  background: var(--jungle-copper);
}

.h-display {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(43px, 6.5vw, 91px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  text-align: center;
}
.h-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.005em;
}
.lede {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  max-width: 56ch;
}

/* ---------- INTRO (text-only, generous whitespace) ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 64px 40px 56px;
  max-width: 1440px;
  margin: 0 auto;
}
.intro-l { padding-top: 8px; }
.intro-r { padding-top: 0; }
.intro-r p { margin: 0 0 1.2em; max-width: 50ch; }
.intro-r p:last-child { margin-bottom: 0; }

/* Stacked intro variant */
.intro--stacked {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 40px 64px;
}
.intro--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  max-width: none;
  margin: 0;
  padding: 36px 40px;
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
}
.intro--centered .intro-headline {
  max-width: 32ch;
  margin: 0;
  color: var(--jungle-white-sand);
  font-size: clamp(26px, 2.8vw, 38px);
}
.intro-rule {
  width: 72px;
  height: 1px;
  background: var(--jungle-white-sand);
  opacity: 0.5;
}
.intro-headline {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  max-width: 28ch;
  margin: 0 0 32px;
  letter-spacing: -0.005em;
  text-transform: none;
  text-align: center;
}
.intro-headline .h-italic-inline {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0;
}
.intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  margin-left: auto;
}
.intro-cols .lede { margin: 0; max-width: 44ch; color: var(--jungle-loam); }

/* ---------- STUDIOS & CAMPAIGNS GALLERY ---------- */
.gallery {
  padding: 24px 0 28px;
}
.gallery + .gallery { padding-top: 8px; }
.gallery-head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
.gallery-head .h-display { font-size: clamp(34px, 3.8vw, 48px); text-align: left; }
.gallery-pills {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery-jumps {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.gallery-jumps .sanctuaries-jump { margin: 0; }
@media (max-width: 760px) {
  .gallery-jumps { padding: 0 20px 20px; gap: 16px; }
}
.pill {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--jungle-loam);
  cursor: pointer;
  transition: all 220ms;
  white-space: nowrap;
}
.pill:hover { color: var(--jungle-charcoal); border-color: var(--jungle-charcoal); }
.pill-active {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-charcoal);
}
.gallery-track-wrap {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 24px;
  padding: 0 40px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--jungle-stone) transparent;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--jungle-stone); border-radius: 4px; }
.g-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 560px;
}
.g-square { width: 440px; }
.g-arch { width: 440px; }
.g-imgs {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: var(--jungle-bone);
  display: flex;
}
.g-arch .g-imgs { border-radius: 9999px 9999px 0 0; }
.g-imgs img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Stacked + cross-faded — default to opacity 0 so only the .g-active
     img is visible. (Was opacity:1, which left every absolutely-positioned
     img fully painted on top of the others; rotator class toggles had no
     visible effect.) */
  opacity: 0;
  transition: opacity 480ms ease;
  position: absolute;
  inset: 0;
}
.g-imgs img.g-active { opacity: 1; }
.g-dots {
  display: flex;
  gap: 6px;
  padding: 0 4px;
  margin-top: 2px;
}
.g-dot {
  width: 22px;
  height: 2px;
  background: var(--jungle-stone);
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 200ms, background 200ms;
}
.g-dot:hover { opacity: 0.7; }
.g-dot.g-dot-active { opacity: 1; background: var(--jungle-charcoal); }
.g-meta { padding: 0 4px; flex: 0 0 auto; }
.g-kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--jungle-copper);
  display: block;
  margin-bottom: 6px;
}
.g-name {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.g-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.g-cta {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  color: var(--jungle-charcoal);
  text-decoration: none;
  transition: all 200ms;
  white-space: nowrap;
}
.g-cta:hover {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-charcoal);
}
.g-ctas .g-cta:first-child {
  border-color: var(--jungle-copper);
  color: var(--jungle-copper);
}
.g-ctas .g-cta:first-child:hover {
  background: var(--jungle-copper);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-copper);
}
.g-arrow {
  position: absolute;
  top: calc(50% - 60px);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--jungle-white-sand);
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--jungle-charcoal);
  cursor: pointer;
  z-index: 3;
  transition: all 220ms;
}
.g-arrow:hover { background: var(--jungle-charcoal); color: var(--jungle-white-sand); border-color: var(--jungle-charcoal); }
.g-arrow-l { left: 12px; }
.g-arrow-r { right: 12px; }
@media (max-width: 720px) {
  .intro--stacked { padding: 80px 20px; }
  .intro-cols { grid-template-columns: 1fr; gap: 24px; margin-left: 0; }
  .gallery-head, .gallery-pills, .gallery-track { padding-left: 20px; padding-right: 20px; }
  .g-square { width: 78vw; }
  .g-arch { width: 86vw; }
  .g-arrow { display: none; }
}

/* ---------- DUAL FRAME (photo + photo) ---------- */
.frames {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.frame {
  position: relative;
  overflow: hidden;
  background: var(--jungle-beige);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame-tall { aspect-ratio: 4 / 5; }
.frame-wide { aspect-ratio: 4 / 5; }
.frame-arch { border-radius: 9999px 9999px 0 0; }
.frame-cap {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  display: flex;
  justify-content: space-between;
  text-shadow: 0 1px 6px rgba(43,41,38,0.5);
}

/* ---------- POSTER (single big photo with type overlaid) ---------- */
.poster {
  position: relative;
  height: clamp(620px, 92vh, 980px);
  overflow: hidden;
  background: var(--jungle-charcoal);
}
.poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .poster img[src*="sb-friends-cups"],
  .poster img[src*="sb-incense-meditation"] {
    object-position: center 20%;
  }
}
.poster-type {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 40px;
  color: var(--jungle-white-sand);
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(43,41,38,0.5) 100%);
}
.poster-type .h-display { max-width: 14ch; }

/* poster slider variant */
.poster-slider .poster-imgs {
  position: absolute; inset: 0;
}
.poster-slider .poster-imgs img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}
.poster-slider .poster-imgs img.active { opacity: 1; }

/* Full-bleed video variant of .poster — replaces the image slider */
.poster-video .poster-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.poster-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px; height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(244,239,229,0.5);
  background: rgba(43,41,38,0.35);
  backdrop-filter: blur(4px);
  color: var(--jungle-white-sand);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms, border-color 220ms;
}
.poster-arrow:hover {
  background: var(--jungle-white-sand);
  color: var(--jungle-charcoal);
  border-color: var(--jungle-white-sand);
}
.poster-arrow-l { left: 32px; }
.poster-arrow-r { right: 32px; }
.poster-dots {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.poster-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(244,239,229,0.4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 220ms, transform 220ms;
}
.poster-dot.active {
  background: var(--jungle-white-sand);
  transform: scale(1.3);
}

/* quote break */
.quote-break {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  text-align: center;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.quote-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--jungle-white-sand);
  opacity: 0.55;
}
.quote-line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--jungle-white-sand);
}
.quote-mark {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: 1.4em;
  line-height: 0.8;
  color: var(--jungle-copper);
  position: relative;
  top: 0.18em;
}
.quote-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--jungle-white-sand);
  margin: 0 0.05em;
}
.poster-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.poster-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border: 1px solid rgba(244,239,229,0.55);
  color: var(--jungle-white-sand);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(43,41,38,0.18);
  backdrop-filter: blur(2px);
  transition: background 220ms, border-color 220ms, color 220ms;
}
.poster-cta:hover {
  background: var(--jungle-white-sand);
  color: var(--jungle-charcoal);
  border-color: var(--jungle-white-sand);
}

/* ---------- FORMAT CARDS (rotating background, overlaid text) ---------- */
.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fmt {
  position: relative;
  height: 580px;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  background: var(--jungle-loam);
  color: var(--jungle-white-sand);
  display: block;
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.fmt:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 12, 8, 0.28);
}
.fmt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fmt-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1400ms ease;
}
.fmt-bg img.active { opacity: 1; }
.fmt-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--jungle-charcoal);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}
.fmt:hover .fmt-scrim {
  opacity: 0.95;
}
.fmt-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease 80ms, transform 280ms ease 80ms;
}
.fmt:hover .fmt-content {
  opacity: 1;
  transform: translateY(0);
}
.fmt-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
  color: var(--jungle-white-sand);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.fmt-desc {
  font-family: var(--font-ui) !important;
  font-size: 17px !important;
  color: var(--jungle-white-sand);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 38ch;
  opacity: 0.94;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.fmt-best {
  font-family: var(--font-ui) !important;
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  opacity: 0.82;
  margin: 14px 0 0;
  max-width: 38ch;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.fmt-best span {
  font-weight: 800;
}
.fmt-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}
.fmt-meta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  opacity: 0.88;
}
.fmt-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  padding: 9px 14px;
  border: 1px solid rgba(244,239,229,0.45);
  border-radius: 999px;
  background: rgba(20,12,8,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.fmt-tag-heated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--jungle-copper);
  border-color: var(--jungle-copper);
  font-weight: 700;
  letter-spacing: 0.32em;
  padding: 10px 16px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.fmt-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jungle-white-sand);
  box-shadow: 0 0 0 3px rgba(244,239,229,0.25);
  animation: heatPulse 1.8s ease-in-out infinite;
}
@keyframes heatPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(244,239,229,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(244,239,229,0.05); }
}
@media (max-width: 760px) {
  .formats { grid-template-columns: 1fr; gap: 16px; }
  .fmt { height: 480px; }
  .fmt-content { padding: 32px 26px 26px; }
  .fmt-name { font-size: 28px; }
  .fmt-desc { font-size: 16px; }
}

/* ---------- FORMAT RIBBON (home preview only) ---------- */
.format-ribbon {
  display: flex;
  gap: 20px;
  padding: 0 40px 16px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--jungle-stone) transparent;
  -webkit-overflow-scrolling: touch;
}
.format-ribbon::-webkit-scrollbar { height: 6px; }
.format-ribbon::-webkit-scrollbar-thumb { background: var(--jungle-stone); border-radius: 4px; }
.format-ribbon .fmt {
  flex: 0 0 380px;
  height: 580px;
  scroll-snap-align: start;
}
.format-ribbon .fmt-arch {
  flex: 0 0 440px;
}
.fmt-arch .fmt-bg { border-radius: 9999px 9999px 0 0; overflow: hidden; }
.fmt-arch { border-radius: 9999px 9999px 12px 12px; }
.fmt-signature-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  background: rgba(20, 12, 8, 0.55);
  border: 1px solid rgba(244, 239, 229, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.fmt-beat-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  background: rgba(105, 65, 198, 0.88);
  border: 1px solid rgba(165, 130, 230, 0.5);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 760px) {
  .format-ribbon .fmt-arch { flex: 0 0 82vw; }
}
@media (max-width: 760px) {
  .format-ribbon { padding: 0 20px 16px; }
  .format-ribbon .fmt { flex: 0 0 82vw; height: 480px; }
}

/* legacy classes table — keep for other pages */
.classes {
  border-top: 1px solid var(--line);
}
.class-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 220px 60px;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 220ms;
}
.class-row:hover { background: var(--jungle-bone); }
.class-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.class-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--jungle-loam);
  line-height: 1.55;
  max-width: 56ch;
}
.class-meta {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jungle-stone);
}
.class-meta .heat {
  color: var(--jungle-copper);
  font-weight: 600;
}
.class-arrow {
  text-align: right;
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--jungle-charcoal);
}

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tier {
  background: var(--bg);
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tier-flag {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--jungle-loam);
  min-height: 1em;
}
.tier-flag.featured { color: var(--jungle-copper); }
.tier-name {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: 32px;
  line-height: 1;
}
.tier-price {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.tier-price small {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--jungle-loam);
  margin-left: 4px;
}
.tier-features {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.7;
  color: var(--jungle-charcoal);
  flex-grow: 1;
}
.tier-features li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.tier-features li:last-child { border-bottom: 1px solid var(--line); }
.tier-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid var(--jungle-charcoal);
  border-radius: 999px;
  transition: background 220ms, color 220ms;
}
.tier-cta:hover { background: var(--jungle-charcoal); color: var(--jungle-white-sand); }
.tier.featured .tier-cta { background: var(--jungle-charcoal); color: var(--jungle-white-sand); }
.tier.featured .tier-cta:hover { background: var(--jungle-copper); border-color: var(--jungle-copper); }

/* ---------- LOCATIONS ---------- */
.locs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loc-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--jungle-beige);
}
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.loc-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.loc-tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: 14px;
  color: var(--jungle-loam);
}
.loc-addr {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--jungle-loam);
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  padding: 88px 40px 32px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,237,224,0.15);
}
.footer h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: rgba(244,237,224,0.65);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 0;
}
.footer li a:hover { color: var(--jungle-sandy); }
.footer-mark {
  margin: 0 0 16px;
  line-height: 0;
}
.footer-mark img {
  height: 7em;
  width: auto;
  display: block;
}
.footer-tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: 18px;
  max-width: 32ch;
  line-height: 1.4;
  color: rgba(244,237,224,0.78);
  margin: 0;
}
.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.5);
}
.footer-bottom > * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-staff {
  color: rgba(244,237,224,0.5);
  text-decoration: none;
  transition: color 200ms;
}
.footer-staff:hover { color: var(--jungle-copper); }

/* ---------- BUTTON ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--jungle-charcoal);
  border-radius: 999px;
  background: transparent;
  color: var(--jungle-charcoal);
  cursor: pointer;
  transition: background 220ms, color 220ms;
}
.btn:hover { background: var(--jungle-charcoal); color: var(--jungle-white-sand); }
.btn-fill { background: var(--jungle-charcoal); color: var(--jungle-white-sand); }
.btn-fill:hover { background: var(--jungle-copper); border-color: var(--jungle-copper); }
.btn-light { border-color: var(--jungle-white-sand); color: var(--jungle-white-sand); }
.btn-light:hover { background: var(--jungle-white-sand); color: var(--jungle-charcoal); }

/* ---------- PAGE HEADER (interior pages) ---------- */
.page-header {
  padding: 40px;
  background: var(--jungle-bone);
  border-bottom: 1px solid var(--line);
}
.page-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.page-title {
  margin-top: 18px;
  max-width: 16ch;
  text-align: left;
}
.page-lede {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--jungle-loam);
  max-width: 56ch;
  margin-top: 20px;
}

/* shared section header (eyebrow + title left, button right) */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 40px 40px 0;
}

/* ---------- BUTTON GHOST ---------- */
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--jungle-loam);
}
.btn-ghost:hover {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-charcoal);
}

/* ---------- NAV ACTIVE ---------- */
.nav-links a.active {
  color: var(--jungle-white-sand);
  position: relative;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--jungle-copper);
}

/* ---------- SCHEDULE (Classes page) ---------- */
.schedule-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.schedule {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sch-col {
  background: var(--jungle-bone);
  display: flex;
  flex-direction: column;
}
.sch-day {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--jungle-charcoal);
}
.sch-slot {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  cursor: pointer;
  transition: background 180ms;
}
.sch-slot:hover { background: var(--jungle-beige); }
.sch-slot:last-child { border-bottom: none; }
.sch-time {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--jungle-charcoal);
  align-self: center;
  grid-row: 1 / span 2;
}
.sch-name {
  font-size: 15px;
  color: var(--jungle-charcoal);
  line-height: 1.3;
}
.sch-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jungle-loam);
  margin-top: 2px;
}
.sch-tag.heat { color: var(--jungle-copper); }
.sch-loc {
  display: none;
}

/* ---------- STUDIO SECTIONS (Studios page) ---------- */
.studio {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 720px;
  position: relative;
  background: var(--jungle-bone);
}
.studio--reverse {
  grid-template-columns: 1fr 1.15fr;
}
.studio--reverse .studio-imgs { order: 2; }
.studio--reverse .studio-type { order: 1; }
.studio-imgs {
  position: relative;
  overflow: hidden;
  background: var(--jungle-beige);
}
.studio-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.studio-imgs img.active { opacity: 1; }
.studio-type {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.studio-desc {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--jungle-loam);
  margin-top: 28px;
  max-width: 44ch;
}
.studio-info {
  margin: 40px 0 0;
  display: grid;
  gap: 24px;
}
.studio-info > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.studio-info dt {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
}
.studio-info dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--jungle-loam);
}
.studio-ctas {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.studio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(28, 25, 22, 0.4);
  color: var(--jungle-white-sand);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: background 180ms;
}
.studio-arrow:hover { background: rgba(28, 25, 22, 0.7); }
/* default: photo on left → arrows pinned to left half */
.studio-arrow-l { left: 24px; }
.studio-arrow-r { left: calc(53.5% - 68px); }
/* reverse: photo on right → mirror */
.studio--reverse .studio-arrow-l { left: auto; right: calc(53.5% - 68px); }
.studio--reverse .studio-arrow-r { left: auto; right: 24px; }

/* ---------- AMENITIES ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.amenity {
  background: var(--jungle-bone);
  padding: 48px 36px;
}
.amenity-num {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--jungle-copper);
}
.amenity-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 18px 0 14px;
  color: var(--jungle-charcoal);
}
.amenity-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--jungle-loam);
  max-width: 36ch;
}

/* ---------- INTRO TRIAL CARD (Membership) ---------- */
.intro-trial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--jungle-bone);
  overflow: hidden;
}
.intro-trial-type {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-trial-img {
  position: relative;
  min-height: 480px;
  background: var(--jungle-beige);
}
.intro-trial-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- COMPARE TABLE ---------- */
.compare {
  border: 1px solid var(--line);
  background: var(--jungle-bone);
}
.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--jungle-loam);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row > div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.cmp-row > div:last-child { border-right: none; }
.cmp-feature {
  text-align: left !important;
  color: var(--jungle-charcoal);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.cmp-head {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cmp-head .cmp-feature { color: var(--jungle-white-sand); }
.cmp-head > div { padding: 18px 20px; }
.cmp-featured {
  background: var(--jungle-beige);
  color: var(--jungle-charcoal) !important;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--jungle-charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 22px;
  color: var(--jungle-copper);
  transition: transform 220ms;
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-item p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--jungle-loam);
  margin: 16px 0 0;
  max-width: 64ch;
}
.faq-item p a { color: var(--jungle-copper); text-decoration: underline; }

/* ---------- STUDIO GALLERY (Temple, etc) ---------- */
.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.studio-gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--jungle-bone);
}
.studio-gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.studio-gallery-grid figure:hover img { transform: scale(1.03); }
.studio-gallery-grid .studio-gallery-tall { grid-row: span 2; }
@media (max-width: 760px) {
  .studio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .studio-gallery-grid .studio-gallery-tall { grid-row: span 2; }
}

/* ---------- BEYOND PAGE ---------- */
.beyond-jump {
  position: sticky;
  top: 64px;
  z-index: 9;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.beyond-jump-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.beyond-jump a {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jungle-stone);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
}
.beyond-jump a:hover {
  color: var(--jungle-charcoal);
  border-bottom-color: var(--jungle-copper);
}
.beyond-section {
  padding: 56px 40px;
  scroll-margin-top: 140px;
}
.beyond-section .h-display { text-align: center; }
.beyond-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.beyond-section--reverse .beyond-layout { grid-template-columns: 1fr 1.05fr; }
.beyond-section--reverse .beyond-media { order: 2; }
.beyond-media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.beyond-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.beyond-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.beyond-info > div { display: flex; flex-direction: column; gap: 4px; }
.beyond-info dt {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--jungle-stone);
}
.beyond-info dd {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--jungle-charcoal);
  margin: 0;
}
.beyond-info dd a { color: var(--jungle-copper); text-decoration: underline; }
.beyond-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .beyond-layout, .beyond-section--reverse .beyond-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .beyond-section--reverse .beyond-media { order: 0; }
  .beyond-media { aspect-ratio: 4/3; }
  .beyond-info { grid-template-columns: 1fr; }
}

/* "Soon" badge in nav dropdown for upcoming studios */
.nav-cs {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--jungle-copper);
  color: var(--jungle-white-sand);
  padding: 2px 5px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 5px;
  opacity: 0.9;
}

/* ---------- EVENTS CALENDAR (beyond.html) ---------- */
.events-intro {
  margin-bottom: 32px;
}
.events-cal-wrap {
  background: var(--jungle-bone);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--line);
}
.cal-month-label {
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--fg);
}
.cal-nav {
  background: none;
  border: 1px solid var(--line-strong);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms, border-color 180ms, color 180ms;
  padding: 0;
  line-height: 1;
}
.cal-nav:hover {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-charcoal);
}
.cal-grid {
  padding: 20px 24px;
}
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cal-dow span {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  text-align: center;
  padding: 4px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: var(--r-2);
  cursor: default;
  transition: background 140ms;
}
.cal-cell.has-event { cursor: pointer; }
.cal-cell.has-event:hover,
.cal-cell.selected { background: var(--jungle-beige); }
.cal-day-num {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--fg);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}
.cal-cell.today .cal-day-num {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  font-weight: 600;
}
.cal-cell.other-month .cal-day-num {
  color: var(--fg-subtle);
  opacity: 0.35;
}
.cal-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--jungle-copper);
  flex-shrink: 0;
}
.cal-detail {
  border-top: 1px solid var(--line);
  padding: 20px 28px;
  min-height: 80px;
}
.cal-detail-date {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 14px;
}
.cal-detail-empty {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: var(--fs-base);
  color: var(--fg-subtle);
  margin: 0;
}
.cal-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cal-event-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cal-event-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jungle-copper);
  margin-top: 5px;
  flex-shrink: 0;
}
.cal-event-name {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1.3;
}
.cal-event-meta {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  margin-top: 3px;
  line-height: 1.4;
}
.cal-event-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.cal-event-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  flex: 1;
}
.cal-event-desc {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  color: var(--fg);
  margin-top: 8px;
  line-height: 1.5;
}
.cal-event-cta {
  display: inline-block;
  margin-top: 10px;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--jungle-copper);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.cal-event-cta:hover { color: var(--fg); }
@media (max-width: 680px) {
  .events-cal-wrap { max-width: 100%; }
  .cal-grid { padding: 14px 12px; }
  .cal-header { padding: 18px 16px 14px; }
  .cal-detail { padding: 16px; }
  .cal-event-photo { width: 72px; height: 72px; }
}

/* ---------- BEYOND · EVENTS SECTIONS ---------- */
.beyond-events {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  scroll-margin-top: 100px;
}
.beyond-events + .beyond-events { border-top: 1px solid var(--line); }
.events-hero { margin-bottom: 56px; }
.events-headline {
  margin-top: 18px;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  text-transform: uppercase;
}
.events-lede {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--fg);
  margin-top: 28px;
  max-width: 68ch;
}
.events-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Month tab strip — current + next 3. */
.events-month-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.events-month-tab {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 18px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--fg-muted);
  transition: color 200ms, background 200ms;
  position: relative;
}
.events-month-tab:first-child { border-left: 0; }
.events-month-tab:hover { color: var(--fg); }
.events-month-tab.is-active {
  color: var(--fg);
  background: var(--jungle-bone);
}
.events-month-tab.is-active::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: -1px;
  height: 2px;
  background: var(--jungle-copper);
}
.events-month-tab-label {
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
}
.events-month-tab-year {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 11px;
  color: var(--fg-muted);
}

/* 2-col on desktop, stack on mobile. */
.beyond-events .events-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 56px;
  align-items: start;
}
.events-calendar-col,
.events-upcoming-col { min-width: 0; }
.events-upcoming-col {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.events-upcoming-head {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--fg);
  margin: 20px 0 4px;
}
.ev-month {
  border-bottom: 1px solid var(--line);
}
.ev-month > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--fg);
}
.ev-month > summary::-webkit-details-marker { display: none; }
.ev-month-name { flex: 1; }
.ev-month-count {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-sm);
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg-muted);
}
.ev-month-caret {
  font-size: 12px;
  color: var(--fg-muted);
  transition: transform 200ms ease;
}
.ev-month[open] .ev-month-caret { transform: rotate(180deg); }

.ev-month-list {
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ev-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.ev-row:first-child { border-top: 0; padding-top: 4px; }
.ev-row--featured {
  grid-template-columns: 64px 140px 1fr;
}
.ev-row-date {
  text-align: left;
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-top: 4px;
}
.ev-row-day {
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 300;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.ev-row-dow {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}
.ev-row-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}
.ev-row-body { min-width: 0; padding-top: 4px; }
.ev-row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ev-row-title {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
}
.ev-row-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--jungle-copper);
  color: var(--jungle-copper);
  border-radius: 999px;
}
.ev-row-meta {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--fg-muted);
  margin-top: 6px;
}
.ev-row-desc {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  color: var(--fg);
  margin-top: 12px;
  line-height: 1.55;
  max-width: 48ch;
}
.ev-row-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--jungle-copper);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.ev-row-cta:hover { color: var(--fg); }

.events-featured-empty {
  padding: 40px 24px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--fg-muted);
}

/* Featured day on the calendar gets a copper dot. */
.cal-cell.has-featured .cal-dot { background: var(--jungle-copper); }

@media (max-width: 768px) {
  .beyond-events { padding: 48px 24px; }
  .events-hero { margin-bottom: 36px; }
  .events-headline { font-size: clamp(40px, 12vw, 72px); }
  .events-month-tabs { margin-bottom: 32px; }
  .events-month-tab { padding: 14px 8px; }
  .events-month-tab-year { font-size: 10px; }
  .beyond-events .events-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .ev-row { grid-template-columns: 52px 1fr; gap: 14px; }
  .ev-row--featured { grid-template-columns: 52px 100px 1fr; }
  .ev-row-photo { width: 100px; height: 100px; }
  .ev-row-day { font-size: 26px; }
}

/* ---------- CAREERS (About page) ---------- */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.careers-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
  background: var(--jungle-bone);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 220ms, transform 220ms;
}
.careers-card:hover {
  border-color: var(--jungle-charcoal);
  transform: translateY(-2px);
}
.careers-card-kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jungle-copper);
}
.careers-card-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}
.careers-card-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--jungle-loam);
  line-height: 1.55;
  margin: 0;
}
.careers-card-link {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
}
.careers-card-link:hover { color: var(--jungle-copper); }
@media (max-width: 760px) {
  .careers-grid { grid-template-columns: 1fr; }
}

/* ---------- SANCTUARIES JUMP DROPDOWN (custom) ---------- */
.sanctuaries-jump {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.sanctuaries-jump-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jungle-stone);
}
.sanctuaries-jump-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  background: var(--jungle-charcoal);
  border: 1px solid var(--jungle-charcoal);
  border-radius: 999px;
  padding: 12px 18px 12px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  justify-content: space-between;
  transition: background 200ms ease, border-color 200ms ease;
}
.sanctuaries-jump-btn:hover,
.sanctuaries-jump.open .sanctuaries-jump-btn {
  background: var(--jungle-copper);
  border-color: var(--jungle-copper);
}
.sanctuaries-jump-caret {
  font-size: 10px;
  opacity: 0.85;
  transition: transform 200ms ease;
}
.sanctuaries-jump.open .sanctuaries-jump-caret { transform: rotate(180deg); }
.sanctuaries-jump-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: var(--jungle-charcoal);
  border: 1px solid rgba(244,239,229,0.16);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 20;
  max-height: 70vh;
  overflow-y: auto;
}
.sanctuaries-jump.open .sanctuaries-jump-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sanctuaries-jump-menu li {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  padding: 12px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 180ms ease, color 180ms ease;
}
.sanctuaries-jump-menu li:hover {
  background: rgba(244,239,229,0.06);
  color: var(--jungle-copper);
}
.sanctuaries-jump-menu li.is-soon { color: rgba(244,239,229,0.62); }
.sanctuaries-jump-menu li.is-soon:hover { color: var(--jungle-white-sand); }
.jump-soon-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  padding: 4px 8px;
  border: 1px solid rgba(244,239,229,0.28);
  border-radius: 999px;
  opacity: 0.85;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .sanctuaries-jump { width: 100%; }
  .sanctuaries-jump-btn { flex: 1; min-width: 0; }
  .sanctuaries-jump-menu { left: 0; right: 0; min-width: 0; }
}

/* ---------- STUDIO RAIL (Sanctuaries — horizontal slider) ---------- */
.studio-rail-wrap {
  position: relative;
}
.studio-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 16px;
  margin: 0 -4px;
}
.studio-rail::-webkit-scrollbar { display: none; }
.studio-card {
  position: relative;
  flex: 0 0 420px;
  height: 540px;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
  background: var(--jungle-loam);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.studio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 12, 8, 0.28);
}
.studio-card-img,
.studio-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-card-img img {
  opacity: 1;
  transition: opacity 1400ms ease;
}
.studio-card-img.is-rotating img { opacity: 0; }
.studio-card-img.is-rotating img.active { opacity: 1; }
.studio-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.05) 35%, rgba(20,12,8,0.55) 65%, rgba(20,12,8,0.88) 100%);
  pointer-events: none;
}
.studio-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
  color: var(--jungle-white-sand);
  z-index: 2;
}
.studio-card-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  color: var(--jungle-white-sand);
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.studio-card-ctas {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.studio-card-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(244,239,229,0.55);
  background: rgba(20,12,8,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 220ms ease, border-color 220ms ease;
}
.studio-card-btn:hover {
  background: rgba(20,12,8,0.65);
  border-color: var(--jungle-white-sand);
}
.studio-card-btn-primary {
  background: var(--jungle-copper);
  border-color: var(--jungle-copper);
  font-weight: 700;
}
.studio-card-btn-primary:hover {
  background: var(--jungle-charcoal);
  border-color: var(--jungle-charcoal);
}
.studio-card--coming .studio-card-img img {
  filter: grayscale(0.5) brightness(0.62);
}
.studio-card-soon {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  background: rgba(20,12,8,0.7);
  border: 1px solid rgba(244,239,229,0.4);
  padding: 8px 12px;
  border-radius: 999px;
}
.studio-card-soon-note {
  font-family: var(--font-serif);
  font-size: 15px;
  margin: 14px 0 0;
  color: rgba(244,239,229,0.85);
}
.studio-rail-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--jungle-charcoal);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, border-color 200ms;
}
.studio-rail-arrow:hover {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-charcoal);
}
.studio-rail-arrow-l { left: -22px; }
.studio-rail-arrow-r { right: -22px; }
@media (max-width: 760px) {
  .studio-card { flex: 0 0 86vw; height: 460px; }
  .studio-rail-arrow { display: none; }
}

/* ---------- LOCATIONS GRID (legacy — still used elsewhere) ---------- */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.loc-card {
  display: flex;
  flex-direction: column;
}
.loc-card .loc-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--jungle-beige);
}
.loc-card .loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-body {
  padding: 24px 0 0;
}
.loc-num {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--jungle-copper);
}
.loc-card .loc-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.015em;
  text-transform: none;
  margin: 12px 0 16px;
  color: var(--jungle-charcoal);
}
.loc-card .loc-addr,
.loc-card .loc-meta {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--jungle-loam);
  margin: 0 0 12px;
  display: block;
  border: none;
  padding: 0;
}
.loc-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
  border-bottom: 1px solid var(--jungle-copper);
  padding-bottom: 4px;
}

/* ---------- CONTACT (Visit page) ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-info {
  margin: 40px 0 0;
  display: grid;
  gap: 18px;
}
.contact-info > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.contact-info dt {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
}
.contact-info dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--jungle-loam);
}
.contact-info a { color: var(--jungle-loam); border-bottom: 1px solid var(--line); }
.contact-info a:hover { color: var(--jungle-copper); border-color: var(--jungle-copper); }
.about-studio-tabs {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.about-studio-tab {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jungle-loam);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 160ms, border-color 160ms;
}
.about-studio-tab:hover {
  color: var(--jungle-charcoal);
  border-color: var(--jungle-copper);
}
.studio-contact-block {
  border-top: 1px solid var(--line);
}
/* Location panels — about page (matches beyond-events layout) */
.location-panel { display: none; }
.location-panel.active { display: block; }
.location-panel-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px;
  align-items: start;
}
.location-panel-info { min-width: 0; text-align: left; }
.location-panel-info .h-display,
.location-panel-info h1,
.location-panel-info h2,
.location-panel-info h3 { text-align: left !important; }
.location-panel-img { min-width: 0; }
.location-panel-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.location-visit-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.location-visit-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}
.location-visit-line {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--jungle-loam);
  margin: 0;
  line-height: 1.55;
}
.location-visit-line a { color: var(--jungle-loam); border-bottom: 1px solid var(--line); }
.location-visit-line a:hover { color: var(--jungle-copper); border-color: var(--jungle-copper); }
@media (max-width: 760px) {
  .location-panel-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
  .location-panel-img { order: -1; }
  .location-panel-img img { aspect-ratio: 4 / 3; }
  .location-visit-card { grid-template-columns: 1fr; gap: 6px; }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field span {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
}
.field input[type="text"],
.field select,
.field textarea {
  font-family: "Termina", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--jungle-charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color 180ms;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--jungle-copper);
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}
.form-status {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 200;
  font-size: 14px;
  color: var(--jungle-copper);
  opacity: 0;
  transition: opacity 320ms;
}
.form-status.show { opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  .nav { padding: 30px; }
  .nav-links { display: none; }
  .hero-overlay { padding: 32px 20px; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .section, .intro { padding: 40px 20px; }
  .intro { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px; }
  .frames { grid-template-columns: 1fr; padding: 0 20px; }
  .pricing { grid-template-columns: 1fr; }
  .locs { grid-template-columns: 1fr; }
  /* Footer collapses to 2x2 link columns (Studios + Practice row 1,
     About + Connect row 2). Center-justified on mobile. Studios +
     Practice are collapsible — h4 acts as the disclosure target,
     toggled by a tiny click handler in nav.js. The brand badge —
     first in DOM order on desktop — re-orders below the link grid
     on mobile so the dense link block reads first. */
  .footer { padding: 48px 24px 24px; text-align: center; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 32px;
  }
  .footer-inner > div { display: flex; flex-direction: column; align-items: center; }
  .footer-inner > div:first-child {
    order: 99;
    grid-column: 1 / -1;
    margin-top: 4px;
  }
  .footer-mark { display: flex; justify-content: center; }
  .footer-mark img { height: 4.5em; }
  .footer-tag { font-size: 15px; max-width: 38ch; text-align: center; }
  .footer h4 { margin-bottom: 12px; font-size: 10px; letter-spacing: 0.22em; }
  .footer li { padding: 5px 0; font-size: 11px; letter-spacing: 0.12em; }
  .footer ul { text-align: center; }

  /* Collapsible columns — start contracted; h4 toggles. The chevron
     uses a unicode +/− and rotates via the .is-open class JS sets. */
  .footer-col-collapsible h4 {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    margin-bottom: 0;
  }
  .footer-col-collapsible h4::after {
    content: '+';
    font-size: 13px;
    line-height: 1;
    opacity: 0.6;
    width: 10px;
    text-align: center;
  }
  .footer-col-collapsible.is-open h4 { margin-bottom: 12px; }
  .footer-col-collapsible.is-open h4::after { content: '−'; }
  .footer-col-collapsible ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }
  .footer-col-collapsible.is-open ul {
    max-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 9px;
  }
  .class-row { grid-template-columns: 1fr 60px; }
  .class-row .class-desc, .class-row .class-meta { display: none; }
  .formats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SHOP
   ========================================================================== */
/* Compact video banner with white-on-image caption overlay */
.shop-summer-banner {
  position: relative;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.shop-summer-video {
  display: block;
  width: 100%;
  height: clamp(260px, 38vh, 420px);
  object-fit: cover;
  border-radius: 4px;
  background: var(--jungle-charcoal);
}
.shop-summer-veil {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  bottom: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(20,12,6,0) 55%, rgba(20,12,6,0.55) 100%);
  pointer-events: none;
}
.shop-summer-caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}
.shop-summer-caption-kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.92;
  margin-bottom: 6px;
}
.shop-summer-caption-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
}

.shop-filters {
  padding: 28px 40px 8px;
  max-width: 1280px;
  margin: 0 auto;
}
.shop-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 36px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shop-filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
.shop-filter-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--jungle-stone);
  margin-right: 6px;
}
.shop-filter-pill {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--jungle-charcoal);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.shop-filter-pill:hover {
  border-color: var(--jungle-charcoal);
}
.shop-filter-pill.is-active {
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  border-color: var(--jungle-charcoal);
}

/* Category dropdown — matches the studios-page sanctuaries-jump style */
.shop-filter-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.shop-filter-select {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  background: var(--jungle-charcoal);
  border: 1px solid var(--jungle-charcoal);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  justify-content: space-between;
  transition: background 200ms ease, border-color 200ms ease;
}
.shop-filter-select:hover,
.shop-filter-dropdown.open .shop-filter-select {
  background: var(--jungle-copper);
  border-color: var(--jungle-copper);
}
.shop-filter-select-caret {
  font-size: 10px;
  opacity: 0.85;
  transition: transform 200ms ease;
}
.shop-filter-dropdown.open .shop-filter-select-caret { transform: rotate(180deg); }

.shop-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: var(--jungle-charcoal);
  border: 1px solid rgba(244,239,229,0.16);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 20;
  max-height: 70vh;
  overflow-y: auto;
}
.shop-filter-dropdown.open .shop-filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.shop-filter-menu li {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-white-sand);
  padding: 12px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 180ms ease, color 180ms ease;
}
.shop-filter-menu li:hover {
  background: rgba(244,239,229,0.06);
  color: var(--jungle-copper);
}
.shop-filter-menu li.is-active { color: var(--jungle-copper); }

.shop-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 40px 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 28px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.shop-card-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.shop-card[hidden] { display: none; }
.shop-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--jungle-beige);
  border-radius: 4px;
}
.shop-card-img img,
.shop-card-img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.shop-card:hover .shop-card-img img,
.shop-card:hover .shop-card-img video { transform: scale(1.03); }
.shop-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20,12,8,0.55);
  color: var(--jungle-white-sand);
  backdrop-filter: blur(6px);
}
.shop-card-tag--summer { background: var(--jungle-copper); }
.shop-card-meta { padding: 14px 0 0; }
.shop-card-cat {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jungle-stone);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-card-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
  margin: 0 0 8px;
  display: block;
  line-height: 1.2;
  height: 2.4em;             /* hard 2-line slot, 1-line names left-justified inside */
  overflow: hidden;
}
.shop-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.shop-card-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--swatch, var(--jungle-stone));
  border: 1px solid rgba(43, 41, 38, 0.18);
  flex: none;
}
.shop-card-swatch--light {
  border-color: rgba(43, 41, 38, 0.22);
}
.shop-card-price {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--jungle-charcoal);
  margin: 0;
}
.shop-card-price--soon {
  color: var(--jungle-stone);
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  font-family: var(--font-serif);
  color: var(--jungle-stone);
  font-size: 16px;
}

@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .shop-summer-banner { padding: 0 20px; margin: 24px auto 0; }
  .shop-summer-video { height: clamp(220px, 34vh, 320px); }
  .shop-summer-veil { left: 20px; right: 20px; }
  .shop-summer-caption { bottom: 18px; }
  .shop-summer-caption-mark { font-size: 22px; }
  .shop-filters { padding: 20px 20px 4px; }
  .shop-filter-row { gap: 14px 18px; padding: 14px 0; }
  .shop-filter-group { gap: 8px; }
  .shop-filter-label { min-width: 100%; margin: 0 0 4px; }
  .shop-filter-pill { padding: 8px 14px; font-size: 10px; }
  .shop-filter-dropdown { width: 100%; }
  .shop-filter-select { flex: 1; min-width: 0; }
  .shop-filter-menu { left: 0; right: 0; min-width: 0; }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
    padding: 24px 20px 64px;
  }
  .shop-card-name { font-size: 12px; }
}

/* Instagram grid — index.html */
.insta-section {
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.insta-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.insta-handle {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jungle-charcoal);
  text-decoration: none;
}
.insta-handle:hover { color: var(--jungle-copper); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.insta-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.insta-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.insta-grid a:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}
@media (max-width: 760px) {
  .insta-section { padding: 48px 20px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Room subnav — studio room toggle (Bishop Arts) */
.room-subnav {
  background: var(--jungle-white-sand);
  border-bottom: 1px solid var(--line);
}
.room-subnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
}
.room-subnav-tab {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-stone);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 24px;
  cursor: pointer;
  transition: color 200ms, border-color 200ms;
}
.room-subnav-tab:hover { color: var(--jungle-charcoal); }
.room-subnav-tab.active {
  color: var(--jungle-charcoal);
  border-bottom-color: var(--jungle-charcoal);
}
@media (max-width: 760px) {
  .room-subnav-inner { padding: 0 20px; }
  .room-subnav-tab { padding: 14px 16px; }
}

/* Main-shop commerce preview */
.shop-card {
  cursor: pointer;
}
.shop-card:focus-visible {
  outline: 2px solid var(--jungle-copper);
  outline-offset: 6px;
}
.shop-card-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.36);
  color: var(--jungle-charcoal);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 9px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.shop-card-cta:hover,
.shop-card-cta:focus-visible {
  border-color: var(--jungle-copper);
  color: var(--jungle-copper);
}
.booking-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--jungle-copper);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.booking-checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  background: rgba(43,41,38,0.72);
}
.booking-checkout-modal {
  position: relative;
  width: min(100%, 680px);
  height: 100%;
  overflow-y: auto;
  background: var(--jungle-white-sand);
  box-shadow: -24px 0 60px rgba(0,0,0,0.22);
  padding: 56px 42px;
}
.booking-checkout-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251,248,241,0.88);
  color: var(--jungle-charcoal);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1;
}
.shop-product-modal {
  width: min(100%, 1040px);
}
.shop-product-detail {
  clear: both;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 44px;
  padding-top: 18px;
}
.shop-product-stage {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--jungle-sand);
}
.shop-product-stage img,
.shop-product-stage video,
.shop-cart-thumb img,
.shop-cart-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.shop-product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.shop-product-thumbs button {
  width: 74px;
  height: 92px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.shop-product-thumbs button.active,
.shop-product-thumbs button:focus-visible {
  border-color: var(--jungle-copper);
}
.shop-product-thumbs img,
.shop-product-thumbs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-product-info h2,
.shop-checkout-modal [data-shop-modal-content] h2,
.shop-checkout-modal > h2 {
  color: var(--jungle-charcoal);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  margin: 16px 0 20px;
  text-transform: uppercase;
}
.shop-product-price {
  color: var(--jungle-charcoal);
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.shop-product-description,
.shop-checkout-success {
  color: var(--jungle-stone);
  font-size: 17px;
  line-height: 1.7;
}
.shop-product-option,
.shop-product-option-static,
.shop-checkout-field,
.shop-checkout-auth label,
.shop-checkout-form label,
.shop-checkout-grid label {
  box-sizing: border-box;
  display: grid;
  gap: 8px;
  color: var(--jungle-charcoal);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-product-option select,
.shop-checkout-field select,
.shop-checkout-auth input,
.shop-checkout-form input,
.shop-checkout-form select,
.shop-checkout-grid input {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
  color: var(--jungle-charcoal);
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0;
  min-height: 54px;
  padding: 12px 16px;
  text-transform: none;
}
.shop-product-submit {
  width: 100%;
  margin-top: 22px;
}
.shop-checkout-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
  margin: 18px 0 26px;
}
.shop-checkout-step {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--jungle-stone);
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.shop-checkout-step span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--jungle-bone);
  color: var(--jungle-stone);
  font-size: 9px;
}
.shop-checkout-step.active,
.shop-checkout-step.done {
  color: var(--jungle-charcoal);
}
.shop-checkout-step.active span,
.shop-checkout-step.done span {
  border-color: var(--jungle-charcoal);
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
}
.shop-checkout-panel {
  clear: both;
}
.shop-checkout-auth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 30px;
}
.shop-checkout-auth .eyebrow,
.shop-checkout-section .eyebrow {
  margin-bottom: 2px;
}
.shop-checkout-auth .eyebrow,
.shop-checkout-auth .shop-checkout-note,
.shop-checkout-auth .shop-checkout-auth-actions,
.shop-checkout-auth > label:only-of-type {
  grid-column: 1 / -1;
}
.shop-checkout-auth > label {
  margin: 0;
}
.shop-checkout-auth .shop-checkout-note {
  margin: 0;
}
.shop-cart-list,
.shop-checkout-form,
.shop-payment-form,
.shop-checkout-section {
  display: grid;
  gap: 18px;
}
.shop-cart-line {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.shop-cart-line--editable {
  grid-template-columns: 88px minmax(0, 1fr) auto;
}
.shop-cart-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--jungle-sand);
}
.shop-cart-copy strong {
  display: block;
  color: var(--jungle-charcoal);
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shop-cart-copy span {
  color: var(--jungle-stone);
  display: block;
  margin-top: 6px;
}
.shop-cart-option {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.shop-cart-option select {
  max-width: 220px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 10px;
}
.shop-cart-line-actions {
  align-items: end;
  display: grid;
  gap: 10px;
}
.shop-cart-line-actions > button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--jungle-copper);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 9px 13px;
  text-transform: uppercase;
}
.shop-checkout-row,
.shop-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.shop-checkout-span {
  grid-column: 1 / -1;
}
.shop-quantity-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0;
}
.shop-quantity-control {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}
.shop-quantity-control button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.shop-checkout-summary {
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 20px;
}
.shop-checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.shop-checkout-summary span,
.shop-checkout-summary strong {
  font-family: var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shop-checkout-summary .total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
}
.shop-payment-choices {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 22px 0;
}
.shop-payment-choice {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--jungle-charcoal);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  min-width: 150px;
  padding: 17px 24px;
  text-transform: uppercase;
}
.shop-payment-choice.active,
.shop-payment-choice:hover,
.shop-payment-choice:focus-visible {
  background: var(--jungle-copper);
  border-color: var(--jungle-copper);
  color: white;
}
.shop-payment-choices--card-only {
  justify-content: flex-end;
}
.shop-wallet-note,
.shop-checkout-note {
  background: rgba(177,151,116,0.14);
  color: var(--jungle-stone);
  padding: 18px;
}
.shop-checkout-note--warn {
  background: rgba(185,86,46,0.14);
  color: var(--jungle-copper);
}
.shop-checkout-signed-in {
  border: 1px solid var(--line);
  padding: 18px;
}
.shop-checkout-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 2px;
}
.shop-checkout-auth-actions .booking-link-button {
  padding: 0;
  text-align: left;
}
.password-reset-page {
  min-height: 68vh;
}
.password-reset-card {
  display: grid;
  gap: 18px;
  max-width: 560px;
  margin-top: 32px;
}
.password-reset-card .btn {
  justify-content: center;
  opacity: 1;
  width: fit-content;
}
.shop-checkout-rate-list {
  display: grid;
  gap: 12px;
}
.shop-checkout-rate {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  gap: 14px;
  padding: 17px 18px;
}
.shop-checkout-rate span {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shop-checkout-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 30px;
}
.shop-checkout-actions .booking-link-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--jungle-copper);
  padding: 15px 23px;
}
.shop-checkout-actions .btn {
  min-width: 220px;
}
.shop-checkout-continue {
  margin-right: auto;
}
.shop-cart-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(250, 246, 238, 0.48);
  border-radius: 999px;
  background: var(--jungle-charcoal);
  color: var(--jungle-white-sand);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(20, 12, 8, 0.22);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 0 14px 0 18px;
  text-transform: uppercase;
}
.shop-cart-floating[hidden] {
  display: none;
}
.shop-cart-floating span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--jungle-copper);
  color: var(--jungle-white-sand);
  font-size: 10px;
  letter-spacing: 0;
  padding: 0 6px;
}
@media (max-width: 760px) {
  .booking-checkout-overlay {
    justify-content: center;
  }
  .booking-checkout-modal {
    width: 100%;
    padding: 46px 24px 34px;
  }
  .shop-product-detail,
  .shop-checkout-row,
  .shop-checkout-grid,
  .shop-checkout-auth,
  .shop-cart-line--editable {
    grid-template-columns: 1fr;
  }
  .shop-product-info h2,
  .shop-checkout-modal [data-shop-modal-content] h2,
  .shop-checkout-modal > h2 {
    font-size: clamp(34px, 12vw, 52px);
  }
  .shop-checkout-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .shop-checkout-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .shop-checkout-actions .btn,
  .shop-checkout-actions .booking-link-button {
    width: 100%;
  }
  .shop-payment-choices {
    justify-content: stretch;
  }
  .shop-payment-choice {
    flex: 1;
    min-width: 0;
  }
  .shop-cart-floating {
    right: 16px;
    bottom: 16px;
  }
}
