/* =====================================================
   PURE AWARENESS — Tai Chi & Qigong
   Design System v4.0 — Orange & White
===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap");

/* ===== TOKENS ===== */
:root {
  /* Dark warm-brown tones — replaces all navy */
  --dark-1: #180c08;
  --dark-2: #20100a;
  --dark-3: #2c1810;
  --dark-4: #3c2218;

  --sage: #7b6248;
  --sage-lt: #9a826a;
  --gold: #c75421;
  --gold-lt: #e06a38;
  --gold-pale: #f5c8a8;
  --cream: #f8f4ec;
  --white: #faf8f4;
  --muted: #9b7060;
  --on-dark: #f0e4d8;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  color: var(--on-dark);
  background: var(--dark-1);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== AUDIO TOGGLE BUTTON ===== */
.audio-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(199, 84, 33, 0.5);
  background: rgba(24, 12, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-lt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.2s var(--ease);
}
.audio-toggle:hover {
  background: rgba(199, 84, 33, 0.2);
  border-color: var(--gold);
  transform: scale(1.08);
}
.audio-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
  pointer-events: none;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(24, 12, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(199, 84, 33, 0.3);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--on-dark);
  line-height: 1.6;
  opacity: 0.85;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  border: none;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    transform 0.15s var(--ease);
}
.cookie-btn-accept:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}
.cookie-btn-decline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.53rem 1.2rem;
  border-radius: 2px;
  border: 1px solid rgba(199, 84, 33, 0.45);
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  opacity: 0.75;
  transition:
    border-color 0.2s var(--ease),
    opacity 0.2s var(--ease),
    transform 0.15s var(--ease);
}
.cookie-btn-decline:hover {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.75rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(24, 12, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(199, 84, 33, 0.18);
  transition:
    background 0.5s var(--ease),
    padding 0.4s var(--ease),
    border-color 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(24, 12, 8, 0.98);
  padding: 1.25rem 5%;
  border-bottom-color: rgba(199, 84, 33, 0.3);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  line-height: 1.2;
}

.nav-logo-video {
  height: 58px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .sub {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .nav-logo-video {
    height: 40px;
  }
  .nav-logo {
    font-size: 1rem;
    gap: 0.75rem;
  }
  .nav-logo .sub {
    font-size: 0.55rem;
  }
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.75);
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-menu a:hover {
  color: var(--gold);
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a.active {
  color: var(--gold);
}
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark-1) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
  transition:
    background 0.3s,
    transform 0.2s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transition:
    color 0.3s,
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
  transform: translateX(30px);
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.open a:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu.open a:nth-child(6) {
  transition-delay: 0.35s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 84, 33, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248, 244, 236, 0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-1);
  color: var(--cream);
  border: 1px solid rgba(199, 84, 33, 0.25);
}
.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== LAYOUT ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.container-wide {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ken Burns slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.6s ease-in-out,
    transform 8s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24, 12, 8, 0.78) 0%,
    rgba(24, 12, 8, 0.45) 35%,
    rgba(24, 12, 8, 0.55) 60%,
    rgba(24, 12, 8, 0.88) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1060px;
  padding: 9rem 2rem 0;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-ornament-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero-ornament svg {
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.82);
  max-width: 680px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
  padding-bottom: 4rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ===== PHILOSOPHY STRIP ===== */
.philosophy-strip {
  background: var(--cream);
  padding: 7rem 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5rem;
  align-items: center;
}

.strip-left {
  border-right: 1px solid rgba(199, 84, 33, 0.2);
  padding-right: 5rem;
}

.strip-number {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  margin-bottom: -1rem;
}

.strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.strip-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark-2);
  line-height: 1.15;
}

.strip-right p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: #2c2418;
  margin-bottom: 1.25rem;
}

