/* ─── Tokens ──────────────────────────────────────── */
:root {
  --sand:        #f5ede0;
  --sand-dark:   #ede0cc;
  --cream:       #faf6f0;
  --brown-deep:  #2d1f0e;
  --brown-mid:   #5c3d1e;
  --brown-light: #a07040;
  --terracotta:  #c4622d;
  --terra-light: #e8845a;
  --sage:        #7a9e7e;
  --sage-dark:   #4a7450;
  --sage-light:  #b4d0b8;
  --gold:        #c8962a;
  --gold-light:  #e8be68;
  --white:       #ffffff;
  --text:        #2d1f0e;
  --text-mid:    #6b4e30;
  --text-light:  #9e7a52;

  --ff-display: 'Yeseva One', Georgia, serif;
  --ff-sans:    'Josefin Sans', sans-serif;
  --ff-serif:   'Lora', Georgia, serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t:      0.35s;
  --r:      8px;
  --shadow: 0 8px 32px rgba(45,31,14,0.1);
}

/* ─── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ──────────────────────────────────── */
h1 { font-family: var(--ff-display); font-size: clamp(3rem, 7vw, 6.5rem); line-height: 1.05; }
h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.1; }
h3 { font-family: var(--ff-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-family: var(--ff-serif); color: var(--text-mid); line-height: 1.85; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); display: block; margin-bottom: 0.8rem;
}

