/* ==========================================================================
   Lumen & Stillness — Yoga Studio & Wellness Center
   Design concept: "Dawn Practice" — a slow sunrise palette (deep plum dusk
   fading to warm linen light, gold hour accent) paired with an expressive
   serif for editorial warmth and a quiet geometric sans for structure.
   ========================================================================== */

/* -------------------------------- Fonts -------------------------------- */

/* ------------------------------ Design tokens ---------------------------- */
:root {
  /* Dawn palette — light mode */
  --bg: #FAF6F0;
  --bg-alt: #F1E7D8;
  --bg-elevated: #FFFFFF;
  --bg-sunken: #EFE4D4;
  --ink: #2B2233;
  --ink-soft: #5C5163;
  --muted: #8B8091;
  --line: rgba(43, 34, 51, 0.13);
  --line-strong: rgba(43, 34, 51, 0.24);

  --primary: #7B4768;
  /* dusk plum */
  --primary-deep: #4A2A44;
  --primary-tint: #F3E7EF;
  --gold: #C6952F;
  /* dawn gold */
  --gold-tint: #F7ECD3;
  --dusk-blue: #57628A;
  /* night-sky accent */
  --dusk-blue-tint: #E9ECF5;
  --rose: #BE6E76;
  /* first-light rose */
  --rose-tint: #F6E6E5;

  /* Invariant contrast pair — used only for solid/gradient surfaces that carry
     white text (buttons, active tabs, CTA bands, footer). These deliberately do
     NOT flip in dark mode: --primary and --primary-deep intentionally lighten in
     dark mode so they stay readable as *text/icon accents* on dark backgrounds,
     which meant anything reusing them as a white-text *background* lost contrast
     the moment dark mode turned on. These two stay dark in both themes instead. */
  --primary-solid: #7B4768;
  --primary-solid-deep: #4A2A44;

  --shadow-1: 0 1px 2px rgba(42, 26, 41, 0.06), 0 8px 24px -12px rgba(42, 26, 41, 0.18);
  --shadow-2: 0 4px 10px rgba(42, 26, 41, 0.08), 0 24px 48px -20px rgba(42, 26, 41, 0.28);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --header-h: 86px;
  --announce-h: 42px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Dark mode — the plum dusk deepens into night, gold hour becomes the light source */
html.dark {
  --bg: #1B1420;
  --bg-alt: #241A28;
  --bg-elevated: #2A1E2F;
  --bg-sunken: #150F19;
  --ink: #F3ECEF;
  --ink-soft: #CBBDC7;
  --muted: #96899C;
  --line: rgba(243, 236, 239, 0.12);
  --line-strong: rgba(243, 236, 239, 0.22);

  --primary: #D79FC4;
  --primary-deep: #3A1F38;
  /* fixed: was a near-white tint that broke every surface pairing this token with white text */
  --primary-tint: #362531;
  --gold: #E4B655;
  --gold-tint: #35291B;
  --dusk-blue: #9AA6D4;
  --dusk-blue-tint: #232A42;
  --rose: #E2A0A6;
  --rose-tint: #3A2427;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px -12px rgba(0, 0, 0, .5);
  --shadow-2: 0 4px 10px rgba(0, 0, 0, .35), 0 24px 60px -20px rgba(0, 0, 0, .65);
}

/* ------------------------------- Reset ----------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  min-width: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(34px, 4.8vw, 44px);
  }

  h2 {
    font-size: clamp(30px, 3.8vw, 38px);
  }

  h3 {
    font-size: clamp(26px, 3.2vw, 32px);
  }

  h4 {
    font-size: clamp(23px, 2.7vw, 27px);
  }

  h5,
  h6 {
    font-size: clamp(19px, 2.4vw, 24px);
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(30px, 7vw, 36px);
  }

  h2 {
    font-size: clamp(26px, 6vw, 32px);
  }

  h3 {
    font-size: clamp(23px, 5vw, 28px);
  }

  h4 {
    font-size: clamp(20px, 4.4vw, 24px);
  }

  h5,
  h6 {
    font-size: clamp(17px, 4vw, 20px);
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1024px) {
  .container {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--primary);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin-top: 10px;
  letter-spacing: -.01em;
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 52ch;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
}

.pad {
  padding: 75px 0;
}

@media (max-width: 900px) {
  .pad {
    padding: 68px 0;
  }
}

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-solid);
  color: #fff;
  box-shadow: var(--shadow-1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #2B2233;
  box-shadow: var(--shadow-1);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

/* ============================== ANNOUNCEMENT BAR ========================= */
.announce {
  height: var(--announce-h);
  background: var(--primary-solid-deep);
  color: #F4E9EE;
  overflow: hidden;
  position: relative;
}

.announce-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 64px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding-left: 64px;
}

.announce.paused .announce-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.announce-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}

.announce-item svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--gold);
}

html[dir="rtl"] .announce-track {
  animation-name: marquee-rtl;
  padding-left: 0;
  padding-right: 64px;
}

@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

/* ==================================== HEADER ============================= */
.site-header {
  position: sticky;
  padding-left:15px;
  padding-right:15px;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: height .3s var(--ease), background-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  height: 82px;
  box-shadow: var(--shadow-1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
  flex: none;
}

.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--gold), var(--rose), var(--primary), var(--gold));
  display: grid;
  place-items: center;
  flex: none;
}

.logo .mark svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.logo span.sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  display: block;
  letter-spacing: .04em;
  margin-top: 1px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

/* Primary nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform .25s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: var(--bg-alt);
}

.nav-item.active>.nav-link {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-tint);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-2);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 50;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
}

.dropdown a small {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}

.dropdown a.active {
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 600;
  padding-left: 18px;
}

.dropdown a.active small {
  color: var(--primary);
}

.dropdown a:hover {
  background: var(--primary-tint);
  color: var(--primary);
  padding-left: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0px;
  flex: none;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease, transform .2s var(--ease);
  position: relative;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.icon-btn:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.toggle-pill {
  width: 52px;
  height: 30px;
  border-radius: 100px;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  position: relative;
  flex: none;
  transition: background-color .3s ease;
}

.toggle-pill .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease), background-color .3s ease;
  color: var(--gold);
}

.toggle-pill .knob svg {
  width: 12px;
  height: 12px;
}

html.dark .toggle-pill#darkToggle .knob,
html.dark .toggle-pill#darkToggleMobile .knob {
  transform: translateX(22px);
  background: var(--primary-solid-deep);
  color: var(--gold);
}

html[dir="rtl"] .toggle-pill#rtlToggle .knob,
html[dir="rtl"] .toggle-pill#rtlToggleMobile .knob {
  transform: translateX(22px);
}

.page-top-toggles {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
}

.toggle-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0 4px;
}

.login-btn {
  margin-left: 8px;
}

html[dir="rtl"] .login-btn {
  margin-left: 0;
  margin-right: 8px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  flex: none;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .3s var(--ease), opacity .3s ease, background .3s;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger.active span {
  background: transparent;
}

.hamburger.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: color-mix(in srgb, var(--bg-sunken) 90%, transparent);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: min(560px, 90vw);
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-16px);
  transition: transform .35s var(--ease);
}

.search-overlay.open .search-box {
  transform: translateY(0);
}

.search-box svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  margin-left: 10px;
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 17px;
  padding: 12px 4px;
}

.search-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.search-close:hover {
  background: var(--bg-alt);
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 86vw);
  background: var(--bg-elevated);
  z-index: 300;
  box-shadow: var(--shadow-2);
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
  padding: 26px 22px 40px;
}

html[dir="rtl"] .mobile-nav {
  right: auto;
  left: 0;
  transform: translateX(-105%);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.mobile-close:hover {
  background: var(--bg-alt);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav .m-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav .m-link svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
  color: var(--muted);
}

.mobile-nav li.active .m-link {
  color: var(--primary);
  font-weight: 600;
}

.m-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  display: flex;
  flex-direction: column;
  padding-left: 14px;
}

html[dir="rtl"] .m-submenu {
  padding-left: 0;
  padding-right: 14px;
}

.m-submenu a {
  padding: 11px 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .2s ease, padding-left .2s ease;
}

.m-submenu a:hover,
.m-submenu a.active {
  color: var(--primary);
  font-weight: 600;
  padding-left: 12px;
}

html[dir="rtl"] .m-submenu a:hover,
html[dir="rtl"] .m-submenu a.active {
  padding-left: 6px;
  padding-right: 12px;
}

li.m-open .m-submenu {
  max-height: 200px;
}

li.m-open .m-link svg {
  transform: rotate(180deg);
}

.mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.mobile-toggles {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.overlay-scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 20, .4);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}

.overlay-scrim.open {
  opacity: 1;
  visibility: visible;
}

/* =============================== HERO BANNER (CENTERED) ==================================== */
.hero.hero-center {
  padding: 120px 0 90px;
  position: relative;
  background-image: url('../images/yoga\ 1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Center gradient overlay for better text readability */
.hero-center .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.44) 100%);
  z-index: 1;
}

.hero-center .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-center .hero-copy {
  max-width: 780px;
  /* Center layout-ku larger width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.hero-center .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-size: 12.5px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.hero-center .hero-eyebrow .dot-stack {
  display: flex;
}

.hero-center .hero-eyebrow .dot-stack img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg-elevated);
  margin-left: -9px;
  object-fit: cover;
}

.hero-center .hero-eyebrow .dot-stack img:first-child {
  margin-left: 0;
}

.hero-center h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-top: 0;
  color: #fff;
}

.hero-center h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-center p.lede {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
}

.hero-center .hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-center .hero-cta .btn-primary {
  color: #fff;
  background: var(--primary-solid);
  border: 1px solid var(--primary-solid);
}

.hero-center .hero-cta .btn-ghost {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.82);
}

.hero-center .hero-cta .btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.hero-center .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  width: 100%;
  max-width: 550px;
}

.hero-center .hero-stats .stat {
  text-align: center;
  color: #fff;
}

.hero-center .hero-stats .stat b {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  display: block;
  color: #fff;
}

.hero-center .hero-stats .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 768px) {
  .hero.hero-center {
    padding: 80px 0 60px;
  }

  .hero-center .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* ============================= PHILOSOPHY ================================ */
.philosophy {
  background: var(--bg-alt);
}

.philo-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.philo-media {
  position: sticky;
  top: 120px;
}

.philo-media .frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/5;
}

.philo-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philo-list {
  display: flex;
  flex-direction: column;
}

.philo-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}

.philo-list .philo-row:last-child {
  border-bottom: 1px solid var(--line);
}

.philo-word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  padding-top: 4px;
}

.philo-row h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 25px;
  transition: color .25s ease, transform .3s var(--ease);
}

.philo-row p {
  margin-top: 10px;
  color: var(--ink-soft);
  max-width: 52ch;
}

.philo-row:hover h3 {
  color: var(--primary);
  transform: translateX(6px);
}

html[dir="rtl"] .philo-row:hover h3 {
  transform: translateX(-6px);
}

@media (max-width: 900px) {
  .philo-layout {
    grid-template-columns: 1fr;
  }

  .philo-media {
    position: static;
  }

  .philo-row {
    grid-template-columns: 60px 1fr;
  }
}

/* =============================== CLASSES ================================= */
.classes-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.class-tile {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.class-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.class-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  z-index: -2;
}

.class-tile:hover img {
  transform: scale(1.08);
}

.class-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(200deg, transparent 30%, rgba(20, 10, 20, .82));
}

.class-tile .tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
}

.class-tile .tile-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .03em;
  color: #F7ECD3;
  opacity: .9;
}

.class-tile h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-top: 4px;
}

.class-tile.tall {
  grid-row: span 2;
}

.class-tile.wide {
  grid-column: span 2;
}

/* Last child tall tile: don't span extra rows — keeps the bottom row balanced */
.classes-bento .class-tile.tall:last-child {
  grid-row: span 1;
  height: 100%;
}

@media (max-width: 980px) {
  .classes-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .class-tile.wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .classes-bento {
    grid-template-columns: 1fr;
  }

  .class-tile.wide,
  .class-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }
}

/* =============================== SCHEDULE ================================= */
.schedule-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.schedule-tabs {
  display: flex;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.schedule-tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  transition: background-color .25s ease, color .25s ease;
}

.schedule-tab.active {
  background: var(--primary-solid);
  color: #fff;
}

.schedule-list {
  display: flex;
  flex-direction: column;
}

.schedule-row {
  display: grid;
  grid-template-columns: 96px 1.6fr 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:hover {
  background: var(--bg-alt);
}

.sr-time {
  font-family: var(--font-display);
  font-size: 16px;
}

.sr-time small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.sr-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.sr-info span {
  font-size: 13px;
  color: var(--muted);
}

.sr-slots {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.slot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.slot-dot.low {
  background: var(--rose);
}

.hidden-row {
  display: none;
}

@media (max-width: 720px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .sr-slots {
    order: 3;
  }
}

/* ============================== PROGRAMS ================================= */
.programs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.program-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 44px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.programs-list .program-row:last-child {
  border-bottom: 1px solid var(--line);
}

.program-row .p-media {
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 6/5;
  box-shadow: var(--shadow-1);
  position: relative;
}

.program-row .p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-row .p-media .p-duration {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 10, 18, .66);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}

html[dir="rtl"] .program-row .p-media .p-duration {
  left: auto;
  right: 14px;
}

.program-row:nth-child(even) {
  grid-template-columns: 1fr 340px;
}

.program-row:nth-child(even) .p-media {
  order: 2;
}

.p-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
}

.p-content p {
  margin-top: 12px;
  color: var(--ink-soft);
  max-width: 54ch;
}

.p-content .p-foot {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 860px) {

  .program-row,
  .program-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .program-row:nth-child(even) .p-media {
    order: 0;
  }

  .program-row .p-media {
    aspect-ratio: 16/10;
  }
}

/* ============================= INSTRUCTORS ================================ */
.instructors-wrap {
  position: relative;
}

.instructor-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.instructor-track::-webkit-scrollbar {
  display: none;
}

.instructor-card {
  flex: none;
  width: 280px;
  scroll-snap-align: start;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

.instructor-card .i-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.instructor-card .i-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.instructor-card:hover .i-photo img {
  transform: scale(1.06);
}

.instructor-card .i-spec {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: #2B2233;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

html[dir="rtl"] .instructor-card .i-spec {
  left: auto;
  right: 12px;
}

.instructor-card .i-body {
  padding: 18px 20px 22px;
}

.instructor-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.instructor-card .i-exp {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.instructor-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.instructor-card .i-foot {
  margin-top: 16px;
}

.carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: -8px;
  margin-bottom: 8px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.carousel-btn:hover {
  background: var(--primary-solid);
  color: #fff;
  border-color: var(--primary-solid);
}

.carousel-btn svg {
  width: 17px;
  height: 17px;
}

/* ============================== MEMBERSHIP ================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.plan-card.popular {
  background: linear-gradient(165deg, var(--primary-solid-deep), var(--primary-solid));
  color: #fff;
  transform: translateY(-14px);
  box-shadow: var(--shadow-2);
  position: relative;
}

.plan-card.popular:hover {
  transform: translateY(-20px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #2B2233;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-1);
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.plan-card.popular .plan-name {
  color: rgba(255, 255, 255, .75);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.plan-card.popular .plan-price span {
  color: rgba(255, 255, 255, .7);
}

.plan-desc {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.plan-card.popular .plan-desc {
  color: rgba(255, 255, 255, .8);
}

.plan-features {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.8px;
}

.plan-features svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}

.plan-card.popular .plan-features svg {
  color: var(--gold);
}

.plan-card .btn {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================== WHY CHOOSE US ============================= */
.why-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-media {
  position: relative;
}

.why-media img {
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/4.6;
  object-fit: cover;
}

.why-media .badge-float {
  position: absolute;
  bottom: -26px;
  right: -26px;
  background: var(--gold);
  color: #2B2233;
  padding: 22px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
  text-align: center;
  width: 130px;
}

html[dir="rtl"] .why-media .badge-float {
  right: auto;
  left: -26px;
}

.why-media .badge-float b {
  font-family: var(--font-display);
  font-size: 30px;
  display: block;
}

.why-media .badge-float span {
  font-size: 11.5px;
  font-weight: 600;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item .ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease);
}

.why-item:hover .ic {
  transform: rotate(-8deg) scale(1.06);
}

.why-item .ic svg {
  width: 22px;
  height: 22px;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 600;
}

.why-item p {
  font-size: 13.6px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .why-wrap {
    grid-template-columns: 1fr;
  }

  .why-media {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .why-list {
    grid-template-columns: 1fr;
  }

  .why-media {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .why-media .badge-float {
    right: 16px;
    bottom: 16px;
    left: auto;
    width: 132px;
    padding: 16px;
  }
}

/* ============================== HOW IT WORKS =============================== */
.steps-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: left;
}

.step-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.step-item:hover .step-num {
  background: var(--primary-solid);
  color: #fff;
  border-color: var(--primary-solid);
}

.step-item h4 {
  margin-top: 18px;
  font-size: 16.5px;
  font-weight: 600;
}

.step-item p {
  margin-top: 8px;
  font-size: 13.8px;
  color: var(--ink-soft);
  max-width: 30ch;
}

@media (max-width: 860px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .steps-row::before {
    display: none;
  }
}

/* ============================== WORKSHOPS ================================= */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .3s var(--ease);
}

.event-row:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-1);
  transform: translateY(-3px);
}

.event-date {
  background: var(--dusk-blue-tint);
  color: var(--dusk-blue);
  border-radius: var(--radius-s);
  text-align: center;
  padding: 10px 4px;
  flex: none;
}

.event-date b {
  font-family: var(--font-display);
  font-size: 24px;
  display: block;
  line-height: 1;
}

.event-date span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

.event-body h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.event-body .e-meta {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  font-size: 12.8px;
  color: var(--muted);
  flex-wrap: wrap;
}

.event-body .e-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-body .e-meta svg {
  width: 13px;
  height: 13px;
}

.event-body p {
  margin-top: 8px;
  font-size: 13.8px;
  color: var(--ink-soft);
  max-width: 56ch;
}

@media (max-width: 700px) {
  .event-row {
    grid-template-columns: 70px 1fr;
  }

  .event-row .btn {
    grid-column: span 2;
    margin-top: 6px;
  }
}

/* ============================ DASHBOARD PROMO ============================== */
.dash-promo {
  background: linear-gradient(160deg, var(--primary-solid-deep), #2E1B33);
  border-radius: var(--radius-l);
  color: #F4ECF1;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.dash-promo::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 149, 47, .28), transparent 70%);
  top: -160px;
  right: -140px;
}

.dash-content {
  position: relative;
  z-index: 1;
}

.dash-content .eyebrow {
  color: var(--gold);
}

.dash-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 38px);
  margin-top: 12px;
  line-height: 1.15;
}

.dash-content p {
  margin-top: 14px;
  color: rgba(244, 236, 241, .78);
  max-width: 46ch;
}

.dash-feats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.dash-feats li {
  display: flex;
  gap: 10px;
  font-size: 13.6px;
  align-items: flex-start;
}

.dash-feats svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex: none;
  margin-top: 3px;
}

.dash-content .btn {
  margin-top: 28px;
}

.dash-mock {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-m);
  padding: 20px;
  backdrop-filter: blur(6px);
}

.dash-mock .mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dash-mock .mock-top b {
  font-size: 14px;
}

.dash-mock .mock-top span {
  font-size: 11px;
  color: var(--gold);
  background: rgba(198, 149, 47, .18);
  padding: 4px 10px;
  border-radius: 100px;
}