.strip-right p:last-child {
  margin-bottom: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.section-title.dark {
  color: var(--dark-2);
}
.section-title.dark em {
  color: var(--gold);
}
.divider-gold {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ===== OFFERINGS ===== */
.offerings-section {
  background: var(--dark-2);
  padding: 7rem 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.offering-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.offering-card:hover img {
  transform: scale(1.07);
}

.offering-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 12, 8, 0.96) 0%,
    rgba(24, 12, 8, 0.35) 55%,
    rgba(24, 12, 8, 0.1) 100%
  );
}

.offering-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
}

.offering-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.offering-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.offering-desc {
  font-size: 0.85rem;
  color: rgba(248, 244, 236, 0.7);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.55s var(--ease),
    opacity 0.4s;
  opacity: 0;
}

.offering-card:hover .offering-desc {
  max-height: 120px;
  opacity: 1;
}

.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s 0.1s,
    transform 0.35s 0.1s;
}

.offering-card:hover .offering-link {
  opacity: 1;
  transform: translateY(0);
}

.arrow-right {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.arrow-right::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.offering-card:hover .arrow-right {
  width: 30px;
}

/* ===== QUOTE BAND ===== */
.quote-band {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.quote-band:hover .quote-band-bg img {
  transform: scale(1);
}

.quote-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 12, 8, 0.72);
  z-index: 1;
}

.quote-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== INSTRUCTOR SPLIT ===== */
.instructor-section {
  background: var(--cream);
  padding: 8rem 0;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.instructor-image-wrap {
  position: relative;
}

.instructor-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.instructor-frame {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 72%;
  height: 80%;
  border: 1.5px solid var(--gold);
  opacity: 0.6;
  z-index: -1;
}

.instructor-text .eyebrow {
  text-align: left;
}

.instructor-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--dark-2);
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem;
}

.instructor-body {
  font-size: 0.93rem;
  line-height: 2.1;
  color: #2c2418;
  margin-bottom: 1.25rem;
}

.instructor-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(199, 84, 33, 0.2);
  border-bottom: 1px solid rgba(199, 84, 33, 0.2);
  margin-bottom: 2.5rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5048;
  margin-top: 0.2rem;
}

/* ===== GALLERY MOSAIC ===== */
.gallery-section {
  background: var(--dark-1);
  padding: 7rem 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.gallery-mosaic {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.g-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* Row 1 — full-width outdoor shot, same height as hall images */
.g-item-top {
  width: 100%;
  aspect-ratio: 16 / 7;
}

/* Row 2 — 2×2 grid of hall images */
.gallery-hall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

/* Hall images are wide-landscape — use a consistent comfortable ratio */
.g-item-hall {
  aspect-ratio: 16 / 7;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
  display: block;
}
.g-item:hover img {
  transform: scale(1.05);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 12, 8, 0.5);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-item:hover .g-overlay {
  opacity: 1;
}

.g-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

/* ===== VIDEOS ===== */
.videos-section {
  background: #fff;
  padding: 7rem 0;
}
.videos-section .eyebrow {
  color: var(--gold);
}
.videos-section .section-title {
  color: var(--dark-2);
}
.videos-section .section-title em {
  color: var(--gold);
}
.videos-section .divider-gold {
  background: var(--gold);
}
.videos-section .video-item {
  border-color: rgba(44, 24, 16, 0.12);
}
.videos-section .video-item:hover {
  border-color: var(--gold);
}
.videos-section .btn-outline {
  color: var(--dark-2);
  border-color: rgba(44, 24, 16, 0.3);
}
.videos-section .btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.video-item {
  border: 1px solid rgba(199, 84, 33, 0.15);
  border-radius: 2px;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.4s;
}
.video-item:hover {
  border-color: rgba(199, 84, 33, 0.45);
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.video-item:hover .video-thumb img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 12, 8, 0.42);
  transition: background 0.4s;
}
.video-item:hover .video-overlay {
  background: rgba(24, 12, 8, 0.2);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-play-btn span {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  padding-left: 4px;
  background: rgba(24, 12, 8, 0.55);
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.video-item:hover .video-play-btn span {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

/* live iframe replaces the thumbnail on click */
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 10;
}

.videos-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .videos-section {
    padding: 4rem 0;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fff;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.testimonials-section .eyebrow {
  color: var(--gold);
}
.testimonials-section .section-title {
  color: var(--dark-2);
}
.testimonials-section .section-title em {
  color: var(--gold);
}

/* --- marquee wrapper --- */
.testi-marquee-outer {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  /* fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

/* pause on hover */
.testi-marquee-outer:hover .testi-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testi-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

/* --- individual cards --- */
.testi-marquee-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid rgba(199, 84, 33, 0.15);
  padding: 2.5rem;
  border-radius: 2px;
  transition:
    border-color 0.4s,
    transform 0.4s,
    box-shadow 0.4s;
}
.testi-marquee-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(199, 84, 33, 0.12);
}

/* --- shared card internals --- */
.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(199, 84, 33, 0.15);
  padding: 2.5rem;
  border-radius: 2px;
  transition:
    border-color 0.4s,
    transform 0.4s,
    box-shadow 0.4s;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(199, 84, 33, 0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark-3);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(199, 84, 33, 0.12);
  border: 1px solid rgba(199, 84, 33, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-2);
  line-height: 1.2;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--sage);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .testi-marquee-card {
    width: 280px;
  }
  .testi-marquee-track {
    gap: 1.25rem;
  }
}

/* ===== CTA BANNER ===== */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 12, 8, 0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta-body {
  font-size: 0.93rem;
  line-height: 2;
  color: rgba(248, 244, 236, 0.7);
  margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  border-top: 1px solid rgba(199, 84, 33, 0.18);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
  color: var(--dark-2);
}

.nav-logo .sub {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--sage);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(44, 24, 16, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--sage);
  border-radius: 2px;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.footer-col ul li + li {
  margin-top: 0.75rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--sage);
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--dark-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 0.78rem;
  color: rgba(123, 98, 72, 0.7);
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 12, 8, 0.98) 0%,
    rgba(24, 12, 8, 0.5) 50%,
    rgba(24, 12, 8, 0.2) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 0;
}

.breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.breadcrumb a {
  opacity: 0.65;
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 1;
}
.breadcrumb .sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

/* ===== ABOUT: BIO SECTION ===== */
.bio-section {
  background: var(--dark-2);
  padding: 8rem 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}

.bio-image-wrap img {
  width: 100%;
  object-fit: cover;
  position: sticky;
  top: 110px;
}

.bio-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(199, 84, 33, 0.12);
  border: 1px solid rgba(199, 84, 33, 0.3);
  color: var(--gold);
  padding: 0.4rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.bio-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.bio-body {
  font-size: 0.95rem;
  line-height: 2.15;
  color: rgba(240, 228, 216, 0.82);
  margin-bottom: 1.4rem;
}

.bio-pull {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
  margin: 2.75rem 0;
}

/* ===== LINEAGE ===== */
.lineage-section {
  background: var(--dark-3);
  padding: 7rem 0;
}

.lineage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 4rem;
}

.lineage-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.lineage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}
.lineage-item:hover img {
  transform: scale(1.05);
}

.lineage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 12, 8, 0.95) 0%,
    rgba(24, 12, 8, 0.3) 55%,
    transparent 100%
  );
}

.lineage-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
}

.lineage-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(199, 84, 33, 0.25);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.lineage-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.lineage-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.lineage-desc {
  font-size: 0.875rem;
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.75;
  max-width: 420px;
}

/* ===== VALUES / PRINCIPLES ===== */
.values-section {
  background: var(--dark-2);
  padding: 7rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4.5rem;
}

.value-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(199, 84, 33, 0.1);
  border-radius: 2px;
  transition:
    border-color 0.4s,
    transform 0.4s;
}
.value-item:hover {
  border-color: rgba(199, 84, 33, 0.35);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 84, 33, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.875rem;
  color: rgba(240, 228, 216, 0.6);
  line-height: 1.85;
}

/* ===== CLASSES PAGE ===== */
.class-block {
  padding: 7rem 0;
}

.class-block:nth-child(even) {
  background: var(--dark-3);
}