/* ─── Animations ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: 0.12s; }
.fade-in.d2 { transition-delay: 0.24s; }
.fade-in.d3 { transition-delay: 0.36s; }
.fade-in.d4 { transition-delay: 0.48s; }

/* ─── OM Float Animation ──────────────────────────── */
@keyframes floatOm {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(200,150,42,0.3); }
  50%       { text-shadow: 0 0 60px rgba(200,150,42,0.7); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes breathe {
  0%,100% { transform: scale(1); opacity:0.6; }
  50%     { transform: scale(1.08); opacity:1; }
}

/* ─── Navbar ──────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5%;
  background: transparent;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(16px);
  padding: 1rem 5%;
  box-shadow: 0 2px 20px rgba(45,31,14,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-om {
  font-family: var(--ff-display); font-size: 2rem;
  color: var(--terracotta);
  animation: pulseGlow 3s ease-in-out infinite;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-name { font-family: var(--ff-display); font-size: 1.3rem; color: var(--white); transition: color var(--t); }
.nav-sub  { font-family: var(--ff-sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color var(--t); }
.nav.scrolled .nav-name { color: var(--brown-deep); }
.nav.scrolled .nav-sub  { color: var(--text-light); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color var(--t); position: relative;
}
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--terracotta); transition: width var(--t); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--terracotta); }
.nav-book {
  background: var(--terracotta) !important; color: var(--white) !important;
  padding: 0.55rem 1.4rem !important; border-radius: 30px !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--brown-mid) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--t); }
.nav.scrolled .nav-toggle span { background: var(--brown-deep); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.95rem 2.4rem;
  font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 40px; border: none; cursor: pointer;
  transition: all var(--t);
}
.btn-terra  { background: var(--terracotta); color: var(--white); }
.btn-terra:hover  { background: var(--brown-mid); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(196,98,45,0.35); }
.btn-ghost  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover  { border-color: var(--white); background: rgba(255,255,255,0.12); }
.btn-sage   { background: var(--sage); color: var(--white); }
.btn-sage:hover   { background: var(--sage-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(122,158,126,0.35); }
.btn-dark   { background: var(--brown-deep); color: var(--white); }
.btn-dark:hover   { background: var(--terracotta); transform: translateY(-3px); }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1a0f05 0%, #2d1f0e 40%, #3d2912 70%, #1a2d1f 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-mandala {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: min(680px, 80vw); height: min(680px, 80vw);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.12;
}
.hero-mandala-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--gold-light);
}
.hero-mandala-ring:nth-child(1) { width:100%; height:100%; animation: rotateSlow 80s linear infinite; }
.hero-mandala-ring:nth-child(2) { width:78%; height:78%; animation: rotateSlow 60s linear infinite reverse; }
.hero-mandala-ring:nth-child(3) { width:58%; height:58%; animation: rotateSlow 40s linear infinite; }
.hero-mandala-ring:nth-child(4) { width:40%; height:40%; animation: rotateSlow 25s linear infinite reverse; }
.hero-mandala-om {
  font-family: var(--ff-display); font-size: clamp(14rem, 25vw, 28rem);
  color: var(--gold-light); opacity: 1;
  animation: floatOm 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}
.hero-petals {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,150,42,0.08) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; padding: 6% 5%; max-width: 720px; }
.hero-om-small {
  font-family: var(--ff-display); font-size: 2.5rem; color: var(--gold-light);
  display: block; margin-bottom: 0.5rem;
  animation: pulseGlow 3s ease-in-out infinite;
}
.hero-content h1 { color: var(--white); margin-bottom: 0.4rem; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); display: block; }
.hero-subtitle {
  font-family: var(--ff-serif); font-style: italic; font-size: 1.15rem;
  color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, rgba(200,150,42,0.6)); animation: breathe 2.5s ease-in-out infinite; }

/* ─── Stats ───────────────────────────────────────── */
.stats {
  background: var(--brown-deep);
  padding: 2.8rem 5%;
  position: relative; overflow: hidden;
}
.stats::before {
  content: 'ॐ'; position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-size: 8rem;
  color: rgba(200,150,42,0.06); user-select: none;
}
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-num  { font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-light); line-height: 1; }
.stat-label{ font-family: var(--ff-sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.3rem; }

/* ─── Sections ────────────────────────────────────── */
.section { padding: 6rem 5%; }
.section-inner { max-width: 1150px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 520px; margin: 0.8rem auto 0; }
.section-header p { margin-top: 0.8rem; max-width: 560px; }

/* ─── Om Divider ──────────────────────────────────── */
.om-divider {
  text-align: center; padding: 1.5rem 0;
  font-family: var(--ff-display); font-size: 1.5rem; color: var(--terracotta);
  opacity: 0.5; letter-spacing: 0.5em;
}

/* ─── Class Cards ─────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.card {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; border: 1px solid rgba(45,31,14,0.08);
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(45,31,14,0.14); }
.card-top {
  height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-top-om {
  position: absolute; font-family: var(--ff-display); font-size: 9rem;
  color: rgba(255,255,255,0.1); user-select: none; line-height: 1;
}
.card-top-icon { font-size: 3.5rem; position: relative; z-index: 1; }
.card-top-label {
  position: relative; z-index: 1; margin-top: 0.5rem;
  font-family: var(--ff-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.card-body { padding: 1.6rem; }
.card-tag {
  display: inline-block; font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); border: 1px solid var(--terracotta);
  padding: 0.2rem 0.7rem; border-radius: 20px; margin-bottom: 0.7rem;
}
.card h3 { color: var(--brown-deep); margin-bottom: 0.5rem; font-size: 1.3rem; }
.card p { font-size: 0.88rem; line-height: 1.75; }
.card-meta { display: flex; gap: 1.2rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--sand); }
.card-meta span { font-family: var(--ff-sans); font-size: 0.72rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }

/* ─── Testimonials ────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.testi-card {
  background: var(--sand); border-radius: var(--r); padding: 2rem;
  border: 1px solid var(--sand-dark); position: relative;
  transition: box-shadow var(--t);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-om {
  font-family: var(--ff-display); font-size: 3rem; color: var(--terracotta);
  opacity: 0.2; position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.8rem; }
.testi-text { font-family: var(--ff-serif); font-style: italic; font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.1rem; color: var(--white);
}
.testi-name { font-family: var(--ff-sans); font-size: 0.85rem; font-weight: 600; color: var(--brown-deep); }
.testi-role { font-size: 0.72rem; color: var(--text-light); }

/* ─── Page Hero ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #1a0f05 0%, #2d1f0e 50%, #1e2d1e 100%);
  padding: 10rem 5% 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-om {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--ff-display); font-size: clamp(10rem, 30vw, 22rem);
  color: rgba(200,150,42,0.06); user-select: none; pointer-events: none; line-height: 1;
  animation: breathe 5s ease-in-out infinite;
}
.page-hero .eyebrow { color: var(--gold-light); justify-content: center; display: block; }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.55); font-family: var(--ff-serif); max-width: 540px; margin: 1rem auto 0; position: relative; font-style: italic; }

/* ─── Schedule Table ──────────────────────────────── */
.schedule-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--sand-dark); }
table.sched { width: 100%; border-collapse: collapse; background: var(--white); }
table.sched th {
  font-family: var(--ff-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light);
  padding: 1rem 1.2rem; background: var(--sand); border-bottom: 2px solid var(--sand-dark);
  text-align: left; white-space: nowrap;
}
table.sched td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--sand); font-family: var(--ff-sans); font-size: 0.88rem; color: var(--text); }
table.sched tr:last-child td { border-bottom: none; }
table.sched tr:hover td { background: rgba(196,98,45,0.03); }
.level-pill {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 20px;
}
.lv-begin  { background: rgba(122,158,126,0.15); color: var(--sage-dark); }
.lv-all    { background: rgba(200,150,42,0.12); color: #9a6a10; }
.lv-inter  { background: rgba(196,98,45,0.12); color: var(--terracotta); }
.lv-adv    { background: rgba(45,31,14,0.1); color: var(--brown-mid); }

/* ─── Pricing ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.price-card {
  background: var(--white); border-radius: var(--r); padding: 2.5rem;
  border: 1.5px solid var(--sand-dark); text-align: center;
  transition: all var(--t); position: relative;
}
.price-card:hover { border-color: var(--terracotta); box-shadow: 0 16px 48px rgba(196,98,45,0.12); transform: translateY(-6px); }
.price-card.featured { background: var(--brown-deep); border-color: var(--gold); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: var(--white);
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.3rem 1.2rem; border-radius: 20px;
}
.price-card .price-om { font-family: var(--ff-display); font-size: 2rem; color: var(--terracotta); display: block; margin-bottom: 0.3rem; }
.price-card.featured .price-om { color: var(--gold-light); }
.price-name { font-family: var(--ff-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.price-card.featured .price-name { color: rgba(255,255,255,0.5); }
.price-amount { font-family: var(--ff-display); font-size: 3.8rem; color: var(--brown-deep); line-height: 1; }
.price-card.featured .price-amount { color: var(--gold-light); }
.price-period { font-family: var(--ff-serif); font-size: 0.85rem; color: var(--text-light); font-style: italic; margin-bottom: 1.5rem; }
.price-card.featured .price-period { color: rgba(255,255,255,0.4); }
.price-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; text-align: left; }
.price-features li { font-family: var(--ff-sans); font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.6rem; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.65); }
.price-features li::before { content: 'ॐ'; color: var(--terracotta); font-size: 0.9rem; flex-shrink: 0; line-height: 1.4; }
.price-card.featured .price-features li::before { color: var(--gold-light); }

/* ─── Contact ─────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.info-block { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-block-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r);
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--terracotta);
}
.info-block-lbl { font-family: var(--ff-sans); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }
.info-block-val { font-family: var(--ff-sans); font-size: 0.92rem; color: var(--text); margin-top: 0.15rem; font-weight: 500; }
.contact-form-box { background: var(--white); border-radius: var(--r); padding: 2.5rem; border: 1px solid var(--sand-dark); box-shadow: var(--shadow); }
.form-grp { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-grp label { font-family: var(--ff-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }
.form-grp input, .form-grp select, .form-grp textarea {
  padding: 0.8rem 1rem; border: 1.5px solid var(--sand-dark); border-radius: var(--r);
  font-family: var(--ff-sans); font-size: 0.9rem; color: var(--text); background: var(--cream);
  transition: border-color var(--t), background var(--t); width: 100%;
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  outline: none; border-color: var(--terracotta); background: var(--white);
}
.form-grp textarea { resize: vertical; min-height: 130px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer;
  font-family: var(--ff-sans); font-size: 0.95rem; font-weight: 600; color: var(--brown-deep);
}
.faq-q span { font-family: var(--ff-display); font-size: 1.6rem; color: var(--terracotta); transition: transform var(--t); user-select: none; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.2rem; }
.faq-a p { font-size: 0.9rem; }
.faq-item.open .faq-a { display: block; }

/* ─── CTA Banner ──────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--sage-dark) 100%);
  padding: 6rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band-om {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--ff-display); font-size: clamp(12rem, 22vw, 20rem);
  color: rgba(255,255,255,0.04); user-select: none; pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}
.cta-band h2 { color: var(--white); position: relative; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.6); font-family: var(--ff-serif); font-style: italic; max-width: 480px; margin: 0 auto 2.2rem; position: relative; }
.cta-band .btn { position: relative; }

/* ─── Dark Section ────────────────────────────────── */
.section-dark { background: var(--brown-deep); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.5); }
.section-dark .eyebrow { color: var(--gold-light); }