.mock-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mock-bar-row .dotc {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.mock-bar-row .label {
  font-size: 12.5px;
  flex: 1;
  color: rgba(244, 236, 241, .85);
}

.mock-bar {
  width: 90px;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.mock-bar i {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
}

@media (max-width: 900px) {
  .dash-promo {
    grid-template-columns: 1fr;
    padding: 40px 26px;
  }

  .dash-feats {
    grid-template-columns: 1fr;
  }
}

/* ============================== TESTIMONIALS ================================ */
.testi-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.testi-slide {
  display: none;
  animation: fadeUp .5s var(--ease);
}

.testi-slide.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
}

.testi-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
}

.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-person b {
  display: block;
  font-size: 14.5px;
}

.testi-person span {
  font-size: 12.5px;
  color: var(--muted);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background-color .25s ease, width .25s ease;
}

.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 100px;
}

/* ============================== NEWSLETTER ================================= */


.news-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-1);
}

.news-panel h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
}

.news-panel p {
  margin-top: 12px;
  color: var(--ink-soft);
  max-width: 44ch;
}

.news-form {
  display: flex;
  gap: 10px;
}

.news-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  outline: none;
  transition: border-color .25s ease;
}

.news-form input:focus {
  border-color: var(--primary);
}

.news-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.news-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.news-success.show {
  display: flex;
}

.news-success svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 860px) {
  .news-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .news-panel {
    padding: 28px 18px;
    gap: 22px;
  }

  .news-form {
    flex-wrap: wrap;
  }

  .news-form input {
    flex-basis: 100%;
    width: 100%;
  }

  .news-form .btn {
    width: 100%;
  }
}

/* ================================== FOOTER =================================== */
.site-footer {
  background: var(--primary-solid-deep);
  color: #EDE1E9;
  padding: 76px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(237, 225, 233, .14);
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(237, 225, 233, .68);
  font-size: 13.8px;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(237, 225, 233, .25);
  display: grid;
  place-items: center;
  transition: background-color .2s ease, border-color .2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #2B2233;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 13.8px;
  color: rgba(237, 225, 233, .75);
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

html[dir="rtl"] .footer-col a:hover {
  padding-left: 0;
  padding-right: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(237, 225, 233, .6);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(237, 225, 233, .6);
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================ BREADCRUMB / PAGE HERO ========================= */
.page-hero {
  padding: 60px 0 76px;
  position: relative;
  overflow: hidden;
  height:75vh;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb svg {
  width: 11px;
  height: 11px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.01em;
  max-width: 14ch;
}

.page-hero p {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 65ch;
  font-size: 17px;
}

/* Photographic or Dark Background Hero Support */
.page-hero.has-bg-img,
.page-hero[style*="background-image"],
.page-hero[style*="url("] {
  color: #FFFFFF;
}

.page-hero.has-bg-img .container,
.page-hero[style*="background-image"] .container,
.page-hero[style*="url("] .container {
  position: relative;
  z-index: 2;
}

.page-hero.has-bg-img .breadcrumb,
.page-hero[style*="background-image"] .breadcrumb,
.page-hero[style*="url("] .breadcrumb {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero.has-bg-img .breadcrumb a,
.page-hero[style*="background-image"] .breadcrumb a,
.page-hero[style*="url("] .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s ease;
}

.page-hero.has-bg-img .breadcrumb a:hover,
.page-hero[style*="background-image"] .breadcrumb a:hover,
.page-hero[style*="url("] .breadcrumb a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-hero.has-bg-img .breadcrumb span,
.page-hero[style*="background-image"] .breadcrumb span,
.page-hero[style*="url("] .breadcrumb span {
  color: #FFFFFF;
  font-weight: 500;
}

.page-hero.has-bg-img .breadcrumb svg,
.page-hero[style*="background-image"] .breadcrumb svg,
.page-hero[style*="url("] .breadcrumb svg {
  stroke: rgba(255, 255, 255, 0.75);
}

.page-hero.has-bg-img h1,
.page-hero[style*="background-image"] h1,
.page-hero[style*="url("] h1 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.page-hero.has-bg-img p,
.page-hero[style*="background-image"] p,
.page-hero[style*="url("] p {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.page-hero-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-tint), transparent 70%);
  z-index: -1;
}

html[dir="rtl"] .page-hero-deco {
  right: auto;
  left: -80px;
}

/* ============================ CONTACT INFO CARDS ============================ */
.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  padding: 30px 26px;
  border-radius: var(--radius-l);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-1);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.info-card:nth-child(1) {
  background: var(--primary-tint);
}

.info-card:nth-child(2) {
  background: var(--gold-tint);
}

.info-card:nth-child(3) {
  background: var(--dusk-blue-tint);
}

.info-card:nth-child(4) {
  background: var(--rose-tint);
}

.info-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
}

.info-card .ic svg {
  width: 21px;
  height: 21px;
}

.info-card h4 {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
}

.info-card p {
  margin-top: 8px;
  font-size: 13.8px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .contact-info-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .contact-info-strip {
    grid-template-columns: 1fr;
  }
}

/* ============================ CONTACT FORM ================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-aside h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.15;
}

.contact-aside p {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 42ch;
}

.aside-points {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aside-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.aside-points .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  flex: none;
  width: 26px;
}

.aside-points b {
  display: block;
  font-size: 14.5px;
}

.aside-points span {
  font-size: 13px;
  color: var(--muted);
}

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--line);
  background: var(--bg);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  font-size: 14.5px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-tint);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  width: 19px;
  height: 19px;
}

.field-error {
  font-size: 12px;
  color: var(--rose);
  display: none;
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: var(--rose);
}

.form-field.invalid .field-error {
  display: block;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 26px;
  }
}

/* ============================ LOCATION / HOURS ============================== */
.location-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.map-frame {
  position: relative;
  min-height: 420px;
  background: var(--bg-sunken);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
  display: block;
}

.map-pin-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-elevated);
  padding: 14px 18px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-2);
  display: flex;
  align-items: center;
  gap: 12px;
}

html[dir="rtl"] .map-pin-btn {
  left: auto;
  right: 20px;
}

.map-pin-btn .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-tint);
  display: grid;
  place-items: center;
  flex: none;
}

.map-pin-btn .ic svg {
  width: 18px;
  height: 18px;
  color: var(--rose);
}

.map-pin-btn b {
  font-size: 13.5px;
  display: block;
}

.map-pin-btn span {
  font-size: 11.5px;
  color: var(--muted);
}

.hours-panel {
  background: var(--primary-solid-deep);
  color: #F1E4EE;
  padding: 40px 36px;
}

.hours-panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
}

.hours-panel>p {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(241, 228, 238, .7);
}

.hours-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(241, 228, 238, .14);
  font-size: 14px;
}

.hours-row span:first-child {
  color: rgba(241, 228, 238, .8);
}

.hours-row.today {
  color: var(--gold);
  font-weight: 600;
}

.hours-row.today span:first-child {
  color: var(--gold);
}

.hours-panel .btn {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .location-wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================ SUPPORT GRID =================================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.support-card {
  padding: 32px 24px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: transform .35s var(--ease), border-color .3s ease, box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.support-card:hover::before {
  transform: scaleX(1);
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-1);
  border-color: transparent;
}

.support-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.support-card .ic svg {
  width: 22px;
  height: 22px;
}

.support-card h4 {
  margin-top: 18px;
  font-size: 15.5px;
  font-weight: 600;
}

.support-card p {
  margin-top: 8px;
  font-size: 13.4px;
  color: var(--ink-soft);
}

.support-card .s-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.support-card .s-link svg {
  width: 13px;
  height: 13px;
  transition: transform .25s ease;
}

.support-card:hover .s-link svg {
  transform: translateX(4px);
}

html[dir="rtl"] .support-card:hover .s-link svg {
  transform: translateX(-4px);
}

@media (max-width: 980px) {
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================== CTA BAND ===================================== */
.cta-band {
  background: linear-gradient(155deg, var(--primary-solid), var(--primary-solid-deep));
  border-radius: var(--radius-l);
  padding: 70px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(198, 149, 47, .25), transparent 55%);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  position: relative;
}

.cta-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  flex-wrap: wrap;
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.cta-band .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

@media (max-width: 700px) {
  .cta-band {
    padding: 48px 26px;
  }
}

/* =============================== AUTH PAGES =============================== */
.auth-page-hero {
  background: var(--bg-alt);
}

.auth-page-hero .page-hero-deco {
  background: radial-gradient(circle, var(--gold-tint), transparent 72%);
}

.auth-section {
  background: var(--bg-alt);
}

.auth-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.auth-intro {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 50px 40px;
  box-shadow: var(--shadow-1);
  transform: translateY(-10px);
}

.auth-intro h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.18;
  margin-top: 14px;
  color: var(--ink);
  max-width: 12ch;
}

.auth-intro p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 14px;
  max-width: 40ch;
}

.auth-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.auth-feature:last-child {
  border-bottom: 1px solid var(--line);
}

.auth-feature .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex: none;
}

.auth-feature .ic svg {
  width: 20px;
  height: 20px;
}

.auth-feature b {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.auth-feature span {
  display: block;
  font-size: 12.8px;
  color: var(--muted);
  margin-top: 4px;
}

.auth-card {
  max-width: 620px;
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  padding: 40px;
}

.form-card-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.14;
  margin-top: 10px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form .form-field.full-field {
  grid-column: 1 / -1;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-tint);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-row input {
  width: auto;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.text-link:hover {
  color: var(--gold);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  background: var(--line-strong);
  flex: 1;
}

.auth-divider span {
  white-space: nowrap;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.btn-social {
  justify-content: center;
  gap: 10px;
  border-color: var(--line-strong);
  min-width: 120px;
  padding: 12px 18px;
  font-size: 13px;
  border-radius: var(--radius-s);
}

.btn-social svg {
  width: 16px;
  height: 16px;
}

.social-icon {
  flex: none;
}

.btn-social:hover {
  background: var(--primary-tint);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.auth-switch {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.auth-switch a {
  font-weight: 700;
}

/**** Login/Reg auth override for two-column buttons ****/
.social-grid .btn-social {
  width: 100%;
}

/* =============================== 404 PAGE ================================ */
.error-page-hero {
  background: linear-gradient(150deg, var(--bg-alt), var(--bg));
}

.error-layout {
  min-height: 460px;
  display: grid;
  grid-template-columns: .95fr .95fr;
  align-items: center;
  gap: 44px;
}

.error-copy {
  max-width: 580px;
}

.error-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5.3vw, 74px);
  line-height: 1.04;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: -.015em;
}

.error-copy>p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 14px;
  max-width: 44ch;
  line-height: 1.65;
}

.error-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.error-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.error-links a:hover {
  color: var(--gold);
}

.error-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-card {
  width: min(420px, 86vw);
  min-height: 420px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-2);
  position: relative;
}

.error-card::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(88px, 8vw, 120px);
  color: var(--primary);
  line-height: .9;
}

.error-flower {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  margin-top: 24px;
}

.error-flower svg {
  width: 40px;
  height: 40px;
}

.error-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-top: 16px;
}

/* ========================== COMING SOON PAGE ============================= */
.comingsoon-hero {
  background: var(--bg-alt);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.comingsoon-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: center;
}

.comingsoon-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-top: 18px;
  max-width: 11ch;
}

.comingsoon-copy p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
  max-width: 46ch;
  margin-top: 16px;
}

.comingsoon-meta {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.comingsoon-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.comingsoon-meta b {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 26px;
  font-weight: 500;
}

.comingsoon-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-l);
  padding: 14px;
}

.comingsoon-card-inner {
  background: linear-gradient(160deg, var(--primary-solid-deep), var(--primary-solid));
  color: #fff;
  border-radius: var(--radius-m);
  padding: 40px 30px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comingsoon-card-inner .eyebrow {
  color: var(--gold);
  margin-top: 20px
}

.countdown {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.count-cell {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-s);
  width: 80px;
  padding: 12px 10px;
}

.count-num {
  font-family: var(--font-display);
  font-size: 34px;
  display: block;
  color: #fff;
}

.count-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.comingsoon-card-inner .newsletter-form-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.comingsoon-card-inner input {
  width: min(290px, 260px);
  padding: 14px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  outline: none;
}

.comingsoon-card-inner .btn-primary {
  border-radius: 100px;
}

.comingsoon-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.comingsoon-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background-color .2s ease, color .2s ease;
}

.comingsoon-social a:hover {
  background: var(--gold);
  color: var(--primary-solid-deep);
}

.comingsoon-social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {

  .auth-layout,
  .error-layout,
  .comingsoon-grid {
    grid-template-columns: 1fr;
  }

  .auth-intro {
    transform: none;
  }

  .comingsoon-card {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .auth-layout {
    gap: 24px;
  }

  .auth-intro {
    padding: 30px 22px;
  }

  .form-grid,
  .auth-form .form-grid {
    grid-template-columns: 1fr;
  }

  .error-card {
    border-radius: var(--radius-l);
    min-height: 320px;
  }

  .comingsoon-card-inner {
    padding: 30px 20px;
  }
}

/* =============================== UTIL =================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-solid);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

html[dir="rtl"] .back-to-top {
  right: auto;
  left: 28px;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* Responsive: hide desktop nav / show hamburger */
@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .header-actions .icon-btn.search-desktop-only,
  .header-actions .toggle-wrap,
  .header-actions .login-btn {
    display: none;
  }
}

@media (min-width: 1081px) {

  .mobile-nav,
  .overlay-scrim {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .plans-grid,
  .support-grid,
  .contact-info-strip {
    gap: 14px;
  }
}

/* ==========================================================================
   HOME 2 + INSTRUCTORS — additional components
   ========================================================================== */

/* ============================ HERO 2 (Split Slider) ======================= */
.hero2 {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  position: relative;
  z-index: 2;
}

.hero2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  width: fit-content;
}

.hero2-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero2-content h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  margin-top: 22px;
  letter-spacing: -.01em;
}

.hero2-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero2-content .lede {
  margin-top: 20px;
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 44ch;
}

.hero2-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero2-tags {
  display: flex;
  gap: 10px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero2-tag {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero2-slider {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.hero2-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s var(--ease);
}

.hero2-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero2-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.hero2-slide.active img {
  transform: scale(1);
}

.hero2-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(20, 10, 18, .05), rgba(20, 10, 18, .45));
  z-index: 1;
}

.hero2-caption {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}

.hero2-caption b {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.hero2-caption span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .8);
}

.hero2-dots {
  position: absolute;
  bottom: 26px;
  right: 26px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: background-color .25s ease, width .25s ease;
}

.hero2-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 100px;
}

@media (max-width:980px) {
  .hero2-grid {
    grid-template-columns: 1fr;
  }

  .hero2-slider {
    height: 320px;
    min-height: 0;
    order: -1;
  }

  .hero2-content {
    padding: 48px 26px;
  }
}

/* ============================== QUOTE SECTION ============================= */
.quote-section {
  background: linear-gradient(155deg, var(--primary-tint), var(--gold-tint));
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 70px;
  color: var(--gold);
  line-height: 1;
  opacity: .55;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(21px, 2.8vw, 32px);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-deep);
}

html.dark .quote-text {
  color: var(--ink);
}

.quote-attr {
  margin-top: 22px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--primary);
}

/* ============================== PRACTICE FINDER ============================ */
.finder-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.finder-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 16px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.finder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--primary);
}

.finder-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.finder-card .ic svg {
  width: 23px;
  height: 23px;
}

.finder-card h4 {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width:980px) {
  .finder-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:560px) {
  .finder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================== MIND BODY SOUL ============================= */
.mbs-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mbs-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: var(--radius-l);
  transition: transform .35s var(--ease);
}

.mbs-card:hover {
  transform: translateY(-8px);
}

.mbs-card:nth-child(1) {
  background: var(--primary-tint);
}

.mbs-card:nth-child(2) {
  background: var(--gold-tint);
}

.mbs-card:nth-child(3) {
  background: var(--rose-tint);
}

.mbs-ring {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
}

.mbs-ring svg {
  width: 38px;
  height: 38px;
}

.mbs-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
}

.mbs-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14.3px;
}

@media (max-width:900px) {
  .mbs-wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================ YOGA STYLES SPOTLIGHT ========================= */
.spotlight-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 4px 24px;
}

.spotlight-scroller {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.spotlight-scroller.is-dragging {
  cursor: grabbing;
}

.spotlight-card {
  flex: 0 0 310px;
  width: 310px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

@media (max-width: 480px) {
  .spotlight-card {
    flex: 0 0 min(290px, 82vw);
    width: min(290px, 82vw);
  }
}

.spotlight-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--line-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}

.spotlight-dot:hover {
  background: var(--muted);
}

.spotlight-dot.active {
  width: 28px;
  background: var(--primary-solid);
}

.spotlight-card .sp-img {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.spotlight-card .sp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.spotlight-card:hover .sp-img img {
  transform: scale(1.07);
}

.spotlight-card .sp-level {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20, 10, 18, .7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.spotlight-card .sp-body {
  padding: 20px 22px 24px;
}

.spotlight-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.spotlight-card p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.spotlight-meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 12.3px;
  color: var(--muted);
}

.spotlight-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.spotlight-meta svg {
  width: 13px;
  height: 13px;
}

.spotlight-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* ============================ WEEKLY STUDIO CALENDAR ========================= */
.cal-tabs {
  display: flex;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  overflow-x: auto;
}

.cal-tab {
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: background-color .25s ease, color .25s ease;
  white-space: nowrap;
}

.cal-tab.active {
  background: var(--primary-solid);
  color: #fff;
}

.cal-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease;
}

.cal-row:last-child {
  border-bottom: none;
}

.cal-row:hover {
  background: var(--bg-alt);
}

.cal-hidden {
  display: none;
}

.cal-class h4 {
  font-size: 15.2px;
  font-weight: 600;
}

.cal-class span {
  font-size: 12.5px;
  color: var(--muted);
}

.cal-time {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}

@media (max-width:700px) {
  .cal-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }
}

/* ============================ FEATURED INSTRUCTOR SPOTLIGHT ================== */
.feat-instructor {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.feat-instructor .fi-img {
  position: relative;
  min-height: 440px;
}

.feat-instructor .fi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-instructor .fi-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: #2B2233;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.feat-instructor .fi-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-instructor .fi-body .eyebrow {
  display: block;
}

.feat-instructor h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
}

.feat-instructor .fi-spec {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
}

.feat-instructor p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.feat-instructor .fi-quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  font-size: 15.5px;
}

.feat-instructor .btn {
  margin-top: 24px;
  align-self: flex-start;
}

@media (max-width:900px) {
  .feat-instructor {
    grid-template-columns: 1fr;
  }

  .feat-instructor .fi-img {
    min-height: 300px;
  }

  .feat-instructor .fi-body {
    padding: 32px 26px;
  }
}

/* ============================ STUDIO EXPERIENCE GALLERY ======================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item .g-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(20, 10, 18, .78), transparent);
  color: #fff;
  font-size: 12.8px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover .g-label {
  opacity: 1;
}

@media (max-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.big {
    grid-column: span 2;
  }
}

@media (max-width:560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.big {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }
}

/* ============================ WELLNESS JOURNEYS ============================= */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.journey-card {
  padding: 32px 26px;
  border-radius: var(--radius-l);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.journey-card .jc-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
}

.journey-card h4 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
}

.journey-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13.6px;
  flex: 1;
}

.journey-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journey-card li {
  display: flex;
  gap: 8px;
  font-size: 12.6px;
  color: var(--ink-soft);
  align-items: flex-start;
}

.journey-card li svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}

.journey-card .btn {
  margin-top: 20px;
}

@media (max-width:980px) {
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ WELLNESS STATISTICS =========================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-l);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-1);
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}

.stat-box span {
  display: block;
  margin-top: 8px;
  font-size: 13.3px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width:900px) {
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================ PREMIUM CREDENTIALS SECTION =================== */
.credentials-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(198, 149, 47, 0.08) 0%, transparent 60%), var(--bg);
}

.cred-intro {
  max-width: 64ch;
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cred-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 38px 24px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 18px -4px rgba(42, 26, 41, 0.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
  overflow: hidden;
}

.cred-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}