.class-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.class-grid.reversed {
  direction: rtl;
}
.class-grid.reversed > * {
  direction: ltr;
}

.class-image-wrap {
  position: relative;
  overflow: hidden;
}
.class-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.class-image-wrap:hover img {
  transform: scale(1.04);
}

.class-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

.class-text .eyebrow {
  text-align: left;
}

.class-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem;
}

.class-body {
  font-size: 0.93rem;
  line-height: 2.1;
  color: rgba(240, 228, 216, 0.75);
  margin-bottom: 2rem;
}

.benefits-list {
  margin-bottom: 2.5rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(240, 228, 216, 0.78);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(199, 84, 33, 0.1);
}
.benefits-list li:first-child {
  border-top: 1px solid rgba(199, 84, 33, 0.1);
}

.benefit-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
  background: var(--dark-3);
  padding: 7rem 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.schedule-card {
  background: var(--dark-4);
  padding: 3rem 2.5rem;
  border-top: 2px solid transparent;
  transition: border-color 0.4s;
}
.schedule-card:hover {
  border-top-color: var(--gold);
}
.schedule-card--empty {
  opacity: 0.45;
}
.schedule-card--empty:hover {
  border-top-color: transparent;
}

.schedule-day {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.schedule-time {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.schedule-sessions {
  display: flex;
  flex-direction: column;
}

.schedule-session {
  padding: 0.75rem 0;
}

.schedule-session + .schedule-session {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.schedule-session:first-child {
  padding-top: 0;
}

.schedule-time-sm {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.schedule-class {
  font-size: 0.88rem;
  color: var(--on-dark);
  margin-bottom: 0.2rem;
}

.schedule-level {
  font-size: 0.78rem;
  color: var(--muted);
}

.schedule-dash {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--muted);
  line-height: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: #fff;
  padding: 8rem 0;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-section .contact-intro {
  color: var(--gold);
}

.contact-section .form-label {
  color: var(--dark-3);
}

.contact-section .form-input,
.contact-section .form-textarea,
.contact-section .form-select {
  background: #fff;
  border: 1.5px solid rgba(44, 24, 16, 0.18);
  color: var(--dark-1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.contact-section .form-input:focus,
.contact-section .form-textarea:focus,
.contact-section .form-select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(199, 84, 33, 0.1);
}
.contact-section .form-input::placeholder,
.contact-section .form-textarea::placeholder {
  color: rgba(44, 24, 16, 0.3);
}

.contact-section .info-card {
  background: var(--cream);
  border-color: rgba(199, 84, 33, 0.18);
}
.contact-section .info-card-label {
  color: var(--gold);
}
.contact-section .info-card-value {
  color: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 6rem;
  align-items: start;
}

.contact-intro {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 84, 33, 0.2);
  color: var(--cream);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240, 228, 216, 0.3);
}
.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 84, 33, 0.12);
  border-radius: 2px;
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--gold);
}