/* ─── Sand Section ────────────────────────────────── */
.section-sand { background: var(--sand); }

/* ─── Split layout ────────────────────────────────── */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-image-box {
  aspect-ratio: 3/4; border-radius: var(--r);
  background: var(--brown-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split-image-box-om {
  font-family: var(--ff-display); font-size: 14rem; color: rgba(255,255,255,0.08);
  position: absolute; animation: floatOm 7s ease-in-out infinite;
}
.split-image-box-icon { font-size: 5rem; position: relative; z-index: 1; }

/* ─── Footer ──────────────────────────────────────── */
.footer {
  background: var(--brown-deep); padding: 5rem 5% 2rem;
  position: relative; overflow: hidden;
}
.footer-om-bg {
  position: absolute; bottom: -2rem; right: -2rem;
  font-family: var(--ff-display); font-size: 22rem;
  color: rgba(200,150,42,0.04); user-select: none; pointer-events: none; line-height: 1;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-om-icon { font-family: var(--ff-display); font-size: 2.2rem; color: var(--gold-light); animation: pulseGlow 3s ease-in-out infinite; }
.footer-name { font-family: var(--ff-display); font-size: 1.4rem; color: var(--white); }
.footer-tagline { font-family: var(--ff-sans); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-desc { font-family: var(--ff-serif); font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 1.4rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: rgba(255,255,255,0.35); transition: color var(--t); }
.footer-socials a:hover { color: var(--gold-light); }
.footer-col h4 { font-family: var(--ff-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-family: var(--ff-sans); font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.7rem; transition: color var(--t); }
.footer-col a:hover { color: var(--gold-light); }
.footer-hours { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; font-family: var(--ff-sans); font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; text-align: center; position: relative; }
.footer-divider-om { font-family: var(--ff-display); font-size: 1.2rem; color: rgba(200,150,42,0.35); letter-spacing: 0.5em; margin-bottom: 1rem; }
.footer-bottom p { font-family: var(--ff-sans); font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .cards-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .split-layout, .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-top: 1px solid var(--sand-dark);
    padding: 1rem 5%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--sand); color: var(--text-mid) !important; }
  .nav-links a.active, .nav-links a:hover { color: var(--terracotta) !important; }
  .nav-book { margin-top: 0.5rem; text-align: center; display: block; }
  .form-row2 { grid-template-columns: 1fr; }
  .hero-mandala { opacity: 0.07; }
}
@media (max-width: 600px) {
  .cards-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { transition: none; opacity: 1; transform: none; }
  .hero-mandala-ring, .hero-mandala-om, .footer-om-icon, .nav-om, .cta-band-om, .page-hero-om { animation: none; }
}