.cred-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px -8px rgba(42, 26, 41, 0.12), 0 0 0 1px rgba(198, 149, 47, 0.25);
  border-color: rgba(198, 149, 47, 0.4);
}

.cred-card:hover::before {
  opacity: 1;
}

.cred-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px -2px rgba(123, 71, 104, 0.18);
  transition: transform .35s var(--ease), background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.cred-card:hover .cred-icon-wrap {
  transform: scale(1.1) rotate(6deg);
  background: var(--gold-tint);
  color: var(--gold);
  box-shadow: 0 6px 16px -2px rgba(198, 149, 47, 0.25);
}

.cred-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.cred-num-wrap {
  margin-bottom: 8px;
  line-height: 1;
}

.cred-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 3.2vw, 56px);
  font-weight: 500;
  color: var(--primary-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
}

.cred-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 8px;
}

.cred-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cred-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.cred-card:hover .cred-tag {
  background: var(--primary-tint);
  color: var(--primary);
  border-color: transparent;
}

@media (max-width: 980px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cred-card {
    padding: 28px 20px 24px;
  }
}

/* ============================ MEMBER SUCCESS STORIES ========================= */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.story-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-head img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.story-head b {
  display: block;
  font-size: 14.5px;
}

.story-head span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.story-card p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width:980px) {
  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================= FAQ ACCORDION ============================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.faq-q svg {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform .3s var(--ease);
  color: var(--primary);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-a p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ============================ INSTRUCTORS TOOLBAR (search/filter) ============= */
.instr-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 18px 22px;
  box-shadow: var(--shadow-1);
}

.instr-search {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 12px 18px;
}

.instr-search svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex: none;
}

.instr-search input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
}

.instr-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.instr-filters select {
  padding: 11px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-size: 13.3px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.instr-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
  font-size: 14.5px;
  display: none;
}

.instr-empty.show {
  display: block;
}

@media (max-width:700px) {
  .instr-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================ INSTRUCTORS GRID (static) ====================== */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.instructors-grid .instructor-card {
  width: auto;
}

.instructor-card.filtered-out {
  display: none;
}

@media (max-width:980px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .instructors-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ SPECIALIZATIONS GRID =========================== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.spec-card {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--radius-m);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-1);
  border-color: var(--primary);
}

.spec-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.spec-card .ic svg {
  width: 20px;
  height: 20px;
}

.spec-card h4 {
  margin-top: 12px;
  font-size: 13.3px;
  font-weight: 600;
}

@media (max-width:980px) {
  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:560px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================ GOAL FINDER (instructors) ====================== */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.goal-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.goal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.goal-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.goal-card .ic svg {
  width: 20px;
  height: 20px;
}

.goal-card h4 {
  margin-top: 14px;
  font-size: 15.3px;
  font-weight: 600;
}

.goal-card p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}

.goal-card .goal-rec {
  margin-top: 12px;
  font-size: 12.6px;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.goal-card .goal-rec svg {
  width: 14px;
  height: 14px;
}

@media (max-width:900px) {
  .goal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .goal-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ INSTRUCTOR AVAILABILITY ======================== */
.avail-wrap {
  overflow-x: auto;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1);
}

.avail-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  min-width: 640px;
}

.avail-table th,
.avail-table td {
  padding: 16px 22px;
  text-align: left;
  font-size: 13.8px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.avail-table th {
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 11.8px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--muted);
}

.avail-table tr:last-child td {
  border-bottom: none;
}

.avail-table tbody tr {
  transition: background-color .2s ease;
}

.avail-table tbody tr:hover td {
  background: var(--bg-alt);
}

.avail-table td:first-child {
  font-weight: 600;
}

/* =========================== MEMBER REVIEWS (instructors) ==================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* =========================== MEMBER REVIEWS INFINITE SLIDER ==================== */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 4px 24px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.reviews-track.is-dragging {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 380px;
  width: 380px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 26px 24px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(198, 149, 47, 0.35);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.review-stars svg {
  width: 15px;
  height: 15px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.08);
  padding: 3px 9px;
  border-radius: 100px;
}

.review-badge svg {
  width: 12px;
  height: 12px;
}

.review-quote-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-tint);
}

.review-person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-person-info b {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.review-for-pill {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--line-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}

.reviews-dot:hover {
  background: var(--muted);
}

.reviews-dot.active {
  width: 28px;
  background: var(--primary-solid);
}

@media (max-width: 540px) {
  .review-card {
    flex: 0 0 min(310px, 86vw);
    width: min(310px, 86vw);
    padding: 24px 20px;
  }
}

/* ==========================================================================
   HOME 2 — small fixes
   ========================================================================== */
.cal-list {
  display: flex;
  flex-direction: column;
}

.dropdown a.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-tint);
}

.mobile-nav .m-submenu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   BLOG — listing page
   ========================================================================== */

/* Featured post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.blog-featured .bf-img {
  position: relative;
  min-height: 340px;
}

.blog-featured .bf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured .bf-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: #2B2233;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.blog-featured .bf-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured .bf-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.8px;
  color: var(--muted);
  flex-wrap: wrap;
}

.blog-featured .bf-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-featured .bf-meta svg {
  width: 14px;
  height: 14px;
}

.blog-featured h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
}

.blog-featured p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
}

.blog-featured .btn {
  margin-top: 22px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured .bf-img {
    min-height: 260px;
  }

  .blog-featured .bf-body {
    padding: 32px 26px;
  }
}

/* Category filter pills */
.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0 36px;
}

.blog-cat-pill {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.blog-cat-pill.active,
.blog-cat-pill:hover {
  background: var(--primary-solid);
  color: #fff;
  border-color: var(--primary-solid);
}

/* Layout: posts + sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.blog-card.filtered-out {
  display: none;
}

.blog-card .bc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.blog-card:hover .bc-img img {
  transform: scale(1.07);
}

.blog-card .bc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 10, 18, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.blog-card .bc-body {
  padding: 22px 24px 26px;
}

.blog-card .bc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.blog-card .bc-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card .bc-meta svg {
  width: 12.5px;
  height: 12.5px;
}

.blog-card h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.28;
}

.blog-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13.6px;
  line-height: 1.6;
}

.blog-card .bc-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.blog-card .bc-link svg {
  width: 13px;
  height: 13px;
  transition: transform .25s ease;
}

.blog-card:hover .bc-link svg {
  transform: translateX(4px);
}

html[dir="rtl"] .blog-card:hover .bc-link svg {
  transform: translateX(-4px);
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 14.5px;
  display: none;
  grid-column: 1 / -1;
}

.blog-empty.show {
  display: block;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
}

.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: background-color .25s ease, color .25s ease;
}

.page-btn.active {
  background: var(--primary-solid);
  color: #fff;
  border-color: var(--primary-solid);
}

.page-btn:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.page-btn.page-arrow svg {
  width: 15px;
  height: 15px;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h) + 20px);
}

.sidebar-widget {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

.sidebar-widget h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
}

.sidebar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 12px 16px;
  margin-top: 14px;
}

.sidebar-search svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex: none;
}

.sidebar-search input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 13.6px;
}

.sidebar-cats {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-cats button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 11px 4px;
  font-size: 13.8px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: color .2s ease;
}

.sidebar-cats button:last-child {
  border-bottom: none;
}

.sidebar-cats button:hover,
.sidebar-cats button.active {
  color: var(--primary);
}

.sidebar-cats button span {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-alt);
  border-radius: 100px;
  padding: 2px 9px;
}

.sidebar-popular {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pop-post {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  text-decoration: none;
  color: inherit;
}

.pop-post img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-s);
  object-fit: cover;
  flex: none;
  display: block;
}

.pop-post > div {
  flex: 1;
  min-width: 0;
}

.pop-post h5 {
  font-size: 13.4px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 6px;
}

.pop-post span {
  display: block;
  margin-top: 5px;
  font-size: 11.6px;
  color: var(--muted);
}

.sidebar-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 12.3px;
  color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.tag-pill:hover {
  background: var(--primary-solid);
  border-color: var(--primary-solid);
  color: #fff;
}

.sidebar-cta {
  background: linear-gradient(160deg, var(--primary-solid-deep), var(--primary-solid));
  color: #fff;
  text-align: center;
}

.sidebar-cta h4 {
  color: #fff;
}

.sidebar-cta p {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}

.sidebar-cta .btn {
  margin-top: 18px;
  width: 100%;
}

.sidebar-cta .btn-gold {
  color: #2B2233;
}

@media (max-width: 1080px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-sidebar .sidebar-widget {
    flex: 1;
    min-width: 260px;
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    flex-direction: column;
  }
}

/* ======================== HOME 2 — EMBODIED EDITORIAL ======================== */
.home2-page {
  --h2-light: oklch(98% .018 78);
  --h2-dark: oklch(20% .035 330)
}

.home2-page .container {
  padding-left: 24px;
  padding-right: 24px;
  margin-inline: auto
}

.home2-page .site-header {
  z-index: 40
}

.home2-page .header-inner {
  min-height: var(--header-h)
}

.h2-hero {
  min-height: calc(100vh - var(--announce-h));
  height: 78vh;
  max-height: 900px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden
}

.h2-hero-image,
.h2-retreat>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.h2-hero-image {
  object-position: center 35%;
  animation: h2zoom 16s ease-out both
}

.h2-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 14, 25, .82) 0%, rgba(25, 14, 25, .42) 55%, rgba(25, 14, 25, .12) 100%), linear-gradient(0deg, rgba(20, 10, 18, .46), transparent 45%)
}

.h2-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 82px
}

.h2-hero-copy {
  max-width: 780px
}

.h2-kicker {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #f0d49b;
  margin-bottom: 20px
}

.h2-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .9;
  letter-spacing: 0
}

.h2-hero h1 em {
  font-weight: 300;
  color: #f1dcae
}

.h2-hero-copy>p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 600px;
  color: rgba(255, 255, 255, .82);
  margin-top: 28px
}

.h2-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px
}

.h2-text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px
}

.h2-text-link:hover span {
  transform: translate(3px, -3px)
}

.h2-text-link span {
  transition: transform .2s ease
}

.h2-today {
  width: 270px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  padding-top: 18px;
  margin-bottom: 4px
}

.h2-today-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #f0d49b;
  margin-bottom: 16px
}

.h2-today strong {
  font: 500 25px/1.15 var(--font-display)
}

.h2-today p {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  margin-top: 6px
}

.h2-today>div {
  display: flex;
  gap: 10px;
  margin-top: 16px
}

.h2-today>div span {
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 10px
}

.h2-today>a {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600
}

.h2-scroll-cue {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 10px
}

.h2-scroll-cue span {
  height: 46px;
  width: 1px;
  background: rgba(255, 255, 255, .5)
}

.h2-section-intro {
  max-width: 720px
}

.h2-section-intro h2 {
  font: 400 clamp(40px, 5vw, 67px)/1.04 var(--font-display);
  margin-top: 13px
}

.h2-section-intro>p {
  max-width: 590px;
  color: var(--ink-soft);
  margin-top: 19px;
  margin-bottom: 20px;
}

.h2-finder {
  background: var(--bg)
}

.h2-filter-tabs {
  display: flex;
  gap: 10px;
  margin: 44px 0 22px;
  overflow: auto;
  padding-bottom: 3px
}

.h2-filter {
  border: 1px solid var(--line-strong);
  padding: 11px 23px;
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap
}

.h2-filter.active {
  background: var(--primary-solid-deep);
  border-color: var(--primary-solid-deep);
  color: #fff
}

.h2-practice-result {
  display: grid;
  grid-template-columns: 60px 1fr .85fr;
  gap: 34px;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1)
}

.h2-result-number {
  align-self: start;
  font: italic 24px var(--font-display);
  color: var(--gold)
}

.h2-result-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary)
}

.h2-practice-result h3 {
  font: 500 34px var(--font-display);
  margin-top: 7px
}

.h2-practice-result p {
  color: var(--ink-soft);
  margin-top: 11px;
  max-width: 55ch
}

.h2-practice-result ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0
}

.h2-practice-result li {
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 100px
}

.h2-result-visual {
  height: 300px;
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden
}

.h2-result-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.h2-result-visual span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(25, 14, 25, .78);
  color: #fff;
  border-radius: 100px;
  padding: 7px 13px;
  font-size: 11px
}

.h2-ritual {
  background: var(--primary-solid-deep);
  color: #f8eff4
}

.h2-ritual .eyebrow {
  color: #e4b655
}

.h2-ritual-line {
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.h2-ritual-line article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 36px 35px 10px 0;
  border-right: 1px solid rgba(255, 255, 255, .18)
}

.h2-ritual-line article+article {
  padding-left: 35px
}

.h2-ritual-line article:last-child {
  border: 0
}

.h2-ritual-line>article>span {
  font: italic 16px var(--font-display);
  color: #e4b655
}

.h2-ritual-line small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255, 255, 255, .52)
}

.h2-ritual-line h3 {
  font: 400 25px var(--font-display);
  margin-top: 8px
}

.h2-ritual-line p {
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
  margin-top: 10px
}

.h2-wellness {
  background: var(--bg-alt)
}

.h2-wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.h2-wellness-photo {
  height: 650px;
  position: relative
}

.h2-wellness-photo:before {
  content: "";
  position: absolute;
  inset: -14px 20px 18px -14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-l)
}

.h2-wellness-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-l)
}

.h2-photo-note {
  position: absolute;
  bottom: 24px;
  right: -22px;
  background: var(--bg-elevated);
  padding: 14px 19px;
  box-shadow: var(--shadow-2);
  font-size: 12px;
  border-radius: var(--radius-s)
}

.h2-photo-note span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px
}

.h2-wellness-copy h2 {
  font: 400 clamp(40px, 5vw, 64px)/1.05 var(--font-display);
  margin-top: 13px
}

.h2-wellness-copy>p {
  color: var(--ink-soft);
  margin-top: 22px
}

.h2-service-list {
  margin-top: 34px;
  border-top: 1px solid var(--line)
}

.h2-service-list a {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line)
}

.h2-service-list a>span {
  font: italic 13px var(--font-display);
  color: var(--gold)
}

.h2-service-list strong {
  display: block;
  font: 500 19px var(--font-display)
}

.h2-service-list small {
  color: var(--muted);
  font-size: 11px
}

.h2-service-list b {
  font-weight: 400;
  transition: transform .2s ease
}

.h2-service-list a:hover b {
  transform: translate(3px, -3px)
}

.h2-retreat {
  height: 670px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  overflow: hidden
}

.h2-retreat-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 13, 22, .76), rgba(24, 13, 22, .1))
}

.h2-retreat-content {
  position: relative;
  z-index: 1
}

.h2-retreat .eyebrow {
  color: #f0d49b
}

.h2-retreat h2 {
  font: 400 clamp(48px, 6vw, 78px)/1 var(--font-display);
  margin-top: 14px
}

.h2-retreat p {
  max-width: 520px;
  color: rgba(255, 255, 255, .76);
  margin-top: 22px
}

.h2-retreat-content>div {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px
}

.h2-retreat-content>div>span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em
}

.h2-faq {
  background: var(--bg)
}

.h2-faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px
}

.h2-faq .h2-text-link {
  margin-top: 28px;
  color: var(--primary)
}

.h2-accordion {
  border-top: 1px solid var(--line-strong)
}

.h2-faq-item {
  border-bottom: 1px solid var(--line-strong)
}

.h2-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 0;
  font: 500 18px var(--font-display)
}

.h2-faq-item button b {
  color: var(--primary);
  font: 400 22px var(--font-body)
}

.h2-faq-item>div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease)
}

.h2-faq-item>div p {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 13px;
  max-width: 62ch
}

.h2-faq-item.open>div {
  grid-template-rows: 1fr
}

.h2-faq-item.open>div p {
  padding-bottom: 24px
}

.h2-closing {
  padding: 110px 0 0;
  background: var(--primary-solid-deep);
  color: #fff;
  text-align: center
}

.h2-closing .h2-kicker {
  color: #f0d49b
}

.h2-closing h2 {
  font: 400 clamp(48px, 7vw, 82px)/1 var(--font-display)
}

.h2-closing .btn {
  margin-top: 34px
}

.home2-page .footer-brand .logo {
  color: #fff
}

.home2-page .footer-brand .sub {
  color: rgba(255, 255, 255, .55)
}

@keyframes h2zoom {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1)
  }
}

@media(max-width:1050px) {
  .home2-page .primary-nav {
    display: none
  }

  .home2-page .hamburger {
    display: block
  }

  .h2-hero {
    height: 720px
  }

  .h2-today {
    display: none
  }

  .h2-practice-result {
    grid-template-columns: 45px 1fr
  }

  .h2-result-visual {
    grid-column: 1/-1;
    height: 280px
  }

  .h2-wellness-grid {
    gap: 55px
  }

  .h2-wellness-photo {
    height: 540px
  }

  .h2-faq-grid {
    gap: 55px
  }
}

@media(max-width:760px) {
  .home2-page .container {
    padding-left: 16px;
    padding-right: 16px
  }

  .home2-page .login-btn,
  .home2-page #darkToggle,
  .home2-page #rtlToggle {
    display: none
  }

  .h2-hero {
    height: 660px;
    min-height: calc(100svh - var(--announce-h))
  }

  .h2-hero-inner {
    padding-bottom: 54px
  }

  .h2-hero h1 {
    font-size: 55px
  }

  .h2-hero-copy>p {
    font-size: 14px
  }

  .h2-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px
  }

  .h2-scroll-cue {
    display: none
  }

  .h2-section-intro h2 {
    font-size: 42px
  }

  .h2-practice-result {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 18px
  }

  .h2-result-number {
    display: none
  }

  .h2-result-visual {
    grid-column: auto;
    height: 220px
  }

  .h2-ritual-line {
    grid-template-columns: 1fr
  }

  .h2-ritual-line article,
  .h2-ritual-line article+article {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
  }

  .h2-wellness-grid,
  .h2-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .h2-wellness-photo {
    height: 430px
  }

  .h2-photo-note {
    right: 10px
  }

  .h2-retreat {
    height: 620px
  }

  .h2-retreat h2 {
    font-size: 48px
  }

  .h2-retreat-content>div {
    align-items: flex-start;
    flex-direction: column
  }

  .h2-closing {
    padding: 80px 0
  }

  .h2-closing h2 {
    font-size: 48px
  }

  .home2-page .pad {
    padding: 72px 0
  }
}

@media(max-width:420px) {
  .h2-hero h1 {
    font-size: 47px
  }

  .h2-filter-tabs {
    margin-top: 32px
  }

  .h2-wellness-photo {
    height: 360px
  }

  .h2-practice-result h3 {
    font-size: 29px
  }
}

/* ==========================================================================
   ALL CLASSES PAGE — additional components
   ========================================================================== */

/* Toolbar wrapper spacing */
.class-result-count {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  padding-left: 4px;
}

html[dir="rtl"] .class-result-count {
  padding-left: 0;
  padding-right: 4px;
}

/* Full class listing grid */
.yclass-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-content: start;
  align-items: start;
}

.yclass-grid .yclass-card:last-child {
  transform: translateY(-30px);
}

.yclass-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.yclass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.yclass-card.filtered-out {
  display: none;
}

.yclass-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.yclass-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.yclass-card:hover .yclass-img img {
  transform: scale(1.07);
}

.yclass-level {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 10, 18, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: capitalize;
}

html[dir="rtl"] .yclass-level {
  left: auto;
  right: 14px;
}

.yclass-spots {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #2B2233;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

html[dir="rtl"] .yclass-spots {
  right: auto;
  left: 14px;
}

.yclass-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.yclass-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--primary);
  text-transform: uppercase;
}

.yclass-body h3 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
}

.yclass-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 12.3px;
  color: var(--muted);
}

.yclass-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.yclass-meta svg {
  width: 13px;
  height: 13px;
}