.info-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.info-card-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--dark-3);
  padding: 7rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 4rem;
  margin-top: 4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(199, 84, 33, 0.12);
  padding-bottom: 2rem;
}

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.faq-a {
  font-size: 0.875rem;
  line-height: 1.9;
  color: rgba(240, 228, 216, 0.65);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.4;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal-left.in-view {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .offering-card {
    aspect-ratio: 4/3;
  }
  /* Deepen gradient so text is always readable */
  .offering-grad {
    background: linear-gradient(
      to top,
      rgba(24, 12, 8, 0.98) 0%,
      rgba(24, 12, 8, 0.7) 45%,
      rgba(24, 12, 8, 0.15) 100%
    );
  }
  /* Always show desc and link — no hover on touch */
  .offering-desc {
    max-height: 200px;
    opacity: 1;
  }
  .offering-link {
    opacity: 1;
    transform: translateY(0);
  }
  .offering-body {
    padding: 1.75rem;
  }
  .offering-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lineage-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .strip-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(199, 84, 33, 0.2);
    padding-bottom: 2rem;
  }

  .instructor-grid,
  .bio-grid,
  .class-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .class-grid.reversed {
    direction: ltr;
  }

  .gallery-hall-grid {
    grid-template-columns: 1fr;
  }
  .g-item-hall {
    aspect-ratio: 16 / 7;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .instructor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE FRIENDLINESS IMPROVEMENTS ===== */
@media (max-width: 768px) {
  /* Prevent ALL horizontal overflow */
  body {
    overflow-x: hidden;
  }
  section,
  .philosophy-strip,
  .offerings-section,
  .class-block,
  .schedule-section,
  .faq-section,
  .contact-section,
  .page-hero,
  .hero,
  .quote-band,
  .cta-band,
  .gallery-section,
  .footer {
    overflow: hidden;
  }

  /* Kill horizontal reveal translations — they cause scroll on narrow screens */
  .reveal-left {
    transform: translateY(20px);
  }
  .reveal-right {
    transform: translateY(20px);
  }
  .reveal-left.in-view,
  .reveal-right.in-view {
    transform: none;
  }

  /* ----- NAVIGATION ----- */
  .nav {
    padding: 1rem 5%;
  }
  .nav.scrolled {
    padding: 0.75rem 5%;
  }

  .nav-logo {
    font-size: 0.85rem;
    min-height: 44px;
    justify-content: center;
  }
  .nav-logo .sub {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
  }

  .hamburger {
    padding: 10px;
    margin-right: -10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  /* ----- HERO ----- */
  .hero-content {
    padding: 0 1.25rem;
  }
  .hero-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* ----- SECTION PADDING ----- */
  .philosophy-strip .container,
  .offerings-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .class-block {
    padding: 4rem 0 !important;
  }
  .schedule-section,
  .faq-section {
    padding: 4rem 0;
  }
  .bio-section,
  .contact-section {
    padding: 4rem 0 !important;
  }
  .gallery-section {
    padding: 4rem 0;
  }
  .cta-band {
    padding: 4rem 0;
  }

  /* ----- BUTTONS ----- */
  .btn {
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    font-size: 0.7rem;
  }

  /* ----- CLASS IMAGES: reduce fixed height to fit mobile ----- */
  .class-image-wrap img {
    height: 260px;
  }

  /* ----- INSTRUCTOR FRAME: hide decorative offset frame ----- */
  .instructor-frame {
    display: none;
  }

  /* ----- BIO IMAGE: unstick on mobile ----- */
  .bio-image-wrap img {
    position: static;
  }

  /* ----- OFFERING LINK tap target ----- */
  .offering-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  /* ----- BREADCRUMB tap target ----- */
  .breadcrumb a {
    display: inline-block;
    padding: 0.75rem 0;
    min-height: 44px;
  }

  /* ----- FOOTER ----- */
  .footer-brand .nav-logo {
    min-height: 44px;
    justify-content: flex-start;
  }
  .footer-col ul li + li {
    margin-top: 0;
  }
  .footer-col ul li a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.95rem;
  }

  /* ----- SOCIAL BUTTONS ----- */
  .social-btn {
    width: 44px;
    height: 44px;
  }

  /* ----- CONTACT LINKS tap target ----- */
  .info-card-value a {
    display: inline-block;
    padding: 0.4rem 0;
    min-height: 44px;
    line-height: 2;
  }

  /* ----- FORM ----- */
  .form-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
  }
  /* Prevent iOS auto-zoom on focus (requires font-size ≥ 16px) */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 1rem;
    min-height: 48px;
  }

  /* ----- SCHEDULE ----- */
  .schedule-time-sm {
    font-size: 1.05rem;
  }
  .schedule-card {
    padding: 2rem 1.5rem;
  }

  /* ----- PAGE HERO: reduce height on mobile ----- */
  .page-hero {
    min-height: 220px;
  }
  .page-hero-content {
    padding: 2.5rem 0;
  }
  .page-hero-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
}

/* =====================================================
   REVIEWS PAGE
===================================================== */

/* --- hero extras --- */
.reviews-page-hero {
  height: 72vh;
}

.reviews-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.75);
  margin-top: 1.5rem;
  letter-spacing: 0.06em;
}