.yclass-body p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13.6px;
  flex: 1;
}

.yclass-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.yclass-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
}

.yclass-price span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

.class-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 14.5px;
  display: none;
  grid-column: 1 / -1;
}

.class-empty.show {
  display: block;
}

@media (max-width: 980px) {
  .yclass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .yclass-grid {
    grid-template-columns: 1fr;
  }
}

/* Weekly schedule row layout (used with .cal-tabs / .cal-list / .cal-row) */
.cal-row.class-row {
  grid-template-columns: 1.6fr 1fr auto;
}

.cal-row .cal-level-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--primary-tint);
  color: var(--primary);
  text-transform: capitalize;
  margin-left: 8px;
}

html[dir="rtl"] .cal-row .cal-level-pill {
  margin-left: 0;
  margin-right: 8px;
}

@media (max-width: 700px) {
  .cal-row.class-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BLOG DETAILS — single post page
   ========================================================================== */
.post-cat-tag {
  display: inline-flex;
  background: var(--gold);
  color: #2B2233;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

#post-article {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(18px, 3vw, 42px);
  box-shadow: var(--shadow-1);
}

#post-article .post-cover {
  background: var(--bg-alt);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 52px;
}

#post-article .post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}

.post-meta-row .post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.post-meta-row .post-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.post-meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta-row svg {
  width: 14px;
  height: 14px;
}

.post-cover {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 52px;
}

.post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.post-content {
  max-width: 74ch;
  margin: 0 auto;
  color: var(--ink);
  background: transparent;
}

.post-content>*+* {
  margin-top: 22px;
}

.post-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(23px, 3vw, 29px);
  line-height: 1.28;
  margin-top: 42px;
  color: var(--ink);
}

.post-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin-top: 32px;
  color: var(--ink);
}

.post-content p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.post-content ul,
.post-content ol {
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

html[dir="rtl"] .post-content ul,
html[dir="rtl"] .post-content ol {
  padding-left: 0;
  padding-right: 22px;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content li::marker {
  color: var(--gold);
  font-weight: 700;
}

.post-content figure {
  margin: 0;
}

.post-content figure img {
  border-radius: var(--radius-m);
  width: 100%;
  box-shadow: var(--shadow-1);
}

.post-content figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

.post-content blockquote {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}

html[dir="rtl"] .post-content blockquote {
  border-left: 0;
  border-right: 3px solid var(--gold);
  padding: 4px 24px 4px 0;
}

.post-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-tags-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 74ch;
  margin-inline: auto;
}

.post-tags-row b {
  font-size: 13.5px;
  color: var(--ink-soft);
  flex: none;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  max-width: 74ch;
  margin-inline: auto;
}

.post-share>span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  flex: none;
}

.share-btn:hover {
  background: var(--primary-solid);
  border-color: var(--primary-solid);
  color: #fff;
}

.share-btn.copied {
  background: var(--gold);
  border-color: var(--gold);
  color: #2B2233;
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

.author-box {
  display: flex;
  gap: 22px;
  margin-top: 48px;
  padding: 30px;
  max-width: 74ch;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1);
  align-items: flex-start;
  margin-inline: auto;
}

.author-box img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.author-box h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}

.author-box .author-role {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

.author-box p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13.8px;
  line-height: 1.6;
}

.author-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.author-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease;
}

.author-social a:hover {
  background: var(--primary-solid);
  color: #fff;
}

.author-social svg {
  width: 14px;
  height: 14px;
}

.post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
  max-width: 960px;
  margin-inline: auto;
  align-items: stretch;
}

.post-nav a {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  gap: 8px;
  transition: border-color .25s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}

.post-nav a:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}

.post-nav .nav-dir {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-nav .nav-dir svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.post-nav .nav-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.post-nav .next-link {
  text-align: right;
  align-items: flex-end;
}

.post-nav .next-link .nav-dir {
  flex-direction: row-reverse;
}

.comments-section {
  margin-top: 52px;
  max-width: 74ch;
  margin-inline: auto;
}

.comments-count {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}

.comment-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.comment-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-head b {
  font-size: 14.5px;
  color: var(--ink);
}

.comment-head span {
  font-size: 12px;
  color: var(--muted);
}

.comment-item p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.comment-reply-btn {
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.comment-item.is-reply {
  margin-left: 64px;
}

html[dir="rtl"] .comment-item.is-reply {
  margin-left: 0;
  margin-right: 64px;
}

.comment-form {
  margin-top: 38px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
  box-shadow: var(--shadow-1);
}

.comment-form h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
}

.comment-form .hint {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.comment-form form {
  margin-top: 22px;
}

/* Related posts */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 980px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav .next-link {
    text-align: left;
    align-items: flex-start;
  }

  .post-nav .next-link .nav-dir {
    flex-direction: row;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .comment-item.is-reply {
    margin-left: 20px;
  }

  html[dir="rtl"] .comment-item.is-reply {
    margin-right: 20px;
  }
}

/* ==========================================================================
   CLASS STYLES PAGE (class-style.html)
   ========================================================================== */

/* --- Quick Style Quiz Banner --- */
.cs-quiz-bar {
  padding: 75px 0 0;
  background: var(--bg-alt);
}

.cs-quiz-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-1);
}

.cs-quiz-content {
  flex: 1 1 420px;
}

.cs-quiz-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
  margin: 10px 0 8px;
  line-height: 1.25;
}

.cs-quiz-content p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.55;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
}

.cs-pill svg {
  width: 14px;
  height: 14px;
}

.cs-pill-sm {
  font-size: 11.5px;
  padding: 3px 9px;
}

.cs-quiz-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cs-quiz-selects {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-quiz-selects select {
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.cs-quiz-selects select:focus {
  border-color: var(--primary);
}

.cs-quiz-result {
  margin-top: 14px;
  background: var(--primary-tint);
  border: 1px solid var(--primary);
  border-radius: var(--radius-s);
  padding: 14px 20px;
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* --- Interactive Filter Bar --- */
.cs-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cs-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-filter-btn {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.cs-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cs-filter-btn.active {
  background: var(--primary-solid);
  border-color: var(--primary-solid);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(123, 71, 104, 0.25);
}

.cs-search-input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 18px;
  width: 100%;
  max-width: 310px;
}

.cs-search-input-box svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

.cs-search-input-box input {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  outline: none;
  width: 100%;
}

/* --- Style Cards Grid --- */
.cs-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.cs-style-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.cs-style-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-strong);
}

.cs-card-header {
  padding: 26px 26px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, var(--bg-sunken), var(--bg-elevated));
}

.cs-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cs-badge {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
}

.cs-badge-flow {
  background: var(--gold-tint);
  color: #8F661A;
}

.cs-badge-calm {
  background: var(--dusk-blue-tint);
  color: var(--dusk-blue);
}

.cs-badge-ground {
  background: var(--primary-tint);
  color: var(--primary);
}

.cs-badge-fire {
  background: var(--rose-tint);
  color: var(--rose);
}

.cs-badge-mind {
  background: #E8F4EE;
  color: #2B6E4A;
}

.cs-climate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.cs-climate svg {
  width: 13px;
  height: 13px;
}

.cs-title {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--ink);
  margin: 0 0 4px;
}

.cs-sanskrit {
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-soft);
  display: block;
}

.cs-card-body {
  padding: 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* Intensity / Pace meters */
.cs-meter-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-s);
}

.cs-meter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cs-meter-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.cs-meter-bar {
  height: 6px;
  background: var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}

.cs-meter-bar span {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
}

.cs-meter-val {
  font-size: 11.5px;
  color: var(--ink);
  font-weight: 500;
}

/* Tag Pills */
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.cs-tags span {
  font-size: 11.5px;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  border-radius: 6px;
}

/* Details list */
.cs-details-list {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cs-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cs-detail svg {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--primary);
  flex-shrink: 0;
}

.cs-detail strong {
  color: var(--ink);
  font-weight: 600;
}

.cs-card-footer {
  padding: 18px 26px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

/* --- Comparison Matrix Section --- */
.cs-table-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.cs-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cs-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.cs-compare-table th {
  background: var(--bg-sunken);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}

.cs-compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: middle;
}

.cs-compare-table tr:last-child td {
  border-bottom: none;
}

.cs-compare-table tr:hover td {
  background: var(--bg-alt);
}

.cs-compare-table td strong {
  color: var(--ink);
  font-size: 14px;
}

/* --- Studio Etiquette Grid (Enhanced Premium Design) --- */
.cs-etiquette-section {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  padding: 84px 0;
}

.cs-etiquette-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 90, 130, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cs-etiquette-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 90, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cs-etiquette-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .cs-etiquette-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cs-etiquette-grid {
    grid-template-columns: 1fr;
  }
}

.cs-etiquette-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 30px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cs-etiquette-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cs-etiquette-card:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 90, 130, 0.32);
  box-shadow: 0 16px 36px rgba(45, 20, 35, 0.08);
}

.cs-etiquette-card:hover::before {
  opacity: 1;
}

.cs-etiquette-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cs-etiquette-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-tint) 0%, rgba(200, 155, 90, 0.12) 100%);
  border: 1px solid rgba(162, 90, 130, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(162, 90, 130, 0.08);
  margin-bottom: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cs-etiquette-card:hover .cs-etiquette-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #ffffff;
}

.cs-etiquette-icon svg {
  width: 24px;
  height: 24px;
}

.cs-etiquette-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}

.cs-etiquette-card:hover .cs-etiquette-num {
  opacity: 0.7;
}

.cs-etiquette-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
}

.cs-etiquette-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.cs-etiquette-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 22px;
  flex: 1;
}

.cs-etiquette-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-deep);
  background: var(--primary-tint);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  width: fit-content;
  border: 1px solid rgba(162, 90, 130, 0.12);
}

.cs-etiquette-highlight svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
  flex-shrink: 0;
}

/* --- Full Studio CTA Banner --- */
.cs-cta-box {
  background: linear-gradient(135deg, var(--primary-solid-deep) 0%, var(--primary-solid) 100%);
  border-radius: var(--radius-l);
  padding: 60px 48px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-2);
}

.cs-cta-text {
  flex: 1 1 500px;
}

.cs-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  color: #ffffff;
  margin: 12px 0 10px;
  line-height: 1.2;
}

.cs-cta-text p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cs-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Responsive Viewports: Mobile & Tablet --- */
@media (max-width: 991px) {
  .cs-quiz-card {
    padding: 24px 20px;
  }

  .cs-styles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .cs-cta-box {
    padding: 40px 28px;
  }
}

@media (max-width: 767px) {
  .cs-quiz-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cs-quiz-selects {
    flex-direction: column;
    width: 100%;
  }

  .cs-quiz-selects select {
    width: 100%;
  }

  .cs-filter-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .cs-filter-pills {
    overflow-x: auto;
    padding-bottom: 6px;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .cs-search-input-box {
    max-width: 100%;
  }

  .cs-styles-grid {
    grid-template-columns: 1fr;
  }

  .cs-card-header,
  .cs-card-body,
  .cs-card-footer {
    padding: 20px;
  }

  .cs-meter-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cs-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cs-cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   PRIVATE SESSIONS PAGE (private-sessions.html)
   ========================================================================== */

/* --- 1. Benefits Grid (Enhanced Premium Bespoke Design) --- */
.ps-benefits-section {
  position: relative;
  background: var(--bg-alt);
  padding: 84px 0 90px;
  overflow: hidden;
}

.ps-benefits-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 90, 130, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ps-benefits-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ps-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .ps-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ps-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.ps-benefit-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 30px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ps-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold, #C89B5A), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ps-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 90, 0.35);
  box-shadow: 0 16px 36px rgba(45, 20, 35, 0.08);
}

.ps-benefit-card:hover::before {
  opacity: 1;
}

.ps-benefit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ps-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200, 155, 90, 0.14) 0%, var(--primary-tint) 100%);
  border: 1px solid rgba(200, 155, 90, 0.22);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 155, 90, 0.1);
  margin-bottom: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ps-benefit-card:hover .ps-benefit-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, var(--gold, #C89B5A) 0%, var(--primary) 100%);
  color: #ffffff;
}

.ps-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.ps-benefit-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold, #C89B5A);
  background: rgba(200, 155, 90, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200, 155, 90, 0.2);
}

.ps-benefit-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
}

.ps-benefit-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.ps-benefit-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.ps-benefit-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.ps-benefit-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.ps-benefit-points li svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Trust Bar under Private Benefits */
.ps-trust-bar {
  margin-top: 48px;
  position: relative;
  z-index: 2;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ps-trust-bar-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ps-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-trust-icon svg {
  width: 22px;
  height: 22px;
}

.ps-trust-bar-text p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.ps-trust-bar-text p strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .ps-trust-bar {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 18px;
  }
  .ps-trust-bar-text {
    flex-direction: column;
  }
}

/* --- 2. Offerings Grid --- */
.ps-offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.ps-offering-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ps-offering-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.ps-offering-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(123, 71, 104, 0.12);
}

.ps-offering-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);

}

.ps-offering-top h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.5;
  margin-top:15px;
}

.ps-offering-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: block;
}

.ps-offering-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 18px 0 20px;
}

.ps-offering-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-offering-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ps-offering-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-offering-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ps-rate {
  font-size: 13px;
  color: var(--muted);
}

.ps-rate strong {
  font-size: 22px;
  color: var(--ink);
  font-family: var(--font-display);
}

.ps-rate small {
  font-size: 12px;
}

/* --- 3. Interactive Package Estimator --- */
.ps-calc-box {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 44px;
  box-shadow: var(--shadow-1);
}

.ps-calc-header {
  margin-bottom: 30px;
}

.ps-calc-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--ink);
  margin: 8px 0 6px;
}

.ps-calc-header p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

.ps-calc-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.ps-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ps-calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-calc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ps-pill-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ps-toggle-opt {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.ps-toggle-opt:hover {
  border-color: var(--primary);
}

.ps-toggle-opt.active {
  background: var(--primary-solid);
  border-color: var(--primary-solid);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(123, 71, 104, 0.25);
}

.ps-check-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  user-select: none;
}

.ps-check-wrap input {
  display: none;
}

.ps-check-custom {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  display: inline-block;
  position: relative;
  transition: all 0.2s var(--ease);
}

.ps-check-wrap input:checked+.ps-check-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.ps-check-wrap input:checked+.ps-check-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ps-calc-summary {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 32px 28px;
  text-align: center;
}

.ps-summary-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.ps-display-price {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

.ps-per-session-label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.ps-summary-features {
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.ps-sf-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}

.ps-sf-row strong {
  color: var(--ink);
}

/* --- 4. How It Works Timeline --- */
.ps-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.ps-timeline-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  position: relative;
}

.ps-step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
  display: block;
  margin-bottom: 12px;
}

.ps-timeline-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 8px;
}

.ps-timeline-card p {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* --- 5. Consultation Form Layout --- */
.ps-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}

.ps-form-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  margin: 12px 0 12px;
  line-height: 1.25;
}

.ps-form-intro p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.ps-contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ps-ch-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ps-ch-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.ps-ch-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.ps-ch-item span {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.ps-form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px;
  box-shadow: var(--shadow-1);
}

.ps-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ps-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.ps-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.ps-form-group input,
.ps-form-group select,
.ps-form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.ps-form-group input:focus,
.ps-form-group select:focus,
.ps-form-group textarea:focus {
  border-color: var(--primary);
}

.ps-form-success {
  text-align: center;
  padding: 24px 10px;
}

.ps-form-success svg {
  width: 48px;
  height: 48px;
  color: #2b6e4a;
  margin-bottom: 12px;
}

.ps-form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

.ps-form-success p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* --- 6. FAQ Accordion --- */
.ps-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
}

.ps-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.ps-faq-trigger:hover {
  color: var(--primary);
}

.ps-faq-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.ps-faq-item.active .ps-faq-trigger svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.ps-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0 24px;
}

.ps-faq-item.active .ps-faq-panel {
  padding-bottom: 20px;
}

.ps-faq-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* --- 7. Full Studio CTA Box --- */
.ps-cta-box {
  background: linear-gradient(135deg, var(--primary-solid-deep) 0%, var(--primary-solid) 100%);
  border-radius: var(--radius-l);
  padding: 56px 44px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-2);
}

.ps-cta-text {
  flex: 1 1 500px;
}

.ps-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: #ffffff;
  margin: 12px 0 8px;
  line-height: 1.25;
}

.ps-cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

.ps-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Responsive Breakpoints (Tablet & Mobile) --- */
@media (max-width: 991px) {
  .ps-calc-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ps-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ps-calc-box {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .ps-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ps-form-card {
    padding: 24px 20px;
  }

  .ps-cta-box {
    padding: 36px 24px;
  }

  .ps-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .ps-cta-actions .btn {
    width: 100%;
    text-align: center;
  }

  .ps-pill-toggle {
    flex-direction: column;
  }

  .ps-toggle-opt {
    width: 100%;
    text-align: center;
  }

  .ps-offering-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ps-offering-foot .btn {
    width: 100%;
  }
}

/* ==========================================================================
   INSTRUCTOR DETAILS PAGE (instructor-details.html)
   ========================================================================== */

/* Compact Hero */
.id-hero-compact {
  padding-bottom: 24px;
}

.id-hero-compact .breadcrumb {
  margin-bottom: 0;
}

/* 1. Profile Card Hero */
.id-profile-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  box-shadow: var(--shadow-1);
  align-items: center;
}

.id-profile-media {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-1);
}

.id-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.id-badge-lead {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-solid);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.id-profile-intro {
  display: flex;
  flex-direction: column;
}

.id-intro-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.id-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.id-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.id-stars svg {
  width: 15px;
  height: 15px;
}

.id-rating-score {
  font-size: 13px;
  color: var(--ink-soft);
}

.id-rating-score strong {
  color: var(--ink);
}

.id-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.15;
}

.id-title-sub {
  font-size: 14.5px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.id-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}

.id-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.id-stat-col {
  display: flex;
  flex-direction: column;
}

.id-stat-col b {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}

.id-stat-col span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.id-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 2. Biography & Credentials Grid */
.id-bio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

.id-bio-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px;
}

.id-bio-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin: 10px 0 16px;
}

.id-bio-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.id-quote-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 22px 24px;
  position: relative;
  margin-top: 24px;
}

.id-quote-box svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 6px;
}

.id-quote-box p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 8px;
}

.id-quote-box span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
}

.id-sidebar-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px;
  margin-top:3em
}

.id-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 20px;
}

.id-cert-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.id-cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.id-cert-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.id-cert-icon svg {
  width: 18px;
  height: 18px;
}

.id-cert-list strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.id-cert-list span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.id-focus-areas {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.id-focus-areas h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 12px;
}

.id-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.id-pill-wrap span {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

/* 3. Schedule Table Section */
.id-days-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.id-day-btn {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.id-day-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.id-day-btn.active {
  background: var(--primary-solid);
  border-color: var(--primary-solid);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(123, 71, 104, 0.25);
}

.id-schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.id-session-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.id-session-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}

.id-session-time {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}

.id-day-badge {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 4px;
}

.id-time-val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
}

.id-duration {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

.id-session-info {
  display: flex;
  flex-direction: column;
}

.id-session-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.id-session-info h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 6px;
}

.id-session-info p {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.id-session-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.id-spots-left {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* 4. Student Reviews Grid */
.id-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.id-review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.id-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.id-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-review-header strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
}

.id-review-header span {
  font-size: 12px;
  color: var(--muted);
}

.id-review-body {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
  font-style: italic;
}

.id-review-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* 5. Private 1-on-1 Box */
.id-private-box {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  box-shadow: var(--shadow-1);
  align-items: center;
}

.id-private-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin: 10px 0 12px;
}

.id-private-text p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.id-private-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.id-private-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.id-private-perks svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.id-private-form-card {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 30px;
}

.id-private-form-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 16px;
}