/* floating particles behind the page-hero text */
.reviews-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.reviews-hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: heroParticle 6s ease-in-out infinite;
}
.reviews-hero-particles span:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 15%;
  top: 30%;
  animation-delay: 0s;
  animation-duration: 7s;
}
.reviews-hero-particles span:nth-child(2) {
  width: 3px;
  height: 3px;
  left: 40%;
  top: 60%;
  animation-delay: 1.2s;
  animation-duration: 8s;
}
.reviews-hero-particles span:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 65%;
  top: 25%;
  animation-delay: 0.6s;
  animation-duration: 6s;
}
.reviews-hero-particles span:nth-child(4) {
  width: 3px;
  height: 3px;
  left: 80%;
  top: 55%;
  animation-delay: 2s;
  animation-duration: 9s;
}
.reviews-hero-particles span:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 25%;
  top: 75%;
  animation-delay: 3s;
  animation-duration: 7s;
}
.reviews-hero-particles span:nth-child(6) {
  width: 2px;
  height: 2px;
  left: 55%;
  top: 45%;
  animation-delay: 1.8s;
  animation-duration: 10s;
}

@keyframes heroParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(1);
  }
}

/* --- rating strip --- */
.rating-strip {
  background: var(--dark-2);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(199, 84, 33, 0.15);
}

.rating-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.rating-block {
  text-align: center;
  padding: 1rem 4rem;
  flex: 1;
  min-width: 150px;
}

.rating-divider-v {
  width: 1px;
  height: 64px;
  background: rgba(199, 84, 33, 0.2);
  flex-shrink: 0;
}

.rating-stars-lg {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.rating-big-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.rating-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- spotlight section --- */
.reviews-spotlight {
  background: var(--cream);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-spotlight-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(199, 84, 33, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.reviews-spotlight-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.reviews-spotlight-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.reviews-spotlight-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.reviews-spotlight-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.reviews-spotlight-quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.18;
  display: block;
  margin-bottom: 2rem;
}

.reviews-spotlight-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--dark-2);
  line-height: 1.65;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.reviews-spotlight-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
}

.reviews-spotlight-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.reviews-spotlight-avatar {
  width: 52px !important;
  height: 52px !important;
  font-size: 1.2rem !important;
}

.reviews-spotlight-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-2);
  text-align: left;
}

.reviews-spotlight-role {
  font-size: 0.78rem;
  color: var(--sage);
  margin-top: 0.2rem;
  text-align: left;
}

/* --- all reviews grid (bento) --- */
.all-reviews-section {
  background: #fff;
  padding: 8rem 0;
}

.all-reviews-section .eyebrow {
  color: var(--gold);
}

.all-reviews-section .section-title {
  color: var(--dark-2);
}

.all-reviews-section .divider-gold {
  background: var(--gold);
}

.reviews-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

/* Review card base */
.review-card {
  background: var(--cream);
  border: 1px solid rgba(199, 84, 33, 0.14);
  border-radius: 4px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.45s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.review-card:hover {
  border-color: rgba(199, 84, 33, 0.55);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(199, 84, 33, 0.1);
}

/* accent line that slides in on hover */
.review-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transition: width 0.55s var(--ease);
}
.review-card:hover .review-card-accent {
  width: 100%;
}

.review-card .testimonial-text {
  color: var(--dark-3);
}
.review-card .testimonial-name {
  color: var(--dark-2);
}
.review-card .testimonial-role {
  color: var(--sage);
}
.review-card .testimonial-avatar {
  background: rgba(199, 84, 33, 0.1);
  border-color: rgba(199, 84, 33, 0.35);
}

/* wide card = spans 2 columns */
.review-card-wide {
  grid-column: span 2;
}

/* FULL WIDTH dark featured card */
.review-card-full {
  grid-column: span 2;
  background: var(--dark-3);
  padding: 0;
  border-color: rgba(199, 84, 33, 0.25);
  overflow: hidden;
}
.review-card-full:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 84, 33, 0.6);
}