.id-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.id-form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.id-form-group input,
.id-form-group select,
.id-form-group textarea {
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 9px 12px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--ink);
  outline: none;
}

.id-form-group input:focus,
.id-form-group select:focus,
.id-form-group textarea:focus {
  border-color: var(--primary);
}

.id-form-success {
  text-align: center;
  padding: 20px 0;
}

.id-form-success svg {
  width: 42px;
  height: 42px;
  color: #2b6e4a;
  margin-bottom: 10px;
}

.id-form-success h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

.id-form-success p {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

/* 6. Peer Faculty Grid */
.id-peers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.id-peer-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease);
}

.id-peer-card:hover {
  transform: translateY(-4px);
}

.id-peer-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.id-peer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.id-peer-img .cs-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.id-peer-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.id-peer-body h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 2px;
}

.id-peer-exp {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.id-peer-body p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 18px;
  flex: 1;
}

/* --- Responsive Tablet & Mobile Media Queries --- */
@media (max-width: 991px) {
  .id-profile-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 28px;
  }

  .id-profile-media {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  .id-bio-grid {
    grid-template-columns: 1fr;
  }

  .id-private-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .id-profile-card {
    padding: 22px 18px;
  }

  .id-stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .id-actions {
    flex-direction: column;
  }

  .id-actions .btn {
    width: 100%;
    text-align: center;
  }

  .id-session-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .id-session-time {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .id-days-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .id-days-filter .id-day-btn {
    white-space: nowrap;
  }
}

/* ==========================================================================
   ZENORA PREMIUM EDITORIAL MEMBERSHIP STYLING (.prem-mem-*)
   ========================================================================== */

/* --- Page Hero --- */
.prem-mem-hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(198, 149, 47, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(123, 71, 104, 0.08) 0%, transparent 50%),
    var(--bg);
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.prem-mem-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.prem-mem-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}

.prem-mem-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.prem-mem-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 16ch;
}

.prem-mem-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.prem-mem-subtitle {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}

.prem-mem-hero-meta-bar {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.prem-mem-stat-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
}

.prem-mem-stat-unit span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.prem-mem-stat-divider {
  width: 1px;
  height: 38px;
  background: var(--line-strong);
}

/* Hero Pass Card */
.prem-mem-pass-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-deep) 0%, #30172c 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 36px 32px;
  box-shadow: 0 24px 50px rgba(74, 42, 68, 0.28);
  border: 1px solid rgba(247, 236, 211, 0.22);
  transition: transform 0.4s var(--ease);
}

.prem-mem-pass-card:hover {
  transform: translateY(-6px);
}

.prem-mem-pass-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.prem-mem-pass-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #f7ecd3;
  border: 1px solid rgba(247, 236, 211, 0.35);
  padding: 5px 12px;
  border-radius: 100px;
}

.prem-mem-pass-chip svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.prem-mem-pass-serial {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.prem-mem-pass-card-body small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5b667;
  margin-bottom: 6px;
}

.prem-mem-pass-card-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.prem-mem-pass-card-body p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.prem-mem-pass-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.prem-mem-pass-card-footer span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.prem-mem-pass-card-footer b {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.prem-mem-pass-card-footer b small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

/* --- Section Heads & Tags --- */
.prem-mem-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.prem-mem-section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.prem-mem-section-head.text-center {
  margin-left: 0;
  margin-right: 0;
}

.prem-mem-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-tint);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.prem-mem-section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  color: var(--ink);
}

.prem-mem-section-head p {
  margin-top: 14px;
  font-size: clamp(14px, 1.3vw, 16.5px);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- Archetype Switcher (Section 2) --- */
.prem-mem-archetypes {
  background: var(--bg-alt);
}

.prem-mem-archetype-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.prem-mem-archetype-tab {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  min-width: 260px;
}

.prem-mem-archetype-tab .archetype-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
}

.prem-mem-archetype-tab strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.prem-mem-archetype-tab small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

.prem-mem-archetype-tab.active {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-2);
}

.prem-mem-archetype-tab.active strong {
  color: #fff;
}

.prem-mem-archetype-tab.active small {
  color: rgba(255, 255, 255, 0.7);
}

.prem-mem-archetype-tab.active .archetype-num {
  color: #f7ecd3;
}

.prem-mem-archetype-display {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  align-items: center;
}

.prem-mem-rec-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.prem-mem-archetype-narrative h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.prem-mem-archetype-narrative p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 55ch;
}

.prem-mem-archetype-stats {
  display: flex;
  gap: 30px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.arch-stat .stat-lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.arch-stat strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.prem-mem-archetype-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.prem-mem-hint {
  font-size: 12px;
  color: var(--muted);
}

.prem-mem-archetype-quote-box {
  background: var(--bg-sunken);
  border-radius: var(--radius-m);
  padding: 34px;
  border-left: 4px solid var(--gold);
  position: relative;
}

.prem-quote-svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 14px;
}

.prem-mem-archetype-quote-box p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
}

.prem-mem-quote-author strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}

.prem-mem-quote-author span {
  font-size: 11.5px;
  color: var(--muted);
}

/* --- Cadence Switcher --- */
.prem-mem-billing-switch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-elevated);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  margin-top: 24px;
}

.prem-switch-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.prem-mem-toggle {
  width: 48px;
  height: 26px;
  background: var(--line-strong);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  padding: 2px;
}

.prem-mem-toggle[aria-checked="true"] {
  background: var(--primary);
}

.prem-mem-knob {
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.prem-mem-toggle[aria-checked="true"] .prem-mem-knob {
  transform: translateX(22px);
}

.prem-badge-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #7b4768;
  background: #f7ecd3;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 6px;
}

/* --- Tiers Showcase (Asymmetrical Editorial, Not Just Plain Grid) --- */
.prem-mem-tiers-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.prem-mem-tier-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  padding: clamp(30px, 3.5vw, 42px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s var(--ease);
}

.prem-mem-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
}

.prem-mem-tier-tiername {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.prem-mem-tier-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-top: 6px;
  color: var(--ink);
}

.prem-mem-tier-intro {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  min-height: 42px;
}

.prem-mem-price-block {
  margin: 24px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.prem-mem-price-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
}

.prem-curr {
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
}

.prem-amount {
  font-size: 46px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.prem-period {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.prem-billed-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.prem-mem-tier-perks {
  flex-grow: 1;
}

.prem-perks-title {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 14px;
}

.prem-mem-tier-perks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prem-mem-tier-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.prem-mem-tier-perks li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.prem-mem-tier-action {
  margin-top: 32px;
}

/* Signature Featured Card (Sanctuary Unlimited) */
.prem-mem-tier-featured {
  background: linear-gradient(175deg, #42253d 0%, #291225 100%);
  color: #fff;
  border-color: rgba(247, 236, 211, 0.35);
  box-shadow: 0 20px 48px rgba(74, 42, 68, 0.35);
  transform: scale(1.03);
  z-index: 2;
}

.prem-mem-tier-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.prem-mem-tier-featured .prem-mem-tier-tiername {
  color: #f7ecd3;
}

.prem-mem-tier-featured .prem-mem-tier-header h3 {
  color: #fff;
  font-size: 30px;
}

.prem-mem-tier-featured .prem-mem-tier-intro {
  color: rgba(255, 255, 255, 0.8);
}

.prem-mem-tier-featured .prem-curr,
.prem-mem-tier-featured .prem-amount {
  color: #fff;
}

.prem-mem-tier-featured .prem-period,
.prem-mem-tier-featured .prem-billed-note {
  color: rgba(255, 255, 255, 0.65);
}

.prem-mem-tier-featured .prem-perks-title {
  color: #f7ecd3;
}

.prem-mem-tier-featured .prem-mem-tier-perks li {
  color: rgba(255, 255, 255, 0.9);
}

.prem-mem-tier-featured .prem-mem-tier-perks li svg {
  color: #f0c36b;
}

.prem-mem-tier-featured .prem-mem-price-block {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.prem-mem-flagship-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d3a43f, #efcf88);
  color: #2b1d28;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.prem-mem-flagship-ribbon svg {
  width: 12px;
  height: 12px;
}

.prem-guarantee-text {
  display: block;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
}

/* Highlight Animation when selected by Archetype */
.prem-mem-tier-card.highlighted-tier {
  outline: 3px solid var(--gold);
  animation: pulseBorder 1.5s ease;
}

@keyframes pulseBorder {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

/* --- Section 4: Comparison Dossier Table --- */
.prem-mem-compare {
  background: var(--bg);
}

.prem-mem-table-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.prem-mem-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prem-mem-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.prem-mem-table th,
.prem-mem-table td {
  padding: 16px 24px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}

.prem-mem-table th {
  background: var(--bg-alt);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  vertical-align: bottom;
}

.prem-mem-table th .tbl-price {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-top: 4px;
}

.prem-mem-table th.featured-col,
.prem-mem-table td.featured-col {
  background: var(--primary-tint);
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}

.prem-cat-row td {
  background: var(--bg-sunken);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  padding: 12px 24px;
}

/* --- Section 5: Editorial Benefits Showcase (The Anti-Grid) --- */
.prem-mem-benefits {
  background: var(--bg-alt);
}

.prem-mem-editorial-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.prem-mem-anchor-feature {
  background: linear-gradient(145deg, var(--primary-deep) 0%, #35172f 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(247, 236, 211, 0.2);
}

.prem-anchor-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #e5b667;
  border: 1px solid rgba(229, 182, 103, 0.35);
  padding: 4px 12px;
  border-radius: 100px;
}

.prem-anchor-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: rgba(247, 236, 211, 0.12);
  position: absolute;
  top: 30px;
  right: 36px;
}

.prem-mem-anchor-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin: 32px 0 16px;
}

.prem-mem-anchor-feature p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.prem-anchor-quote {
  margin: 36px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.prem-anchor-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: #f7ecd3;
}

.prem-anchor-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}

.prem-anchor-stats-strip {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.prem-anchor-stats-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
}

.prem-anchor-stats-strip span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Vignette Stack */
.prem-mem-vignette-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.prem-mem-vignette {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.prem-mem-vignette:hover {
  transform: translateX(6px);
}

.prem-vignette-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.prem-vignette-icon svg {
  width: 24px;
  height: 24px;
}

.prem-vignette-step {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 4px;
}

.prem-vignette-content h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.prem-vignette-content p {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --- Section 6: What's Included Amenities Tray --- */
.prem-mem-included {
  background: var(--bg);
}

.prem-mem-amenities-tray {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.prem-amenity-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.prem-amenity-media {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.prem-amenity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.prem-amenity-card:hover .prem-amenity-media img {
  transform: scale(1.05);
}

.prem-amenity-chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(43, 34, 51, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}

.prem-amenity-text {
  padding: 26px;
}

.prem-amenity-text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.prem-amenity-text p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --- Section 7: Flexible Passes (Boarding-Pass Tickets) --- */
.prem-mem-flexible {
  background: var(--bg-alt);
}

.prem-flex-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.prem-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.prem-mem-passes-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prem-ticket-pass {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 1fr 220px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.prem-ticket-pass:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.ticket-main {
  padding: 28px 32px;
}

.ticket-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.ticket-badge.gold-badge {
  color: var(--primary-deep);
  background: var(--gold-tint);
  border-color: var(--gold);
}

.ticket-main h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

.ticket-main p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.ticket-features {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}

.ticket-features li::before {
  content: "•";
  color: var(--gold);
  margin-right: 6px;
}

.ticket-stub {
  background: var(--bg-sunken);
  border-left: 2px dashed var(--line-strong);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.ticket-stub .ticket-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
}

.ticket-stub span {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

.ticket-pass-highlight {
  border-color: var(--gold);
}

.ticket-pass-highlight .ticket-stub {
  background: var(--gold-tint);
}

/* --- Section 8: Perks Showcase --- */
.prem-mem-perks {
  background: var(--bg);
}

.prem-mem-perks-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prem-perk-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.prem-perk-bullet {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
}

.prem-perk-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.prem-perk-text p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --- Section 9: How Membership Works Timeline --- */
.prem-mem-steps {
  background: var(--bg-alt);
}

.prem-mem-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.prem-timeline-step {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  border: 1px solid var(--line);
  position: relative;
}

.step-marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #f7ecd3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.prem-timeline-step h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

.prem-timeline-step p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --- Section 10: FAQ Accordion --- */
.prem-mem-faq {
  background: var(--bg);
}

.prem-mem-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(36px, 6vw, 80px);
}

.prem-faq-contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius-m);
  padding: 28px;
  margin-top: 32px;
  border: 1px solid var(--line);
}

.prem-faq-contact-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}

.prem-faq-contact-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 16px;
}

.prem-mem-faq-accordion {
  border-top: 1px solid var(--line-strong);
}

.prem-faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.prem-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  gap: 16px;
}

.prem-faq-cross {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.prem-faq-cross::before,
.prem-faq-cross::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.prem-faq-cross::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.prem-faq-cross::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}

.prem-faq-item.open .prem-faq-cross::after {
  transform: rotate(90deg);
  opacity: 0;
}

.prem-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}

.prem-faq-item.open .prem-faq-body {
  max-height: 300px;
  padding-bottom: 24px;
}

.prem-faq-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* --- Section 11: CTA Band --- */
.prem-mem-cta {
  background: radial-gradient(circle at center, rgba(198, 149, 47, 0.15) 0%, transparent 70%),
    var(--primary-deep);
  color: #fff;
  padding: clamp(70px, 5vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prem-mem-cta-box {
  max-width: 680px;
  margin: 0 auto;
}

.prem-mem-cta-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #f7ecd3;
  margin: 12px 0;
}

.prem-mem-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.prem-mem-cta-box p {
  margin: 18px auto 32px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.prem-mem-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.prem-mem-cta-reassurance {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .prem-mem-hero-inner {
    grid-template-columns: 1fr;
  }

  .prem-mem-tiers-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .prem-mem-tier-featured {
    transform: none;
    order: -1;
  }

  .prem-mem-tier-featured:hover {
    transform: translateY(-5px);
  }

  .prem-mem-editorial-showcase {
    grid-template-columns: 1fr;
  }

  .prem-mem-perks-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .prem-mem-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .prem-mem-amenities-tray {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .prem-mem-hero-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .prem-mem-stat-divider {
    display: none;
  }

  .prem-mem-archetype-display {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .prem-mem-archetype-stats {
    flex-direction: column;
    gap: 16px;
  }

  .prem-mem-ticket-pass {
    grid-template-columns: 1fr;
  }

  .ticket-stub {
    border-left: none;
    border-top: 2px dashed var(--line-strong);
  }

  .prem-mem-perks-showcase {
    grid-template-columns: 1fr;
  }

  .prem-mem-timeline {
    grid-template-columns: 1fr;
  }

  .prem-mem-faq-layout {
    grid-template-columns: 1fr;
  }

  .prem-mem-billing-switch {
    flex-direction: column;
    border-radius: var(--radius-m);
    padding: 14px;
    width: 100%;
  }

  .prem-mem-vignette {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MEMBERSHIP PAGE — MISSING & INCOMPLETE CSS FIXES
   Fills every gap left by the original prem-mem-* block:
   announcement bar, btn variants, hero card showcase, archetype tab layout,
   vignette layout, FAQ intro column, CTA inner, and all missing sub-rules.
   ========================================================================== */

/* ── Announcement Bar (site-announcement replaces .announce on this page) ── */
.site-announcement {
  background: var(--primary-solid-deep);
  color: #F4E9EE;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.announcement-left p {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(244, 233, 238, .9);
  margin: 0;
}

.announcement-right {
  flex: none;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: gap .2s ease;
}

.announcement-link:hover {
  gap: 10px;
}

.announcement-link svg {
  width: 14px;
  height: 14px;
}

.pill-badge {
  display: inline-block;
  background: var(--gold);
  color: #2B1D28;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Button Variants missing from base ── */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 100px;
}

.btn-outline:hover {
  background: var(--primary-tint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

/* Featured card outline override — white on dark bg */
.prem-mem-tier-featured .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.prem-mem-tier-featured .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

/* ── Hero: card showcase wrapper ── */
.prem-mem-hero-card-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Archetype tab: inner info layout ── */
.prem-mem-archetype-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius-m);
  text-align: left;
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease, transform .2s ease;
  flex: 1;
}

.prem-mem-archetype-tab:hover:not(.active) {
  background: var(--primary-tint);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.archetype-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

/* ── arch-stat layout (already has rules but missing wrapper display) ── */
.arch-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Vignette: grid layout for icon + content ── */
.prem-mem-vignette {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: flex-start;
}

html[dir="rtl"] .prem-mem-vignette {
  direction: rtl;
}

/* ── Timeline: step-marker full rules ── */
.step-marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-solid);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  flex: none;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-1);
}

/* ── Perks: item layout ── */
.prem-perk-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  border-radius: var(--radius-m);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.prem-perk-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.prem-perk-bullet {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  flex: none;
}

/* ── FAQ: intro column ── */
.prem-mem-faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: flex-start;
}

.prem-mem-faq-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  margin-top: 10px;
  line-height: 1.15;
}

.prem-mem-faq-intro p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 44ch;
}

.prem-faq-contact-card {
  margin-top: 34px;
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

.prem-faq-contact-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}

.prem-faq-contact-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.prem-faq-contact-card .btn-outline {
  margin-top: 16px;
}

/* ── CTA: inner centering wrapper ── */
.prem-mem-cta-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.prem-mem-cta-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── Ticket passes: full layout ── */
.prem-ticket-pass {
  display: grid;
  grid-template-columns: 1fr 200px;
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.prem-ticket-pass:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

/* ── Tier badge wrap ── */
.prem-mem-tier-badge-wrap {
  margin-bottom: 16px;
}

/* ── Archetype display: inner layout completion ── */
.prem-mem-archetype-display {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  margin-top: 30px;
}

.prem-mem-archetype-narrative {
  padding: clamp(28px, 4vw, 52px);
}

.prem-mem-archetype-visual {
  padding: clamp(24px, 3vw, 44px);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
}

.prem-mem-archetype-stats {
  display: flex;
  gap: 30px;
  margin: 26px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.prem-mem-archetype-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ── Section 5: anchor feature full padding ── */
.prem-mem-anchor-feature {
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--radius-l);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Amenities tray gap ── */
.prem-mem-amenities-tray {
  gap: 26px;
}

.prem-amenity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.prem-amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.prem-amenity-media {
  overflow: hidden;
}

/* ── Flexible passes section ── */
.prem-mem-passes-grid {
  gap: 20px;
}

/* ── Perks showcase: missing display ── */
.prem-mem-perks-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

/* ── Section head: restore text colour ── */
.prem-mem-section-head h2 {
  color: var(--ink);
}

/* ── FAQ trigger: full style ── */
.prem-faq-trigger {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s ease;
}

.prem-faq-trigger:hover {
  color: var(--primary);
}

.prem-faq-item.open .prem-faq-trigger {
  color: var(--primary);
}

.prem-faq-body p {
  color: var(--ink-soft);
}

/* ── Guarantee text contrast fix ── */
.prem-guarantee-text {
  color: rgba(255, 255, 255, .7);
}

/* ── Responsive fixes ── */
@media (max-width: 900px) {
  .announcement-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .prem-mem-perks-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .prem-ticket-pass {
    grid-template-columns: 1fr;
  }

  .ticket-stub {
    border-left: none;
    border-top: 2px dashed var(--line-strong);
  }

  .prem-perk-item {
    grid-template-columns: 1fr;
  }

  .prem-mem-faq-intro {
    position: static;
  }

  .prem-mem-hero-card-showcase {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .prem-mem-perks-showcase {
    grid-template-columns: 1fr;
  }

  .prem-mem-archetype-nav {
    flex-direction: column;
  }
}

/* ==========================================================================
   ZENORA PREMIUM WORKSHOPS & EVENTS STYLING (.ws-*)
   ========================================================================== */

/* --- Hero Section --- */
.ws-hero {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(198, 149, 47, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(123, 71, 104, 0.08) 0%, transparent 60%),
    var(--bg);
  padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ws-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.ws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 18px;
}

.ws-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.ws-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 17ch;
}

.ws-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.ws-hero-lead {
  margin-top: 20px;
  font-size: clamp(15px, 1.35vw, 17.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}

.ws-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ws-hero-reassurance {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.reassure-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--primary);
}

.reassure-item span {
  font-size: 12px;
  color: var(--muted);
}

.reassure-sep {
  width: 1px;
  height: 32px;
  background: var(--line-strong);
}

/* Floating Hero Ticket */
.ws-hero-pass {
  background: linear-gradient(145deg, #42253d 0%, #291225 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 50px rgba(74, 42, 68, 0.32);
  border: 1px solid rgba(247, 236, 211, 0.25);
  transition: transform 0.4s var(--ease);
}

.ws-hero-pass:hover {
  transform: translateY(-6px);
}

.ws-pass-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.ws-pass-flag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #f7ecd3;
}

.ws-pass-date {
  font-family: monospace;
  font-size: 11px;
  color: #e5b667;
  letter-spacing: 0.08em;
}

.ws-pass-middle h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.ws-pass-middle p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 26px;
}

.ws-pass-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.ws-pass-pricing span {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ws-pass-pricing strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
}

.ws-pass-pricing strong small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
}

/* --- Shared Section Elements --- */
.ws-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.ws-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 60px);
  flex-wrap: wrap;
}

.ws-section-header.text-center {
  display: block;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ws-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-tint);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.ws-tag.gold {
  background: rgba(198, 149, 47, 0.15);
  color: var(--gold);
}

.ws-section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--ink);
}

.ws-section-header p {
  margin-top: 10px;
  font-size: clamp(14px, 1.3vw, 16.5px);
  color: var(--ink-soft);
  max-width: 58ch;
}

/* --- Section 2: Filter Pills & Event Passport Strips (The Anti-Grid) --- */
.ws-upcoming {
  background: var(--bg-alt);
}

.ws-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ws-filter-pill {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}

.ws-filter-pill:hover,
.ws-filter-pill.active {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: #fff;
}

.ws-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ws-event-strip {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 140px 1fr 240px;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-event-strip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.ws-date-badge {
  background: var(--bg-sunken);
  border-right: 1px solid var(--line);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.ws-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.ws-day {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin: 4px 0;
}

.ws-dayname {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.ws-event-core {
  padding: 24px 32px;
}

.ws-event-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ws-meta-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.ws-meta-chip.category {
  background: var(--primary-tint);
  color: var(--primary);
}

.ws-meta-chip.time {
  background: var(--bg-sunken);
  color: var(--ink-soft);
}

.ws-meta-chip.seats-alert {
  background: #fbeae8;
  color: #c0392b;
  font-weight: 700;
}

.ws-meta-chip.seats {
  background: var(--gold-tint);
  color: #8c6418;
}

.ws-event-core h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.ws-event-core p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 16px;
}

.ws-instructor-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inst-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.ws-instructor-mini strong {
  display: block;
  font-size: 12.5px;
  color: var(--ink);
}

.ws-instructor-mini span {
  font-size: 11px;
  color: var(--muted);
}

.ws-event-action {
  padding: 28px 28px;
  border-left: 1px dashed var(--line-strong);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.ws-price-tag .price-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.ws-price-tag .price-sub {
  font-size: 11.5px;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.ws-action-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

/* --- Section 3: Monumental Featured Experience --- */
.ws-featured {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 0;
}

.ws-featured-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}

.ws-featured-media {
  position: relative;
  min-height: 480px;
}

.ws-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-featured-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(43, 34, 51, 0.88);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ws-featured-overlay-badge .flagship-title {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #e5b667;
  margin-bottom: 4px;
}

.ws-featured-overlay-badge strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.ws-featured-content {
  padding: clamp(36px, 5vw, 60px);
}

.ws-featured-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 8px;
}

.ws-featured-desc {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.ws-immersion-timeline {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.timeline-slot {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
}

.time-marker {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.slot-desc strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}

.slot-desc p {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.ws-featured-booking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-price-box span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-price-box strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
}

.booking-price-box strong small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.booking-price-box small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* --- Section 4: Architectural Category Mosaic --- */
.ws-categories {
  background: var(--bg-alt);
}

.ws-mosaic-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}

.ws-mosaic-pillar {
  background: var(--primary-deep);
  color: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(247, 236, 211, 0.2);
}

.pillar-bg-image {
  height: 240px;
  overflow: hidden;
}

.pillar-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-content {
  padding: 36px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pillar-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #e5b667;
  margin-bottom: 8px;
}

.pillar-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pillar-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  font-size: 13px;
  color: #f7ecd3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-list li::before {
  content: "—";
  color: var(--gold);
}

.ws-text-link {
  color: #e5b667;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.ws-text-link span {
  transition: transform 0.2s ease;
}

.ws-text-link:hover span {
  transform: translateX(4px);
}

.ws-mosaic-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.ws-stack-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  padding: 26px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.ws-stack-card:hover {
  transform: translateX(6px);
}

.stack-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.stack-card-icon svg {
  width: 22px;
  height: 22px;
}

.stack-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 4px;
}

.stack-card-text h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

.stack-card-text p {
  margin: 6px 0 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.stack-meta {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}

/* --- Section 5: Calendar Split View --- */
.ws-calendar-section {
  background: var(--bg);
}

.current-month {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}

.ws-calendar-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: stretch;
}

.ws-calendar-days-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.cal-days-header {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.cal-days-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cal-day-btn {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.cal-day-btn .c-day-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.cal-day-btn .c-day-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.cal-day-btn .c-day-dots {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.cal-day-btn.active {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
}

.cal-day-btn.active .c-day-num,
.cal-day-btn.active .c-day-lbl {
  color: #fff;
}

.cal-day-btn.active .c-day-dots {
  background: var(--gold);
}

.agenda-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.agenda-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.agenda-selected-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.agenda-status-badge {
  background: var(--gold-tint);
  color: #8c6418;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.agenda-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.agenda-card p {
  margin: 12px 0 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.agenda-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: var(--bg-alt);
  padding: 20px 24px;
  border-radius: var(--radius-m);
  margin-bottom: 28px;
}

.agenda-detail-item .d-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.agenda-detail-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
}

.agenda-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  flex-wrap: wrap;
}

.agenda-hint {
  font-size: 12px;
  color: var(--muted);
}

/* --- Section 6: Guides of the Immersions --- */
.ws-experts {
  background: var(--bg-alt);
}

.ws-experts-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ws-expert-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}

.ws-expert-portrait {
  height: 260px;
  position: relative;
}

.ws-expert-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ws-expert-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(43, 34, 51, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.ws-expert-body {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ws-expert-origin {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ws-expert-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 4px 0 10px;
}

.ws-expert-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.ws-expert-quote {
  margin-top: auto;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}

/* --- Section 7: Studio Moments Gallery (Asymmetric) --- */
.ws-moments {
  background: var(--bg);
}

.ws-moments-stats {
  font-size: 13px;
  color: var(--ink-soft);
}

.ws-moments-stats .bullet {
  margin: 0 8px;
  color: var(--gold);
}

.ws-moments-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.moment-tile {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-1);
}

.moment-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.moment-tile:hover img {
  transform: scale(1.05);
}

.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 10, 20, 0.9) 100%);
  color: #fff;
}

.moment-caption .m-date {
  font-size: 10.5px;
  font-weight: 700;
  color: #e5b667;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.moment-caption h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-top: 4px;
}

/* --- Section 8: How to Register Path --- */
.ws-how-to {
  background: var(--bg-alt);
}

.ws-steps-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ws-step-node {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  border: 1px solid var(--line);
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 12px;
}

.ws-step-node h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

.ws-step-node p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --- Section 9: CTA Banner --- */
.ws-cta {
  background: radial-gradient(circle at center, rgba(198, 149, 47, 0.16) 0%, transparent 65%),
    var(--primary-deep);
  color: #fff;
  padding: clamp(70px, 5vw, 120px) 0;
  text-align: center;
  position: relative;
}

.ws-cta-box {
  max-width: 680px;
  margin: 0 auto;
}

.ws-cta-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #f7ecd3;
  margin: 12px 0;
}

.ws-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.ws-cta-box p {
  margin: 18px auto 32px;
  font-size: clamp(15px, 1.35vw, 17.5px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.ws-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ws-cta-guarantees {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .ws-hero-inner {
    grid-template-columns: 1fr;
  }

  .ws-event-strip {
    grid-template-columns: 120px 1fr 200px;
  }

  .ws-featured-panel {
    grid-template-columns: 1fr;
  }

  .ws-featured-media {
    min-height: 340px;
  }

  .ws-mosaic-layout {
    grid-template-columns: 1fr;
  }

  .ws-calendar-layout {
    grid-template-columns: 1fr;
  }

  .ws-experts-showcase {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .ws-moments-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .moment-tile {
    height: 280px;
  }

  .ws-steps-line {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .ws-event-strip {
    grid-template-columns: 1fr;
  }

  .ws-date-badge {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  .ws-event-action {
    border-left: none;
    border-top: 1px dashed var(--line-strong);
    padding: 20px;
  }

  .timeline-slot {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ws-stack-card {
    grid-template-columns: 1fr;
  }

  .ws-steps-line {
    grid-template-columns: 1fr;
  }

  .ws-hero-reassurance {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .reassure-sep {
    display: none;
  }

  .agenda-details-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ZENORA PREMIUM EDITORIAL ABOUT PAGE STYLING (.abt-*)
   ========================================================================== */

/* --- 1. Hero Section --- */
.abt-hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(198, 149, 47, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(123, 71, 104, 0.08) 0%, transparent 55%),
    var(--bg);
  padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.abt-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(36px, 5vw, 75px);
  align-items: center;
}

.abt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 18px;
}

.abt-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.abt-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 16ch;
}

.abt-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.abt-hero-lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}

.abt-hero-stats-ribbon {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.abt-hero-stats-ribbon .stat-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
}

.abt-hero-stats-ribbon .stat-unit span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.abt-hero-stats-ribbon .stat-sep {
  width: 1px;
  height: 38px;
  background: var(--line-strong);
}

.abt-hero-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  height: 480px;
}

.abt-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-hero-caption-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(43, 34, 51, 0.88);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.abt-hero-caption-card .sub-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #e5b667;
  margin-bottom: 6px;
}

.abt-hero-caption-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.5;
  color: #f7ecd3;
}

.abt-hero-caption-card small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Shared Section Elements --- */
.abt-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.abt-section-header {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.abt-section-header.text-center {
  max-width: 680px;
}

.abt-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-tint);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.abt-tag.gold {
  background: rgba(198, 149, 47, 0.15);
  color: var(--gold);
}

.abt-section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  color: var(--ink);
}

.abt-section-header p {
  margin-top: 12px;
  font-size: clamp(14px, 1.3vw, 16.5px);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- 2. Our Story (Magazine Spread) --- */
.abt-story {
  background: var(--bg-alt);
}

.abt-story-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.abt-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.drop-cap-p {
  position: relative;
}

.drop-cap {
  float: left;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.85;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  color: var(--primary);
  font-weight: 500;
}

.abt-story-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.abt-founder-signature {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}

.sig-role {
  font-size: 12px;
  color: var(--muted);
}

.abt-portrait-wrapper {
  position: relative;
  padding: 16px;
}

.abt-portrait-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 32px;
  bottom: 32px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-l);
  z-index: 0;
}

.abt-portrait-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-l);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-2);
}

.abt-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-portrait-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--primary-deep);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(247, 236, 211, 0.3);
}

.abt-portrait-badge .badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #e5b667;
  display: block;
  line-height: 1;
}

.abt-portrait-badge .badge-txt {
  font-size: 11px;
  color: #f7ecd3;
  margin-top: 4px;
  display: block;
}

/* --- 3. Studio Philosophy (Editorial Strips) --- */
.abt-philosophy {
  background: var(--bg);
}

.abt-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.abt-pillar-row {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 80px 1fr 180px;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.abt-pillar-row:hover {
  transform: translateX(6px);
  border-color: var(--gold);
}

.pillar-roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
}

.pillar-main h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
}

.pillar-main p {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.pillar-tag-wrap {
  text-align: right;
}

.pillar-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- 4. Mission, Vision & Values --- */
.abt-mission-vision {
  background: var(--bg-alt);
}

.abt-mvv-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: stretch;
}

.abt-mv-monument {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.abt-statement-card {
  background: linear-gradient(145deg, var(--primary-deep) 0%, #30172c 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(247, 236, 211, 0.22);
}

.statement-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #e5b667;
  margin-bottom: 14px;
}

.abt-statement-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.abt-statement-card.vision-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.abt-statement-card.vision-card .statement-kicker {
  color: var(--primary);
}

.abt-statement-card.vision-card h3 {
  color: var(--ink);
}

.abt-values-dossier {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.dossier-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}

.dossier-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}

.dossier-header p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 6px 0 24px;
}

.abt-values-accordion {
  border-top: 1px solid var(--line);
}

.value-item {
  border-bottom: 1px solid var(--line);
}

.value-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.v-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
}

.v-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  flex-grow: 1;
}

.v-indicator {
  width: 14px;
  height: 14px;
  position: relative;
}

.v-indicator::before,
.v-indicator::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.v-indicator::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.v-indicator::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.value-item.active .v-indicator::after {
  transform: rotate(90deg);
  opacity: 0;
}

.value-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.value-item.active .value-drawer {
  max-height: 160px;
}

.value-drawer p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-bottom: 18px;
}

/* --- 5. The Lumen Experience (Sensory Blueprint) --- */
.abt-experience {
  background: var(--bg);
}

.abt-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.abt-exp-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.exp-tab-btn {
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}

.exp-tab-btn:hover,
.exp-tab-btn.active {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: #fff;
}

.abt-exp-stage {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}

.exp-stage-media {
  position: relative;
  min-height: 420px;
}

.exp-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.exp-stage-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(43, 34, 51, 0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
}

.exp-stage-narrative {
  padding: clamp(32px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-stage-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 8px;
}

.exp-stage-narrative h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.exp-stage-narrative p {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.exp-stage-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-item .h-label {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.highlight-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  margin-top: 3px;
}

.exp-stage-quote {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.exp-stage-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.exp-stage-quote cite {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-style: normal;
  color: var(--muted);
}

/* --- 6. Our Studio Space & Atmosphere --- */
.abt-atmosphere {
  background: var(--bg-alt);
}

.abt-space-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.space-mosaic-primary {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 377px;
  box-shadow: var(--shadow-2);
}

.space-mosaic-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, transparent 0%, rgba(20, 10, 20, 0.95) 100%);
  color: #fff;
}

.space-flag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #e5b667;
  display: block;
  margin-bottom: 6px;
}

.space-overlay-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  margin-bottom: 8px;
}

.space-overlay-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin-bottom: 16px;
}

.space-specs {
  display: flex;
  gap: 10px;
  font-size: 11.5px;
  color: #f7ecd3;
  flex-wrap: wrap;
}

.space-mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.space-side-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 140px 1fr;
}

.space-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-card-content {
  padding: 24px;
}

.side-card-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.side-card-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.abt-materials-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  padding: 24px 36px;
  margin-top: 40px;
  border: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
}

.mat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}

.mat-item span {
  font-size: 12px;
  color: var(--muted);
}

.mat-sep {
  width: 1px;
  height: 32px;
  background: var(--line-strong);
}

/* --- 7. CTA & Invitation --- */
.abt-cta {
  background: radial-gradient(circle at center, rgba(198, 149, 47, 0.16) 0%, transparent 65%),
    var(--primary-deep);
  color: #fff;
  padding: clamp(70px, 5vw, 120px) 0;
  text-align: center;
  position: relative;
}

.abt-cta-box {
  max-width: 680px;
  margin: 0 auto;
}

.abt-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  margin: 0 auto 12px;
}

.abt-cta-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #f7ecd3;
  margin-bottom: 12px;
}

.abt-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.abt-cta-box p {
  margin: 18px auto 32px;
  font-size: clamp(15px, 1.35vw, 17.5px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.abt-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.abt-cta-guarantees {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .abt-hero-inner {
    grid-template-columns: 1fr;
  }

  .abt-story-layout {
    grid-template-columns: 1fr;
  }

  .abt-portrait-frame {
    height: 400px;
  }

  .abt-pillar-row {
    grid-template-columns: 60px 1fr;
  }

  .pillar-tag-wrap {
    grid-column: 2;
    text-align: left;
  }

  .abt-mvv-layout {
    grid-template-columns: 1fr;
  }

  .abt-exp-stage {
    grid-template-columns: 1fr;
  }

  .exp-stage-media {
    min-height: 300px;
  }

  .abt-space-mosaic {
    grid-template-columns: 1fr;
  }

  .space-mosaic-primary {
    min-height: 380px;
  }

  .abt-materials-index {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mat-sep {
    display: none;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .abt-hero-stats-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .abt-hero-stats-ribbon .stat-sep {
    display: none;
  }

  .abt-pillar-row {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 14px;
  }

  .pillar-roman {
    font-size: 28px;
  }

  .pillar-tag-wrap {
    grid-column: 1;
  }

  .exp-stage-highlights {
    grid-template-columns: 1fr;
  }

  .space-side-card {
    grid-template-columns: 1fr;
  }

  .space-side-card img {
    height: 180px;
  }

  .abt-materials-index {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* ==========================================================================
   ZENORA MEMBER SANCTUARY DASHBOARD STYLING (.dash-*)
   ========================================================================== */

body.dashboard-page {
  min-height: 100vh;
}

body.dashboard-page .dash-top-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 0 0 -10px 0;
}

body.dashboard-page .dash-top-utility-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 14px;
  box-shadow: var(--shadow-1);
}

body.dashboard-page .dash-top-utility-actions .toggle-wrap {
  margin: 0;
}

body.dashboard-page .dash-top-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  padding: 7px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.dashboard-page .dash-top-logout svg {
  width: 14px;
  height: 14px;
}

body.dashboard-page .dash-top-logout:hover {
  color: var(--primary-deep);
  background: var(--bg-alt);
  border-color: var(--gold);
}

/* --- Master Layout Wrapper --- */
.dash-master-wrapper {
  background: var(--bg);
  padding: 10px 0 20px;
  min-height: calc(100vh - var(--header-h) - var(--announce-h));
  position: relative;
  width: 100%;
}

.dash-container-grid {
  display: grid !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  gap: 36px !important;
  align-items: start !important;
  width: 100%;
}

/* --- Header User Micro-Badge --- */
.dash-header-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.dash-avatar-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.dash-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* --- 1. Sidebar Navigation --- */
.dash-sidebar {
  grid-column: 1 !important;
  width: 280px;
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  padding: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.dash-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0px 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  margin-top: 0;
}

.dash-sidebar-close {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
}
.dash-sidebar-close svg {
  width: 20px;
  height: 20px;
}

.dash-member-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-member-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.dash-member-meta h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0;
  color: var(--ink);
}

.tier-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-top: 4px;
}
.tier-pill.gold {
  background: var(--gold-tint);
  color: var(--ink);
  border: 1px solid rgba(198, 149, 47, 0.4);
}

.nav-section-title {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 18px 0 8px;
}

.dash-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-sidebar-nav li {
  margin-bottom: 4px;
}

.dash-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--radius-s);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dash-sidebar-nav li a svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.dash-sidebar-nav li a:hover {
  background: var(--bg-alt);
  color: var(--ink);
}

.dash-sidebar-nav li.active a {
  background: var(--primary-deep);
  color: #FFFFFF !important;
  font-weight: 600;
}

.dash-sidebar-nav li.active a svg {
  color: var(--gold);
}

.badge-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-alt);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 10px;
}
.badge-count.gold {
  background: var(--gold);
  color: #1B1420;
}