.review-card-full-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(199, 84, 33, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(199, 84, 33, 0.04) 0%,
      transparent 65%
    );
  pointer-events: none;
}

.review-card-full-inner {
  position: relative;
  z-index: 1;
  padding: 4rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.review-card-full-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 1.75rem;
}

.review-card-full-stars {
  color: var(--gold) !important;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.75rem;
}

.review-card-full-text {
  font-size: clamp(1.1rem, 2vw, 1.45rem) !important;
  color: rgba(240, 228, 216, 0.9) !important;
  margin-bottom: 2.5rem;
}

.review-card-full-avatar {
  width: 52px !important;
  height: 52px !important;
  font-size: 1.2rem !important;
}

.review-card-full-name {
  font-size: 0.95rem !important;
  color: var(--cream) !important;
}

.review-card-full-role {
  color: var(--muted) !important;
  font-size: 0.78rem;
}

.review-card-full .testimonial-author {
  justify-content: center;
}

/* CTA card */
.review-card-cta {
  background: transparent;
  border: 1px solid rgba(199, 84, 33, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.75rem;
  transition:
    border-color 0.45s,
    transform 0.45s,
    background 0.45s;
}
.review-card-cta:hover {
  background: rgba(199, 84, 33, 0.04);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.review-cta-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(199, 84, 33, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    border-color 0.35s,
    background 0.35s;
}
.review-card-cta:hover .review-cta-icon {
  background: rgba(199, 84, 33, 0.12);
  border-color: var(--gold);
}

.review-cta-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark-2);
  line-height: 1.2;
}

.review-cta-sub {
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.review-cta-btn {
  align-self: flex-start;
}

/* --- scroll-triggered slide-in animations per card --- */

/* Default: all cards start hidden */
.reviews-bento .review-card {
  opacity: 0;
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

/* Card 1 (wide — Jean S.) — slides from left */
.reviews-bento .review-card:nth-child(1) {
  transform: translateX(-60px);
  transition-delay: 0s;
}
/* Card 2 (Hilary) — slides from right */
.reviews-bento .review-card:nth-child(2) {
  transform: translateX(60px);
  transition-delay: 0.1s;
}
/* Card 3 (Maggie) — slides from left */
.reviews-bento .review-card:nth-child(3) {
  transform: translateX(-60px);
  transition-delay: 0.15s;
}
/* Card 4 (Sandra wide) — slides from right */
.reviews-bento .review-card:nth-child(4) {
  transform: translateX(60px);
  transition-delay: 0s;
}
/* Card 5 (Mitzi full-width) — rises from bottom */
.reviews-bento .review-card:nth-child(5) {
  transform: translateY(48px);
  transition-delay: 0s;
}
/* Card 6 (Wendy) — slides from left */
.reviews-bento .review-card:nth-child(6) {
  transform: translateX(-60px);
  transition-delay: 0.05s;
}
/* Card 7 (Pauline) — slides from right */
.reviews-bento .review-card:nth-child(7) {
  transform: translateX(60px);
  transition-delay: 0.1s;
}
/* Card 8 (CTA) — rises from bottom */
.reviews-bento .review-card:nth-child(8) {
  transform: translateY(40px);
  transition-delay: 0.15s;
}

/* All cards land to natural position */
.reviews-bento .review-card.in-view {
  opacity: 1;
  transform: translate(0);
}

/* Hover lift only after card has arrived */
.reviews-bento .review-card.in-view:hover {
  transform: translateY(-5px);
}

/* --- responsive reviews page --- */
@media (max-width: 768px) {
  .reviews-bento {
    grid-template-columns: 1fr;
  }
  .review-card-wide,
  .review-card-full {
    grid-column: span 1;
  }
  .review-card-full-inner {
    padding: 2.5rem 1.5rem;
  }
  .rating-block {
    padding: 1rem 2rem;
  }
  .rating-divider-v {
    display: none;
  }
  .rating-strip-inner {
    gap: 1rem;
  }
  .reviews-spotlight {
    padding: 5rem 0;
  }
}