.dash-sidebar-nav li.active .badge-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.dash-sidebar-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dash-logout-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.dash-logout-link:hover {
  color: var(--rose);
}
.dash-logout-link svg {
  width: 16px;
  height: 16px;
}

/* Scrim is completely hidden on desktop */
.dash-sidebar-scrim {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(27, 20, 32, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1040;
}

/* --- Main Dashboard Content Area --- */
.dash-main-flow {
  grid-column: 2 !important;
  min-width: 0 !important;
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.dash-mobile-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
}

.dash-mobile-nav-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.dash-mobile-nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* Sections Common */
.dash-section {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  padding: 28px 32px;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
}

.schedule-date-badge,
.booking-count-chip,
.badge-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-alt);
  color: var(--ink);
}
.badge-tag.gold {
  background: var(--gold-tint);
  color: #8C6212;
}
.badge-tag.plum {
  background: var(--primary-tint);
  color: var(--primary);
}

/* --- 2. Welcome Card & QR Pass --- */
.dash-welcome-card {
  background: linear-gradient(135deg, var(--primary-deep) 0%, #30182C 100%);
  border-radius: var(--radius-l);
  padding: 36px;
  color: #FAF6F0;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-2);
}

.dash-kicker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 6px;
}

.dash-greeting-time {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-tint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-welcome-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  margin: 8px 0 12px;
  line-height: 1.15;
  color: #FFFFFF;
}

.dash-quote-p {
  font-size: 14px;
  font-style: italic;
  color: rgba(250, 246, 240, 0.85);
  margin-bottom: 24px;
  max-width: 500px;
}

.dash-stats-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-pill strong {
  display: block;
  font-size: 16px;
  color: #FFFFFF;
}
.stat-pill span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

.dash-checkin-keycard {
  background: #FFFFFF;
  border-radius: var(--radius-m);
  padding: 18px;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.keycard-chip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.keycard-qr-box {
  background: #F8F5F2;
  padding: 12px;
  border-radius: var(--radius-s);
  border: 1px dashed var(--line-strong);
}

.qr-mock {
  width: 90px;
  height: 90px;
  margin: 0 auto 6px;
  color: #2B2233;
}
.qr-svg {
  width: 100%;
  height: 100%;
}

.qr-label {
  display: block;
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.keycard-footer small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin: 10px 0 8px;
}

.btn-micro-gold {
  background: var(--gold);
  border: none;
  color: #1B1420;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-micro-gold:hover {
  opacity: 0.9;
}

/* --- 3. Today's Class Timeline --- */
.dash-schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-slot {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  align-items: center;
}

.timeline-slot.live-now {
  border-left: 4px solid var(--gold);
}
.timeline-slot.booked-by-user {
  border-left: 4px solid var(--primary);
  background: var(--primary-tint);
}
html.dark .timeline-slot.booked-by-user {
  background: rgba(123, 71, 104, 0.2);
}

.slot-time strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.slot-time span {
  font-size: 11.5px;
  color: var(--muted);
}
.live-pill {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  background: var(--gold);
  color: #1B1420;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}
.tag-your-mat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
}

.slot-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.slot-main h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--ink);
}
.slot-main p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.slot-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}
.status-tag.full {
  background: var(--bg-alt);
  color: var(--muted);
}
.status-tag.confirmed {
  background: #D1FAE5;
  color: #065F46;
}
.status-tag.open {
  background: var(--gold-tint);
  color: #8C6212;
}

/* --- 4. Bookings Grid --- */
.dash-bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.booking-ticket {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking-ticket.special-workshop {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-tint) 140%);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ticket-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.ticket-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--ink);
}
.ticket-shala {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 12px;
}

.ticket-guide {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}
.guide-avatar-mini {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.ticket-meta-strip {
  display: flex;
  justify-content: space-between;
  background: var(--bg-elevated);
  padding: 8px 12px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  font-size: 11.5px;
  margin: 16px 0;
  color: var(--ink-soft);
}

.ticket-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-cancel-link {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}
.ticket-cancel-link:hover {
  color: var(--rose);
}

/* --- 5. Quick Booking Composer --- */
.dash-booking-composer {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
}

.composer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-field select,
.form-field input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13.5px;
}

.composer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.composer-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.composer-perk svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.booking-alert-banner {
  margin-top: 16px;
  padding: 12px 16px;
  background: #D1FAE5;
  color: #065F46;
  border-radius: var(--radius-s);
  font-size: 13px;
}

/* --- 6. Attendance Table --- */
.dash-table-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.dash-table-responsive {
  overflow-x: auto;
}

.dash-history-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.dash-history-table th {
  background: var(--bg-alt);
  padding: 12px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
}

.dash-history-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.dash-history-table td strong {
  display: block;
  color: var(--ink);
}
.dash-history-table td span {
  font-size: 12px;
  color: var(--muted);
}

.history-badge.completed {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  background: #D1FAE5;
  color: #065F46;
}

/* --- 7. Membership Dossier --- */
.membership-dossier-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
}

.dossier-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.dossier-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.dossier-main h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin: 4px 0 8px;
}
.dossier-main p {
  color: var(--ink-soft);
  font-size: 13.5px;
  max-width: 550px;
  margin: 0;
}

.dossier-price {
  text-align: right;
}
.dossier-price strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
}
.dossier-price span {
  font-size: 14px;
  color: var(--muted);
}
.dossier-price small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.dossier-meter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: var(--bg-elevated);
  padding: 20px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  margin-bottom: 20px;
}

.meter-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 8px;
}

.meter-bar-track {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}
.meter-bar-fill.gold {
  background: var(--gold);
}

.meter-note {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.dossier-privilege-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* --- 8. Quick Actions Mosaic --- */
.dash-actions-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.dash-action-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.action-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-s);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink);
}
.action-icon.gold {
  background: var(--gold-tint);
  color: #8C6212;
}
.action-icon.plum {
  background: var(--primary-tint);
  color: var(--primary);
}
.action-icon svg {
  width: 20px;
  height: 20px;
}

.action-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 6px;
}
.action-content p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 16px;
}

/* --- 9. Insights Grid --- */
.insights-composite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.insight-metric-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
}

.metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.metric-number-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 6px 0 12px;
}

.big-metric {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--ink);
}

.metric-trend.positive {
  font-size: 12px;
  font-weight: 600;
  color: #065F46;
  background: #D1FAE5;
  padding: 2px 6px;
  border-radius: 4px;
}

.insight-metric-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 90px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.chart-col {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: background 0.2s;
}
.chart-col.current {
  background: var(--primary);
}
.chart-col span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--muted);
}

.balance-track {
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  margin-bottom: 12px;
}
.balance-yang {
  background: var(--gold);
}
.balance-yin {
  background: var(--primary);
}

.balance-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}
.dot-yang {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 4px;
}
.dot-yin {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 4px;
}

/* --- 10. Favorites Roster --- */
.favorites-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.fav-guide-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fav-guide-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}

.fav-guide-info {
  flex: 1;
}
.fav-guide-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0 0 2px;
  color: var(--ink);
}
.fav-guide-info span {
  font-size: 11.5px;
  color: var(--muted);
  display: block;
}
.fav-guide-meta {
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
}

/* --- 11. Notifications --- */
.notifications-dossier {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-note-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
}
.dash-note-item.unread {
  background: var(--primary-tint);
  border-color: rgba(123, 71, 104, 0.3);
}
html.dark .dash-note-item.unread {
  background: rgba(123, 71, 104, 0.2);
}

.note-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  margin-top: 6px;
  flex-shrink: 0;
}
.note-bullet.gold {
  background: var(--gold);
}
.note-bullet.plum {
  background: var(--primary);
}

.note-content {
  flex: 1;
}
.note-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.note-head strong {
  font-size: 13.5px;
  color: var(--ink);
}
.note-head span {
  font-size: 11px;
  color: var(--muted);
}
.note-content p {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 0;
}

.link-subtle {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .dash-container-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .dash-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    bottom: 0 !important;
    width: 300px !important;
    height: 100vh !important;
    z-index: 1050 !important;
    border-radius: 0 !important;
    overflow-y: auto !important;
    transition: left 0.3s ease !important;
  }

  [dir="rtl"] .dash-sidebar {
    left: auto !important;
    right: -320px !important;
    transition: right 0.3s ease !important;
  }

  .dash-sidebar.open {
    left: 0 !important;
  }

  [dir="rtl"] .dash-sidebar.open {
    right: 0 !important;
  }

  .dash-sidebar-close {
    display: block;
  }

  .dash-sidebar-scrim {
    display: none;
  }

  .dash-sidebar-scrim.open {
    display: block !important;
  }

  .dash-mobile-bar {
    display: flex;
  }

  .dash-main-flow {
    grid-column: 1 !important;
  }

  .dash-welcome-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-section {
    padding: 20px;
  }

  .dash-stats-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .stat-sep {
    display: none;
  }

  .timeline-slot {
    grid-template-columns: 1fr;
  }

  .composer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .dossier-price {
    text-align: left;
  }
}

/* ==========================================================================
   ZENORA — ADMIN DASHBOARD STYLES (Namespaced: .adm-*)
   Matches Dawn Palette tokens, responsive grid, and dark mode.
   ========================================================================== */

body.admin-dashboard-page .adm-main-viewport .dash-top-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 0 0 14px 0;
}

body.admin-dashboard-page .adm-main-viewport .dash-top-utility-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 14px;
  box-shadow: var(--shadow-1);
}

body.admin-dashboard-page .adm-main-viewport .dash-top-utility-actions .toggle-wrap {
  margin: 0;
}

body.admin-dashboard-page .adm-main-viewport .dash-top-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  padding: 7px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.admin-dashboard-page .adm-main-viewport .dash-top-logout svg {
  width: 14px;
  height: 14px;
}

body.admin-dashboard-page .adm-main-viewport .dash-top-logout:hover {
  color: var(--primary-deep);
  background: var(--bg-alt);
  border-color: var(--gold);
}

/* Layout Container */
.adm-master-wrapper {
  padding-bottom: 1rem;
  background-color: var(--bg);
  min-height: 80vh;
  padding-top:10px
}

.adm-container-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

/* Header Badge */
.adm-header-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-m);
  margin-bottom: 30px;
  margin-top:40px;
}

.adm-avatar-mini {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}

.adm-header-meta {
  display: flex;
  flex-direction: column;
}

.adm-user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.adm-role-tag {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 500;
}

.adm-sidebar-toggle-btn {
  display: none;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}

.adm-sidebar-toggle-btn svg {
  width: 20px;
  height: 20px;
}

/* ================== 1. ADMIN SIDEBAR ================== */
.adm-sidebar {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.5rem;
  position: sticky;
  top: 0;
  box-shadow: var(--shadow-1);
}

.adm-sidebar-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.adm-selector-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

.adm-select-styled {
  position: relative;
}

.adm-select-styled select {
  width: 100%;
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.6rem 2rem 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.adm-select-styled svg {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  pointer-events: none;
  color: var(--ink-soft);
}

.adm-sidebar-close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
}

.adm-sidebar-close svg {
  width: 20px;
  height: 20px;
}

.adm-nav-group-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin: 1.25rem 0 0.5rem;
  padding-left: 0.5rem;
}

.adm-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adm-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--radius-s);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}

.adm-sidebar-nav li a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.adm-sidebar-nav li.active a,
.adm-sidebar-nav li a:hover {
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 600;
}

html.dark .adm-sidebar-nav li.active a {
  background: rgba(198, 149, 47, 0.15);
  color: var(--gold);
}

.adm-badge-counter {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--ink);
}

.adm-badge-counter.plum {
  background: var(--primary);
  color: #fff;
}

.adm-sidebar-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.adm-system-health {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.adm-health-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.adm-health-dot.online {
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.adm-health-info {
  display: flex;
  flex-direction: column;
}

.adm-health-info strong {
  font-size: 0.8rem;
  color: var(--ink);
}

.adm-health-info span {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ================== 2. HERO & ASYMMETRIC STATS MOSAIC ================== */
.adm-section {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 2.25rem;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-1);
}

.adm-hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.adm-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold-tint);
  color: #8C6212;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  animation: admPulse 2s infinite;
}

@keyframes admPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.adm-hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.adm-hero-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0;
}

.adm-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Editorial Mosaic for Stats */
.adm-stats-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
}

.adm-stat-dominant {
  background: linear-gradient(145deg, var(--bg-alt), var(--bg-sunken));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 1.75rem;
}

.adm-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.adm-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.adm-live-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(198, 149, 47, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.adm-dominant-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.adm-radial-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.adm-radial-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.adm-radial-track {
  fill: none;
  stroke: rgba(43, 34, 51, 0.1);
  stroke-width: 10;
}

.adm-radial-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  transition: stroke-dashoffset 1s var(--ease);
}

.adm-radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.adm-radial-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.adm-radial-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

.adm-dominant-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.adm-metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.35rem;
}

.adm-metric-row strong {
  color: var(--ink);
}

.text-plum {
  color: var(--primary) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-dusk {
  color: var(--dusk-blue) !important;
}

.adm-dominant-footnote {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: #10B981;
}

.adm-dominant-footnote svg {
  width: 16px;
  height: 16px;
}

/* Stat cluster */
.adm-stat-cluster {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adm-stat-vignette {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-s);
}

.adm-vignette-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-vignette-icon svg {
  width: 22px;
  height: 22px;
}

.adm-vignette-icon.plum {
  background: var(--primary-tint);
  color: var(--primary);
}

.adm-vignette-icon.gold {
  background: var(--gold-tint);
  color: #8C6212;
}

.adm-vignette-icon.dusk {
  background: var(--dusk-blue-tint);
  color: var(--dusk-blue);
}

.adm-vignette-data {
  flex: 1;
}

.adm-stat-subhead {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  display: block;
}

.adm-stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.2rem 0 0.5rem;
}

.adm-stat-large {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.adm-trend-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.adm-trend-pill.positive {
  background: #D1FAE5;
  color: #065F46;
}

.adm-trend-pill.neutral {
  background: var(--bg-alt);
  color: var(--ink-soft);
}

.adm-progress-bar-thin {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.adm-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

.adm-progress-fill.gold {
  background: var(--gold);
}

.adm-progress-fill.dusk {
  background: var(--dusk-blue);
}

/* ================== SECTION HEADERS & LABELS ================== */
.adm-section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.adm-pill-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

.adm-section-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

/* ================== 3. MEMBER MANAGEMENT TABLE ================== */
.adm-header-search-filter {
  display: flex;
  gap: 0.75rem;
}

.adm-search-input-box {
  position: relative;
  width: 280px;
}

.adm-search-input-box svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.adm-search-input-box input {
  width: 100%;
  padding: 0.55rem 0.75rem 0.55rem 2.2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
}

.adm-filter-pills-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.adm-filter-btn {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}

.adm-filter-btn.active,
.adm-filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.adm-table-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
}

.adm-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.adm-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.adm-table th {
  background: var(--bg-alt);
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.adm-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: middle;
}

.adm-user-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.adm-table-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.adm-user-cell strong {
  display: block;
  color: var(--ink);
}

.adm-user-cell span {
  font-size: 0.75rem;
  color: var(--muted);
}

.adm-tier-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
}

.adm-tier-chip.gold {
  background: var(--gold-tint);
  color: #8C6212;
}

.adm-tier-chip.plum {
  background: var(--primary-tint);
  color: var(--primary);
}

.adm-tier-chip.dusk {
  background: var(--dusk-blue-tint);
  color: var(--dusk-blue);
}

.adm-status-dot {
  font-size: 0.75rem;
  margin-left: 0.4rem;
}

.adm-status-dot.active {
  color: #10B981;
}

.adm-status-dot.warning {
  color: #F59E0B;
}

.adm-frequency-indicator strong {
  display: block;
  color: var(--ink);
}

.adm-frequency-indicator span {
  font-size: 0.74rem;
  color: var(--muted);
}

.adm-pill-credits {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-elevated);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.adm-pill-credits.low {
  border-color: #F59E0B;
  color: #D97706;
}

.adm-row-actions {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}

.adm-action-icon-btn {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.adm-action-icon-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.adm-action-icon-btn svg {
  width: 14px;
  height: 14px;
}

.adm-table-footer {
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--bg-alt);
}

.adm-pagination {
  display: flex;
  gap: 0.25rem;
}

.adm-page-btn {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--ink);
}

.adm-page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ================== 4. CLASS & SCHEDULE TIMELINE ================== */
.adm-schedule-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.adm-date-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.adm-date-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.adm-room-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  overflow-x: auto;
}

.adm-room-tab {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--radius-s);
  cursor: pointer;
  white-space: nowrap;
}

.adm-room-tab.active {
  background: var(--bg-alt);
  color: var(--primary);
}

.adm-timeline-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.adm-schedule-strip {
  display: grid;
  grid-template-columns: 110px 1.5fr 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.1rem 1.4rem;
  transition: border-color 0.2s;
}

.adm-schedule-strip.in-progress {
  border-left: 4px solid #10B981;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.04), transparent);
}

.adm-strip-time strong {
  font-size: 1.05rem;
  color: var(--ink);
  display: block;
}

.adm-strip-time span {
  font-size: 0.75rem;
  color: var(--muted);
}

.adm-live-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  background: #D1FAE5;
  color: #065F46;
  margin-top: 0.25rem;
}

.adm-time-until {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
}

.adm-strip-primary h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
  color: var(--ink);
}

.adm-room-tag {
  font-size: 0.75rem;
  color: var(--muted);
}

.adm-strip-teacher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.adm-teacher-micro {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.adm-strip-teacher span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.adm-occupancy-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

.adm-waitlist-alert {
  color: #F59E0B;
  font-weight: 700;
}

.adm-spots-left {
  color: #10B981;
  font-weight: 600;
}

.adm-meter-wrap {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.adm-meter-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.adm-meter-bar.full {
  background: #E11D48;
}

.adm-strip-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.adm-strip-menu-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ================== 5. INSTRUCTOR ROSTER ================== */
.adm-faculty-roster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.adm-guide-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.adm-guide-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.adm-guide-portrait {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.adm-guide-meta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

.adm-guide-role {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

.adm-guide-rating {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.25rem;
}

.adm-guide-rating em {
  color: var(--muted);
  font-style: normal;
}

.adm-guide-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: var(--bg-elevated);
  padding: 0.85rem;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.adm-g-stat span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  display: block;
}

.adm-g-stat strong {
  font-size: 0.88rem;
  color: var(--ink);
}

.adm-chip-ok {
  font-size: 0.7rem;
  font-weight: 700;
  color: #10B981;
}

.adm-guide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.adm-next-session {
  color: var(--ink-soft);
}

.adm-link-subtle {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ================== 6. CHECK-IN TERMINAL ================== */
.adm-checkin-terminal-box {
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.adm-terminal-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-tint);
  color: var(--primary);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-terminal-icon svg {
  width: 26px;
  height: 26px;
}

.adm-terminal-input-wrap {
  flex: 1;
}

.adm-terminal-input-wrap label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.adm-terminal-flex {
  display: flex;
  gap: 0.75rem;
}

.adm-terminal-flex input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--bg-elevated);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}

.adm-terminal-status {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 140px;
  text-align: right;
}

.adm-manifest-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.25rem;
}

.adm-manifest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.adm-manifest-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

.adm-manifest-header p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.adm-manifest-summary {
  display: flex;
  gap: 0.5rem;
}

.adm-chip-manifest {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.adm-chip-manifest.checked {
  background: #D1FAE5;
  color: #065F46;
}

.adm-chip-manifest.pending {
  background: #FEF3C7;
  color: #92400E;
}

.adm-chip-manifest.waitlist {
  background: var(--primary-tint);
  color: var(--primary);
}

.adm-mat-num {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-alt);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.adm-badge-status {
  font-size: 0.75rem;
  font-weight: 600;
}

.adm-badge-status.present {
  color: #10B981;
}

.adm-badge-status.awaiting {
  color: #F59E0B;
}

.adm-btn-text {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ================== 7. BILLING & PAYMENTS ================== */
.adm-billing-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}

.adm-billing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.5rem;
}

.adm-billing-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  color: var(--ink);
}

.adm-card-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.2rem 0 1.25rem;
}

.adm-tier-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adm-tier-line-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.adm-bar-track {
  height: 7px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.adm-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.adm-bar-fill.gold {
  background: var(--gold);
}

.adm-bar-fill.plum {
  background: var(--primary);
}

.adm-bar-fill.dusk {
  background: var(--dusk-blue);
}

.adm-churn-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.adm-churn-box span {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}

.adm-churn-box strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.adm-transactions-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.adm-tx-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.adm-tx-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.adm-tx-icon.success {
  background: #D1FAE5;
  color: #065F46;
}

.adm-tx-icon.refund {
  background: #FEE2E2;
  color: #991B1B;
}

.adm-tx-details {
  flex: 1;
}

.adm-tx-details strong {
  display: block;
  font-size: 0.84rem;
  color: var(--ink);
}

.adm-tx-details span {
  font-size: 0.72rem;
  color: var(--muted);
}

.adm-tx-amount {
  text-align: right;
}

.adm-tx-amount strong {
  display: block;
  font-size: 0.9rem;
}

.adm-tx-amount span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ================== 8. WORKSHOPS & EVENTS ================== */
.adm-events-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.adm-event-dossier-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.adm-event-badge-strip {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.adm-event-date-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.adm-event-status-chip {
  font-size: 0.72rem;
  font-weight: 600;
}

.adm-event-status-chip.open {
  color: #10B981;
}

.adm-event-status-chip.exclusive {
  color: var(--gold);
}

.adm-event-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.adm-event-body p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.adm-event-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: var(--bg-elevated);
  padding: 0.75rem;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
}

.adm-ev-met span {
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--muted);
  display: block;
}

.adm-ev-met strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.adm-event-progress {
  height: 5px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.adm-event-progress-fill {
  height: 100%;
  background: var(--gold);
}

.adm-event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.adm-event-btns {
  display: flex;
  gap: 0.5rem;
}

/* ================== 9. AUDIT FEED & NOTIFICATIONS ================== */
.adm-activity-feed-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.25rem 1.5rem;
}

.adm-feed-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adm-feed-item {
  display: flex;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.adm-feed-item:last-child {
  border-bottom: none;
}

.adm-feed-item.unread {
  background: rgba(123, 71, 104, 0.03);
  margin: 0 -0.5rem;
  padding: 0.95rem 0.5rem;
  border-radius: var(--radius-s);
}

.adm-feed-indicator {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-feed-indicator svg {
  width: 16px;
  height: 16px;
}

.adm-feed-indicator.plum {
  background: var(--primary-tint);
  color: var(--primary);
}

.adm-feed-indicator.gold {
  background: var(--gold-tint);
  color: #8C6212;
}

.adm-feed-indicator.dusk {
  background: var(--dusk-blue-tint);
  color: var(--dusk-blue);
}

.adm-feed-indicator.rose {
  background: var(--rose-tint);
  color: var(--rose);
}

.adm-feed-content {
  flex: 1;
}

.adm-feed-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.adm-feed-line strong {
  color: var(--ink);
}

.adm-feed-time {
  font-size: 0.74rem;
  color: var(--muted);
}

.adm-feed-content p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ================== 10. REVENUE & PERFORMANCE ANALYTICS ================== */
.adm-period-selector {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.2rem;
}

.adm-period-btn {
  background: none;
  border: none;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  border-radius: 20px;
  cursor: pointer;
}

.adm-period-btn.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.adm-analytics-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
}

.adm-chart-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.5rem;
}

.adm-chart-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.adm-chart-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  display: block;
}

.adm-chart-top h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0.2rem 0 0;
}

.adm-chart-top h3 em {
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--muted);
  font-style: normal;
}

.adm-chart-legend {
  display: flex;
  gap: 0.85rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.3rem;
}

.legend-dot.plum {
  background: var(--primary);
}

.legend-dot.gold {
  background: var(--gold);
}

.legend-dot.dusk {
  background: var(--dusk-blue);
}

.adm-bar-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 200px;
  padding-top: 1rem;
  border-bottom: 1px solid var(--line);
}

.adm-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.adm-bar-stack {
  width: 32px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--line);
  transition: transform 0.2s var(--ease);
}

.adm-bar-stack:hover {
  transform: translateY(-4px);
}

.adm-bar-col.active-col .adm-bar-stack {
  box-shadow: 0 0 0 2px var(--gold);
}

.bar-seg {
  width: 100%;
}

.bar-seg.plum {
  background: var(--primary);
}

.bar-seg.gold {
  background: var(--gold);
}

.bar-seg.dusk {
  background: var(--dusk-blue);
}

.adm-col-label {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.adm-yield-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.5rem;
}

.adm-yield-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
}

.adm-yield-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adm-yield-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.adm-yield-rank {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
  width: 24px;
}

.adm-yield-info {
  flex: 1;
}

.adm-yield-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
}

.adm-yield-info span {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ================== 11. QUICK TOOLS ================== */
.adm-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.adm-tool-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.adm-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.adm-tool-icon svg {
  width: 20px;
  height: 20px;
}

.adm-tool-icon.plum {
  background: var(--primary-tint);
  color: var(--primary);
}

.adm-tool-icon.gold {
  background: var(--gold-tint);
  color: #8C6212;
}

.adm-tool-icon.dusk {
  background: var(--dusk-blue-tint);
  color: var(--dusk-blue);
}

.adm-tool-icon.rose {
  background: var(--rose-tint);
  color: var(--rose);
}

.adm-tool-text h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.adm-tool-text p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}

/* ================== MODAL STYLES ================== */
.adm-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.adm-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.adm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 20, 32, 0.65);
  backdrop-filter: blur(4px);
}

.adm-modal-panel {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  width: 90%;
  max-width: 580px;
  padding: 2rem;
  box-shadow: var(--shadow-2);
  z-index: 2;
}

.adm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.adm-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
}

.adm-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
}

.adm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.adm-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.adm-form-group input,
.adm-form-group select {
  width: 100%;
  padding: 0.65rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
}

.adm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ================== RESPONSIVE TABLET & MOBILE ================== */
@media (max-width: 1080px) {
  .adm-container-grid {
    grid-template-columns: 1fr;
  }

  .adm-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    z-index: 999;
    transform: translateX(-105%);
    transition: transform 0.3s var(--ease);
    border-radius: 0;
    overflow-y: auto;
  }

  [dir="rtl"] .adm-sidebar {
    left: auto;
    right: 0;
    transform: translateX(105%);
  }

  .adm-sidebar.open {
    transform: translateX(0);
  }

  .adm-sidebar-close {
    display: block;
  }

  .adm-sidebar-toggle-btn {
    display: flex;
  }

  .adm-stats-mosaic,
  .adm-billing-layout,
  .adm-analytics-mosaic {
    grid-template-columns: 1fr;
  }

  .adm-schedule-strip {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }

  .adm-strip-occupancy,
  .adm-strip-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .adm-hero-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .adm-hero-title {
    font-size: 1.5rem;
  }

  .adm-dominant-body {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adm-radial-wrapper {
    margin: 0 auto;
  }

  .adm-form-row {
    grid-template-columns: 1fr;
  }

  .adm-checkin-terminal-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .adm-terminal-flex {
    flex-direction: column;
  }

  .adm-header-badge {
    display: none;
  }
}


.header-container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}

/* ==========================================================================
   HOME-2 NEW SECTIONS — Community Impact, Gallery, Journal, App, Testimonials
   ========================================================================== */

/* ──────────────────────── 1. COMMUNITY IMPACT STATS ──────────────────────── */
.h2-impact {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #1B1420 0%, #2A1235 40%, #1A1030 70%, #0E0B15 100%);
}

html.dark .h2-impact {
  background: linear-gradient(135deg, #0D0A12 0%, #1A0E28 40%, #120A22 70%, #080610 100%);
}

.h2-impact-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}

.h2-impact-orb1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #7B4768 0%, transparent 70%);
  top: -120px;
  left: -100px;
}

.h2-impact-orb2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #C6952F 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
  opacity: 0.2;
}

.h2-impact-inner {
  position: relative;
  z-index: 1;
}

.h2-impact-header {
  text-align: center;
  margin-bottom: 64px;
}

.h2-impact-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C6952F;
  margin-bottom: 16px;
}

.h2-impact-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: #F3ECEF;
  line-height: 1.18;
  margin-bottom: 16px;
}

.h2-impact-header p {
  font-size: 16px;
  color: rgba(243, 236, 239, 0.6);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.7;
}

.h2-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
}

.h2-impact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-m);
  padding: 32px 24px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.h2-impact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 149, 47, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.h2-impact-card--featured {
  background: linear-gradient(160deg, rgba(123, 71, 104, 0.4) 0%, rgba(74, 42, 68, 0.4) 100%);
  border-color: rgba(123, 71, 104, 0.5);
  transform: scale(1.06);
}

.h2-impact-card--featured:hover {
  transform: scale(1.06) translateY(-6px);
}

.h2-impact-ring {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(198, 149, 47, 0.4);
  pointer-events: none;
}

.h2-impact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 149, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #C6952F;
}

.h2-impact-icon svg {
  width: 22px;
  height: 22px;
}

.h2-impact-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 500;
  color: #F3ECEF;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.h2-impact-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 236, 239, 0.9);
  margin-bottom: 6px;
}

.h2-impact-sub {
  font-size: 11px;
  color: rgba(243, 236, 239, 0.45);
  line-height: 1.5;
}

/* ──────────────────────── 2. STUDIO AMBIENCE GALLERY ──────────────────────── */
.h2-gallery {
  background: var(--bg-alt);
}

.h2-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
  margin: 48px 0 36px;
  border-radius: var(--radius-l);
  overflow: hidden;
}

.h2-gallery-cell {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  cursor: pointer;
}

.h2-gallery-cell--tall {
  grid-row: 1 / 3;
}

.h2-gallery-cell--wide {
  grid-column: 2 / 4;
}

.h2-gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s var(--ease);
}

.h2-gallery-cell:hover .h2-gallery-img {
  transform: scale(1.07);
}

.h2-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 20, 32, 0.88) 0%, rgba(27, 20, 32, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.h2-gallery-cell:hover .h2-gallery-overlay {
  opacity: 1;
}

.h2-gallery-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C6952F;
  margin-bottom: 6px;
}

.h2-gallery-overlay p {
  font-size: 13px;
  color: rgba(243, 236, 239, 0.8);
  margin: 0;
  line-height: 1.5;
}

.h2-gallery-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.h2-gallery-note {
  font-size: 13px;
  color: var(--muted);
}

/* ──────────────────────── 3. WELLNESS JOURNAL ──────────────────────── */
.h2-journal {
  background: var(--bg);
}

.h2-journal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.h2-journal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 10px;
  color: var(--ink);
}

.h2-journal-header p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 46ch;
}

.h2-journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Featured article */
.h2-journal-featured {
  background: var(--bg-elevated);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}

.h2-journal-featured:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
}

.h2-journal-featured-img {
  position: relative;
  height: 300px;
}

.h2-journal-img-wrap {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.h2-journal-featured:hover .h2-journal-img-wrap {
  transform: scale(1.04);
}

.h2-journal-meta-float {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.h2-journal-cat {
  display: inline-block;
  background: var(--primary-solid);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.h2-journal-read {
  font-size: 11px;
  color: rgba(243, 236, 239, 0.85);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 100px;
}

.h2-journal-featured-body {
  padding: 28px 30px 32px;
}

.h2-journal-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.h2-journal-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.h2-journal-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.h2-journal-author small {
  font-size: 11px;
  color: var(--muted);
}

.h2-journal-featured-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 14px;
}

.h2-journal-featured-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.h2-journal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-solid);
  text-decoration: none;
  transition: gap 0.2s;
}

.h2-journal-link:hover {
  gap: 12px;
}

.h2-journal-link svg {
  width: 16px;
  height: 16px;
}

/* Sidebar cards */
.h2-journal-sidebar {
  margin-top:5em;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h2-journal-card {
  display: flex;
  gap: 0;
  background: var(--bg-elevated);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}

.h2-journal-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}

.h2-journal-card-img {
  flex: 0 0 110px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}

.h2-journal-card:hover .h2-journal-card-img {
  transform: scale(1.06);
}

.h2-journal-card-body {
  padding: 16px 18px;
  flex: 1;
}

.h2-journal-card-body h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin: 8px 0 12px;
}

.h2-journal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

/* ──────────────────────── 4. APP FEATURE SECTION ──────────────────────── */
.h2-app {
  background: var(--bg-alt);
  overflow: hidden;
}

.h2-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.h2-app-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.h2-app-copy > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.h2-app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h2-app-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.h2-app-feat-icon {
  flex: 0 0 42px;
  height: 42px;
  border-radius: var(--radius-s);
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.h2-app-features li:hover .h2-app-feat-icon {
  background: var(--primary-solid);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}

.h2-app-feat-icon svg {
  width: 20px;
  height: 20px;
}

.h2-app-features li strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.h2-app-features li span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.h2-app-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.h2-app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-m);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.25s var(--ease);
}

.h2-app-badge:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

.h2-app-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--bg);
}

.h2-app-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.65;
  margin-bottom: 1px;
}

.h2-app-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* Phone mockup */
.h2-app-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.h2-app-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 71, 104, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.h2-app-phone {
  position: relative;
  z-index: 1;
  width: 280px;
  background: linear-gradient(160deg, #1B1420 0%, #2A1235 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s var(--ease);
}

.h2-app-mockup:hover .h2-app-phone {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-6px);
}

.h2-app-phone-notch {
  width: 90px;
  height: 26px;
  background: #0D0A12;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 10px;
}

.h2-app-screen {
  background: linear-gradient(170deg, #FAF6F0 0%, #F1E7D8 100%);
  border-radius: 32px;
  padding: 20px 16px;
  min-height: 520px;
  overflow: hidden;
}

.h2-app-screen-header {
  margin-bottom: 16px;
}

.h2-app-screen-greeting {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2B2233;
  margin-bottom: 2px;
}

.h2-app-screen-header small {
  font-size: 11px;
  color: #8B8091;
}

.h2-app-streak-bar {
  background: linear-gradient(135deg, #7B4768 0%, #4A2A44 100%);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h2-app-streak-bar > span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.h2-app-streak-dots {
  display: flex;
  gap: 5px;
}

.h2-app-streak-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.h2-app-streak-dots span.filled {
  background: #C6952F;
  border-color: #C6952F;
}

.h2-app-next-class {
  background: var(--bg-elevated);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(43, 34, 51, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.h2-app-next-class small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.h2-app-next-class strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.h2-app-next-class span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.h2-app-btn-mini {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-solid);
  background: var(--primary-tint);
  padding: 5px 12px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.h2-app-on-demand-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.h2-app-on-demand-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.h2-app-od-card {
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}

.h2-app-od-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 20, 32, 0.8) 0%, transparent 60%);
}

.h2-app-od-card span,
.h2-app-od-card small {
  position: relative;
  color: #fff;
  display: block;
}

.h2-app-od-card span {
  font-size: 11px;
  font-weight: 600;
}

.h2-app-od-card small {
  font-size: 10px;
  opacity: 0.7;
}

/* ──────────────────────── 5. TESTIMONIALS MASONRY WALL ──────────────────────── */
.h2-testimonials-wall {
  background: var(--bg);
}

.h2-twall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 48px;
  align-items: start;
}

.h2-twall-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h2-twall-col--shift {
  padding-top: 40px;
}

.h2-twall-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.h2-twall-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.h2-twall-card--gold {
  background: linear-gradient(135deg, #F7ECD3 0%, #EDD9A0 100%);
  border-color: rgba(198, 149, 47, 0.3);
}

html.dark .h2-twall-card--gold {
  background: linear-gradient(135deg, #35291B 0%, #2A1F10 100%);
}

.h2-twall-card--dark {
  background: linear-gradient(145deg, #2A1E2F 0%, #1B1420 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.h2-twall-card--dark .h2-twall-stars,
.h2-twall-card--dark blockquote {
  color: rgba(243, 236, 239, 0.9);
}

.h2-twall-card--dark .h2-twall-author strong {
  color: #F3ECEF;
}

.h2-twall-card--dark .h2-twall-author small {
  color: rgba(243, 236, 239, 0.5);
}

.h2-twall-card--primary {
  background: linear-gradient(145deg, var(--primary-solid) 0%, var(--primary-solid-deep) 100%);
  border-color: transparent;
}

.h2-twall-card--primary .h2-twall-stars,
.h2-twall-card--primary blockquote,
.h2-twall-card--primary .h2-twall-author strong {
  color: #fff;
}

.h2-twall-card--primary .h2-twall-author small {
  color: rgba(255, 255, 255, 0.6);
}

.h2-twall-card--quote {
  background: var(--bg-sunken);
  border-color: var(--line);
}

.h2-twall-big-quote {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 12px;
  font-style: italic;
}

.h2-twall-stars {
  font-size: 15px;
  color: #C6952F;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.h2-twall-card blockquote {
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 20px;
  font-style: italic;
  font-weight: 400;
}

.h2-twall-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h2-twall-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--line);
}

.h2-twall-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.h2-twall-author small {
  font-size: 11px;
  color: var(--muted);
}

/* Aggregate footer */
.h2-twall-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--bg-alt);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
}

.h2-twall-aggregate {
  display: flex;
  align-items: center;
  gap: 20px;
}

.h2-twall-score {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.h2-twall-stars-big {
  font-size: 20px;
  color: #C6952F;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.h2-twall-aggregate small {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================================================
   RESPONSIVE — New Home-2 Sections
   ========================================================================== */

@media (max-width: 1100px) {
  .h2-impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .h2-impact-card--featured {
    transform: none;
  }

  .h2-impact-card--featured:hover {
    transform: translateY(-6px);
  }

  .h2-app-inner {
    gap: 50px;
  }

  .h2-app-phone {
    width: 240px;
    transform: none;
  }

  .h2-app-mockup:hover .h2-app-phone {
    transform: translateY(-6px);
  }
}

@media (max-width: 900px) {
  .h2-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .h2-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }

  .h2-gallery-cell--tall {
    grid-row: 1 / 3;
  }

  .h2-gallery-cell--wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .h2-journal-grid {
    grid-template-columns: 1fr;
  }

  .h2-journal-featured-img {
    height: 240px;
  }

  .h2-app-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .h2-app-mockup {
    order: -1;
  }

  .h2-twall-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-twall-col:last-child {
    grid-column: 1 / 3;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .h2-twall-col:last-child .h2-twall-card {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .h2-impact {
    padding: 72px 0;
  }

  .h2-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .h2-impact-num {
    font-size: 36px;
  }

  .h2-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 200px 200px 200px 200px;
  }

  .h2-gallery-cell--tall,
  .h2-gallery-cell--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .h2-gallery-overlay {
    opacity: 1;
  }

  .h2-journal-card {
    flex-direction: column;
  }

  .h2-journal-card-img {
    flex: 0 0 160px;
    height: 160px;
    width: 100%;
  }

  .h2-app-phone {
    width: 220px;
  }

  .h2-app-badges {
    flex-direction: column;
  }

  .h2-twall-grid {
    grid-template-columns: 1fr;
  }

  .h2-twall-col--shift {
    padding-top: 0;
  }

  .h2-twall-col:last-child {
    grid-column: auto;
    flex-direction: column;
  }

  .h2-twall-col:last-child .h2-twall-card {
    flex: none;
  }

  .h2-twall-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .h2-twall-aggregate {
    justify-content: center;
  }

  .h2-journal-header {
    flex-direction: column;
    align-items: flex-start;
  }
}