/* ============================================================
   YOGAL — Design System
   Editorial premium, warm neutrals + bronze accent
   ============================================================ */

:root {
  /* Palette — derived from the new logo */
  --ink:        #16110b;          /* deep warm charcoal */
  --ink-2:      #221a12;          /* slightly lifted */
  --ink-3:      #2e251a;          /* tertiary panel */
  --paper:      #f6f1e8;          /* warm cream — primary light bg */
  --paper-2:    #ece2cf;          /* sand */
  --paper-3:    #ddd0b8;          /* deeper sand */
  --bronze:     #b8915a;          /* primary accent */
  --bronze-2:   #d4ad6f;          /* warm gold highlight */
  --bronze-3:   #8b6a3d;          /* deeper bronze */
  --line-dark:  rgba(246,241,232,0.14);
  --line-light: rgba(22,17,11,0.12);
  --muted-dark: rgba(246,241,232,0.62);
  --muted-light:rgba(22,17,11,0.58);

  /* Type — Inter ultra-thin sans + EB Garamond italic serif accent */
  --font-display: 'EB Garamond', 'Iowan Old Style', 'Source Serif Pro', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, ui-sans-serif, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 56px;
  --space-6: 80px;
  --space-7: 112px;
  --space-8: 160px;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========== Type ========== */

.display, h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  color: inherit;
  text-wrap: balance;
}

h1, .h1 {
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h2, .h2 {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.eyebrow--ink { color: var(--ink); opacity: 0.55; }

.lede {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.32;
  font-weight: 300;
  letter-spacing: -0.005em;
}

.body { font-size: 17px; line-height: 1.65; font-weight: 300; }
.body-sm { font-size: 14px; line-height: 1.55; font-weight: 400; }

.italic-accent,
.display em,
h1 em, h2 em, h3 em,
em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
em { color: inherit; }
.italic-accent,
.display em,
h1 em, h2 em, h3 em { color: var(--bronze-2); }

/* ========== Layout ========== */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-wide { max-width: 1640px; }

section { position: relative; }

.section-pad { padding: var(--space-7) 0; }
.section-pad-sm { padding: var(--space-6) 0; }

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  background: transparent;
}

.btn-primary {
  background: var(--bronze);
  color: #fff;
  border-color: var(--bronze);
}
.btn-primary:hover {
  background: var(--bronze-3);
  border-color: var(--bronze-3);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--paper);
  border-color: var(--line-dark);
}
.btn-ghost:hover {
  border-color: var(--bronze-2);
  color: var(--bronze-2);
}

.btn-ghost--ink {
  color: var(--ink);
  border-color: var(--line-light);
}
.btn-ghost--ink:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.btn-arrow::after {
  content: "→";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s ease, opacity 0.3s ease;
}
.link-arrow:hover { gap: 18px; }
.link-arrow::after { content: "→"; font-size: 14px; }

/* ========== Nav ========== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  transition: all 0.4s ease;
  mix-blend-mode: normal;
}

.nav.is-scrolled {
  background: rgba(22, 17, 11, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--line-dark);
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.62em;
  color: var(--paper);
  text-decoration: none;
  padding-left: 0.62em;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  grid-column: 2;
  gap: 36px;
  list-style: none;
  white-space: nowrap;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.3s ease, color 0.3s ease;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--bronze-2); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 12px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--paper);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff;
}

/* ========== Hero ========== */

.hero {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px var(--gutter) 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  filter: saturate(0.70) sepia(0.18) brightness(0.72) contrast(1.10);
  will-change: opacity, transform;
}
/* Video slides behave identically to image slides — drop in a
   <video class="bg-slide" muted autoplay loop playsinline src="..."></video>
   anywhere a .bg-slide image lives. Same crossfade + ken-burns logic. */
video.bg-slide,
video.bg-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* First slide visible by default in case JS hasn't run yet. */
.bg-slide:first-child {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 0%, rgba(16,12,7,0.55) 75%, rgba(16,12,7,0.92) 100%),
    linear-gradient(180deg, rgba(22,17,11,0.72) 0%, rgba(22,17,11,0.50) 35%, rgba(22,17,11,0.62) 65%, rgba(12,9,5,0.95) 100%),
    linear-gradient(90deg, rgba(22,17,11,0.55) 0%, rgba(22,17,11,0.25) 40%, rgba(22,17,11,0.35) 100%);
  pointer-events: none;
}

/* Warm bronze color-grade laid over the photo */
.hero-warm-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
    rgba(184,145,90,0.42) 0%,
    rgba(139,106,61,0.28) 50%,
    rgba(46,37,26,0.18) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 50% 60% at 80% 18%, rgba(255,210,150,0.20), transparent 65%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(184,145,90,0.10), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 65% at 78% 22%, rgba(255,210,150,0.14), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-mandala {
  position: absolute;
  right: -8%;
  top: 8%;
  width: 80vh;
  height: 80vh;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 3;
  animation: slowSpin 180s linear infinite;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

.hero-lightbeam {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 60%;
  height: 120%;
  background: linear-gradient(168deg,
    rgba(255,224,170,0.0) 0%,
    rgba(255,224,170,0.05) 30%,
    rgba(255,200,130,0.10) 50%,
    rgba(212,173,111,0.03) 70%,
    transparent 100%);
  transform: rotate(8deg);
  filter: blur(40px);
  pointer-events: none;
  z-index: 3;
  animation: beamShift 18s ease-in-out infinite alternate;
}

/* ===== Hero dust particles — slow floating motes ===== */
.hero-dust {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.hero-dust span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(255,225,170,0.9) 0%, rgba(255,225,170,0) 70%);
  border-radius: 50%;
  bottom: -10px;
  filter: blur(0.5px);
  opacity: 0;
  animation: dust-rise 22s linear infinite;
}
.hero-dust span:nth-child(1)  { left:  7%; width: 4px; height: 4px; animation-duration: 28s; animation-delay:  -2s; }
.hero-dust span:nth-child(2)  { left: 14%; width: 2px; height: 2px; animation-duration: 18s; animation-delay:  -5s; }
.hero-dust span:nth-child(3)  { left: 22%; width: 3px; height: 3px; animation-duration: 24s; animation-delay:  -8s; }
.hero-dust span:nth-child(4)  { left: 31%; width: 5px; height: 5px; animation-duration: 32s; animation-delay: -12s; }
.hero-dust span:nth-child(5)  { left: 38%; width: 2px; height: 2px; animation-duration: 20s; animation-delay:  -1s; }
.hero-dust span:nth-child(6)  { left: 46%; width: 3px; height: 3px; animation-duration: 26s; animation-delay: -15s; }
.hero-dust span:nth-child(7)  { left: 54%; width: 4px; height: 4px; animation-duration: 30s; animation-delay:  -7s; }
.hero-dust span:nth-child(8)  { left: 62%; width: 2px; height: 2px; animation-duration: 22s; animation-delay: -11s; }
.hero-dust span:nth-child(9)  { left: 69%; width: 3px; height: 3px; animation-duration: 25s; animation-delay:  -3s; }
.hero-dust span:nth-child(10) { left: 76%; width: 4px; height: 4px; animation-duration: 29s; animation-delay: -18s; }
.hero-dust span:nth-child(11) { left: 83%; width: 2px; height: 2px; animation-duration: 21s; animation-delay:  -9s; }
.hero-dust span:nth-child(12) { left: 89%; width: 3px; height: 3px; animation-duration: 27s; animation-delay: -14s; }
.hero-dust span:nth-child(13) { left: 18%; width: 2px; height: 2px; animation-duration: 23s; animation-delay:  -6s; }
.hero-dust span:nth-child(14) { left: 50%; width: 5px; height: 5px; animation-duration: 33s; animation-delay: -20s; }
.hero-dust span:nth-child(15) { left: 73%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: -16s; }

@keyframes dust-rise {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translate3d(40px, -110vh, 0); opacity: 0; }
}

@keyframes beamShift {
  from { transform: rotate(8deg) translate(-3%, -3%); opacity: 0.7; }
  to   { transform: rotate(12deg) translate(3%, 3%); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 12px;
}

.hero-headline {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(64px, 9.2vw, 148px);
  letter-spacing: -0.035em;
  line-height: 0.94;
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--bronze-2);
}

.hero-eyebrow {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--bronze-2);
}

.hero-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: 0;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  letter-spacing: 0;
  font-weight: 300;
  max-width: 52ch;
  line-height: 1.45;
  text-wrap: pretty;
}
.hero-sub strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze-2);
  letter-spacing: 0;
  font-size: 1em;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 8px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.hero-location .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze-2);
  box-shadow: 0 0 0 0 rgba(212,173,111,0.6);
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,173,111,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(212,173,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,173,111,0); }
}

.hero-ctas {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas .btn {
  flex: 1 1 280px;     /* grow equally from the same basis → matched widths */
  max-width: 340px;    /* cap so a wide right-column doesn't stretch them ugly */
  min-width: 260px;
  justify-content: space-between;
  padding: 20px 24px;
  min-height: 60px;
  box-sizing: border-box;
  line-height: 1.2;
}
.hero-ctas .btn-arrow::after { margin-left: auto; }
@media (max-width: 720px) {
  .hero-ctas { justify-content: stretch; }
  .hero-ctas .btn {
    flex: 1;
    min-width: 0;
    max-width: none;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-scroll .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--bronze-2), transparent);
  animation: scrollLine 2.2s ease-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== Marquee bar ========== */

.marquee-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.marquee em {
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--bronze-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 1;
}
.marquee .sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze-2);
  font-size: 0;
  opacity: 0.6;
}
@keyframes scroll {
  to { transform: translateX(calc(-50% - 40px)); }
}

/* ========== Differentiators ========== */

.diff {
  position: relative;
  background: var(--paper);
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}

/* Editorial photo backdrop behind the three pillars. Heavily faded so it
   reads as texture, not imagery — the section's content sits in front in
   full ink. Ken-burns runs as a slow CSS scale/translate loop. */
.diff-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.diff-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.16;
  filter: saturate(0.45) sepia(0.25) brightness(0.95) contrast(1.05);
  transform: scale(1.06);
  animation: diff-kenburns 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes diff-kenburns {
  from { transform: scale(1.05) translate3d(-1.5%, 0.5%, 0); }
  to   { transform: scale(1.18) translate3d(1.5%, -1%, 0); }
}
.diff-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,243,234,0.55) 0%, rgba(247,243,234,0.25) 50%, rgba(247,243,234,0.65) 100%);
  pointer-events: none;
}
.diff > .wrap {
  position: relative;
  z-index: 1;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: var(--space-5);
}

.section-head h2 {
  max-width: 14ch;
}

.section-head-meta {
  text-align: right;
  color: var(--muted-light);
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.55;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bronze);
  align-self: start;
  padding-top: 18px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.diff-card {
  padding: 52px 36px 52px 0;
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background 0.4s ease;
}
.diff-card:last-child { border-right: none; padding-right: 0; }
.diff-card:not(:first-child) { padding-left: 36px; }

.diff-card:hover { background: rgba(184,145,90,0.04); }

.diff-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bronze);
  letter-spacing: 0.08em;
}

.diff-card h3 {
  font-size: 36px;
  letter-spacing: -0.015em;
}
.diff-card h3 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bronze-3);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.diff-card p {
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.6;
}

.diff-glyph {
  width: 56px;
  height: 56px;
  color: var(--bronze);
}

/* ========== FROM PUNE — featured teacher section ========== */

.from-pune {
  position: relative;
  padding: var(--space-7) 0;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}

.pune-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pune-bg img,
.pune-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.50) sepia(0.20) brightness(0.55) contrast(1.10);
  /* Stand-alone CSS ken-burns — doesn't use the .bg-slide engine in app.js
     (that one is reserved for crossfade slideshows like the homepage hero). */
  transform: scale(1.1);
  animation: pune-kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes pune-kenburns {
  from { transform: scale(1.08) translate3d(-1%, 0.5%, 0); }
  to   { transform: scale(1.22) translate3d(2%, -1.5%, 0); }
}

.pune-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 0%, rgba(16,12,7,0.85) 80%, rgba(12,9,5,1) 100%),
    linear-gradient(180deg, rgba(22,17,11,0.78) 0%, rgba(22,17,11,0.60) 40%, rgba(22,17,11,0.85) 100%);
  pointer-events: none;
}

.pune-warm-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 60% at 25% 30%, rgba(184,145,90,0.22), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.pune-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: center;
}

.pune-text .eyebrow {
  display: inline-block;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(212,173,111,0.35);
  background: rgba(184,145,90,0.06);
}

.pune-headline {
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin-bottom: 32px;
}

.pune-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 28px;
  max-width: 44ch;
}
.pune-lede strong {
  display: inline-block;
  margin-top: 6px;
  font-weight: 400;
  font-style: italic;
  color: var(--bronze-2);
}

.pune-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 52ch;
  margin-bottom: 48px;
  font-weight: 300;
}
.pune-body strong { color: var(--paper); font-weight: 400; }
.pune-body em {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.45em;
  line-height: 1.15;
  color: var(--bronze-2);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 2px 0;
}

.pune-credentials {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  margin-bottom: 56px;
  padding: 32px 0;
  border-top: 1px solid rgba(246,241,232,0.12);
  border-bottom: 1px solid rgba(246,241,232,0.12);
}
.cred-num {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
  color: var(--bronze-2);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cred-num em { font-style: italic; color: var(--paper); font-weight: 300; }
.cred-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.pune-portrait {
  position: relative;
  aspect-ratio: 4/5;
  margin: 0;
}
.pune-portrait image-slot {
  width: 100%;
  height: 100%;
  filter: saturate(0.78) sepia(0.14) brightness(0.92) contrast(1.04);
}
.pune-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 100% at 50% 50%, transparent 30%, rgba(16,12,7,0.50) 100%),
    linear-gradient(135deg, rgba(184,145,90,0.30) 0%, transparent 50%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.pune-portrait figcaption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--paper);
}
.pune-portrait .cap-name {
  display: block;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pune-portrait .cap-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-2);
}

@media (max-width: 1100px) {
  .pune-grid { grid-template-columns: 1fr; gap: 60px; }
  .pune-credentials { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ========== THE SCIENCE — clinical & longevity section ========== */

.science {
  background: var(--paper);
  padding: var(--space-7) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}

.science::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 70% 80% at 100% 30%, rgba(184,145,90,0.06), transparent 65%);
  pointer-events: none;
}

.science .wrap { position: relative; z-index: 1; }

.science-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  margin-bottom: var(--space-6);
  align-items: start;
}

.science-head .section-num {
  padding-top: 18px;
}

.science-head-text { max-width: 880px; }

.science-headline {
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin-bottom: 36px;
}

.science-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--muted-light);
  max-width: 64ch;
}

.science-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stat {
  padding: 48px 24px 48px 0;
  border-right: 1px solid var(--line-light);
  position: relative;
  transition: background 0.4s ease;
}
.stat:not(:first-child) { padding-left: 24px; }
.stat:last-child { border-right: none; padding-right: 0; }

.stat--feature {
  background: linear-gradient(180deg, rgba(184,145,90,0.05) 0%, rgba(184,145,90,0.10) 100%);
  margin: 0 -1px;
  border-right: 1px solid var(--line-light);
}

.stat:hover { background: rgba(184,145,90,0.04); }
.stat--feature:hover {
  background: linear-gradient(180deg, rgba(184,145,90,0.07) 0%, rgba(184,145,90,0.14) 100%);
}

.stat-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid rgba(184,145,90,0.4);
  margin-bottom: 36px;
}

.stat-num {
  font-family: var(--font-body);
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.95;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-num em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 300;
  font-size: 0.55em;
  vertical-align: 0.6em;
  margin-left: 2px;
}

.stat-unit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.3;
  max-width: 22ch;
}

.stat-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-light);
  max-width: 32ch;
  margin-bottom: 24px;
  font-weight: 300;
}

.stat-cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted-light);
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a.stat-cite:hover { color: var(--bronze); opacity: 1; }
.stat-cite em { font-style: italic; }

.science-footer {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.science-quote {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 22ch;
}
.science-quote em { font-style: italic; color: var(--bronze-3); }

@media (max-width: 1100px) {
  .science-head { grid-template-columns: 1fr; gap: 24px; }
  .science-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 36px 24px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat--feature { margin: 0; padding: 36px 24px; }
}
@media (max-width: 720px) {
  .science-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line-light); padding: 36px 0; }
  .stat:not(:first-child) { padding-left: 0; }
  .stat:last-child { border-bottom: none; }
  .stat--feature { margin: 0; padding: 36px 0; }
  .science-footer { grid-template-columns: 1fr; gap: 24px; }
}

/* ========== About ========== */

.about {
  background: var(--paper);
  padding: var(--space-7) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: stretch;
}

.about-img-wrap {
  position: relative;
  min-height: 600px;
}
.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 100% at 50% 50%, transparent 30%, rgba(16,12,7,0.35) 100%),
    linear-gradient(180deg, rgba(22,17,11,0.15) 0%, transparent 30%, rgba(22,17,11,0.18) 65%, rgba(12,9,5,0.55) 100%),
    linear-gradient(135deg, rgba(184,145,90,0.28) 0%, rgba(139,106,61,0.15) 50%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.about-img-wrap image-slot {
  width: 100%;
  height: 100%;
}

.about-img-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--paper);
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 3;
}

.about-text .eyebrow { margin-bottom: 32px; display: block; }
.about-text h2 { margin-bottom: 48px; }
.about-text .lede { color: var(--ink); margin-bottom: 36px; max-width: 30ch; }
.about-text .body { color: var(--muted-light); margin-bottom: 72px; max-width: 50ch; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0;
  padding: 40px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.about-text .btn { margin-top: 56px; }
.about-stat-num {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.about-stat-num em { font-style: italic; color: var(--bronze); }
.about-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ========== Schedule ========== */

.schedule {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(184,145,90,0.16), transparent 65%),
    radial-gradient(ellipse 70% 70% at 10% 100%, rgba(139,106,61,0.12), transparent 60%),
    linear-gradient(180deg, #1a140d 0%, #16110b 45%, #110d08 100%);
  color: var(--paper);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,145,90,0.05) 0%, transparent 40%, transparent 60%, rgba(184,145,90,0.03) 100%);
  pointer-events: none;
}

.schedule .wrap {
  position: relative;
  z-index: 1;
}

.schedule .eyebrow { color: var(--bronze-2); }

.schedule .section-head h2 { color: var(--paper); }
.schedule .section-head-meta { color: var(--muted-dark); }
.schedule .section-num { color: var(--bronze-2); }

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.day {
  padding: 32px 20px;
  border-right: 1px solid var(--line-dark);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s ease;
}
.day:last-child { border-right: none; }
.day:hover { background: rgba(212,173,111,0.05); }

.day-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.day-label .date {
  font-family: var(--font-body);
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-transform: none;
  font-weight: 300;
  line-height: 1;
  margin-top: 8px;
}

.day-class {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.day-class:hover { opacity: 1; }
.day-class .time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bronze-2);
}
.day-class .style {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.day-class .teacher {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 2px;
}

.schedule-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  gap: 40px;
}

.schedule-legend {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

/* ========== Teachers ========== */

.teachers {
  background: var(--paper);
  padding: var(--space-7) 0;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: var(--space-5);
}

.teacher-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
}

.teacher-img {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.teacher-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 100% at 50% 50%, transparent 30%, rgba(16,12,7,0.40) 100%),
    linear-gradient(180deg, rgba(22,17,11,0.18) 0%, rgba(22,17,11,0.05) 30%, rgba(22,17,11,0.20) 65%, rgba(12,9,5,0.62) 100%),
    linear-gradient(135deg, rgba(184,145,90,0.32) 0%, rgba(139,106,61,0.18) 50%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.teacher-img image-slot {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.teacher-card:hover .teacher-img image-slot { transform: scale(1.03); }

.teacher-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.teacher-name {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-top: 4px;
  line-height: 1.05;
}
.teacher-style {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bronze-3);
  margin-top: 8px;
  line-height: 1.3;
}
.teacher-bio {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.55;
  margin-top: 4px;
}

/* ========== Testimonials ========== */

.testimonials {
  background: var(--paper-2);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-mandala {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 80vh;
  height: 80vh;
  opacity: 0.08;
  pointer-events: none;
}

.testimonial {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.testimonial .eyebrow { margin-bottom: 48px; }

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.testimonial-quote::before,
.testimonial-quote::after {
  color: var(--bronze);
  font-family: var(--font-display);
  font-style: normal;
}
.testimonial-quote::before { content: "“"; margin-right: 4px; }
.testimonial-quote::after  { content: "”"; margin-left: 4px; }

.testimonial-author {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.testimonial-author .role {
  display: block;
  margin-top: 6px;
  color: var(--muted-light);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}
.testimonial-dot {
  width: 28px;
  height: 1px;
  background: var(--ink);
  opacity: 0.2;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
}
.testimonial-dot.is-active {
  opacity: 1;
  background: var(--bronze);
}

/* ========== Instagram ========== */

.instagram {
  background: var(--paper);
  padding: var(--space-6) 0;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: var(--space-4);
}
.ig-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.ig-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 100% at 50% 50%, transparent 30%, rgba(16,12,7,0.30) 100%),
    linear-gradient(180deg, rgba(22,17,11,0.12) 0%, transparent 30%, rgba(22,17,11,0.15) 70%, rgba(12,9,5,0.45) 100%),
    linear-gradient(135deg, rgba(184,145,90,0.24) 0%, rgba(139,106,61,0.12) 50%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.ig-tile image-slot {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ig-tile:hover image-slot { transform: scale(1.06); }
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(22,17,11,0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-tile:hover::after { opacity: 1; }

.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.ig-handle {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--muted-light);
}

/* ========== Final CTA ========== */

.final-cta {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-7) 0 calc(var(--space-7) - 20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* Gradients sit on TOP of the video to keep headline readable
     and to match the rest of the dark-section overlay treatment. */
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212,173,111,0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(184,145,90,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.final-cta-bg::after {
  /* Dark veil over the video so the headline reads. */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,17,11,0.45) 0%, rgba(22,17,11,0.70) 100%);
  pointer-events: none;
  z-index: 1;
}
.final-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Sit BELOW the gradient veil (which is z-index:1 on the parent),
     but above the section's opaque background. */
  z-index: 0;
  filter: saturate(0.55) sepia(0.20) brightness(0.55) contrast(1.10);
  animation: final-cta-zoom 26s ease-in-out infinite alternate;
}
.final-cta-inner { position: relative; z-index: 2; }
@keyframes final-cta-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.final-cta h2 {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  margin-bottom: 28px;
}
.final-cta h2 em { font-style: italic; color: var(--bronze-2); }

.final-cta .lede {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted-dark);
  margin: 0 auto 48px;
  max-width: 36ch;
}

.final-cta-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-ctas .btn {
  flex: 0 1 320px;     /* equal preferred width across both buttons on desktop */
  min-width: 280px;
  justify-content: space-between;
  padding: 20px 24px;
  min-height: 60px;
  box-sizing: border-box;
  line-height: 1.2;
}

.first-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 10px 16px;
  border: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
}
.first-free-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--bronze-2);
  border-radius: 50%;
}

/* ========== Footer ========== */

.footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: var(--space-5) 0 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand .nav-logo {
  font-size: 16px;
  letter-spacing: 0.58em;
  padding-left: 0.58em;
  margin-bottom: 28px;
  font-weight: 500;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--muted-dark);
  max-width: 30ch;
  line-height: 1.4;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 14px;
}
.footer-col a:hover { color: var(--bronze-2); }

.footer-contact-line {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--muted-dark);
  display: block;
}
.footer-contact-line strong {
  color: var(--paper);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.footer-contact-line strong a {
  color: inherit;
  text-decoration: none;
}
.footer-contact-line strong a:hover { color: var(--bronze-2); }
.footer-contact-line a { color: var(--muted-dark); text-decoration: none; transition: color 0.25s ease; }
.footer-contact-line a:hover { color: var(--bronze-2); }

/* ----- Visit column: address, email, phones — single quiet rhythm ----- */
.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-dark);
  margin: 0 0 22px;
}
.footer-address strong {
  display: block;
  color: var(--paper);
  font-weight: 400;
  margin-bottom: 2px;
}
.footer-email {
  display: inline-block;
  font-size: 14px;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(247,243,234,0.18);
  padding-bottom: 2px;
  margin-bottom: 24px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-email:hover {
  color: var(--bronze-2);
  border-bottom-color: var(--bronze-2);
}
.footer-phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.footer-phone-list li { margin: 0; }
.footer-phone-list a {
  display: grid;
  grid-template-columns: 3.5em 1fr;
  gap: 14px;
  font-size: 14px;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-phone-list a:hover { color: var(--bronze-2); }
.footer-phone-list .phone-name { color: var(--paper); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  gap: 24px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff;
}

/* ========== Unified photo color grade ==========
   Warm, slightly desaturated, gently sepia — applied to ALL imagery
   so the site reads as one cohesive editorial. */

image-slot,
.about-img-wrap,
.teacher-img,
.ig-tile {
  filter: saturate(0.78) sepia(0.14) brightness(0.96) contrast(1.03);
}

/* ========== Responsive (basic — primary target is desktop 1440) ========== */

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { border-right: none; border-bottom: 1px solid var(--line-light); padding: 36px 0; }
  .diff-card:last-child { border-bottom: none; }
  .diff-card:not(:first-child) { padding-left: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .day { border-bottom: 1px solid var(--line-dark); }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head-meta { text-align: left; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding-bottom: 60px; }
  .week-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .nav-lang { display: none; }
}

/* ============================================================
   V3 ADDITIONS · foundation-aligned overlays on v1 base
   ============================================================ */

/* ----- Bilingual visibility ----- */
html[data-lang="en"] [lang="ro"] { display: none !important; }
html[data-lang="ro"] [lang="en"] { display: none !important; }

/* ----- Nav: language toggle + book CTA on the right ----- */
.nav { grid-template-columns: auto 1fr auto !important; display: grid !important; align-items: center; }
.nav-links { justify-content: center !important; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.nav-lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  padding: 4px 2px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-lang-btn.is-active { color: var(--paper); }
.nav-lang-btn:hover { color: var(--bronze-2); }
.nav-lang-sep { color: rgba(255,255,255,0.3); }
.nav.is-scrolled .nav-lang-btn { color: rgba(255,255,255,0.55); }
.nav.is-scrolled .nav-lang-btn.is-active { color: var(--paper); }

/* ----- Location pin in nav + footer ----- */
.nav-pin {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.nav-pin:hover { color: var(--bronze-2); border-color: var(--bronze-2); }
.nav-pin svg { width: 14px; height: 14px; }
.nav-pin-tip {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: rgba(15, 11, 7, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  min-width: 220px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  text-transform: none;
}
.nav-pin:hover .nav-pin-tip,
.nav-pin:focus-visible .nav-pin-tip { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-pin-tip strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--bronze-2);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.nav.is-scrolled .nav-pin { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.18); }

/* Footer pin */
.footer-pin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-dark);
  transition: color 0.2s ease;
  margin-top: 24px;
}
.footer-pin:hover { color: var(--bronze-2); }
.footer-pin svg { width: 14px; height: 14px; }
.footer-pin-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ----- Trust strip inside science section ----- */
.trust-strip {
  margin-top: var(--space-6);
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.trust-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  max-width: 12ch;
  line-height: 1.4;
}
.trust-strip-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: 36px;
  align-items: start;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--muted-light);
  line-height: 1.15;
  transition: color 0.3s ease;
}
.trust-logo:hover { color: var(--ink); }
.trust-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  opacity: 0.7;
  margin-top: 6px;
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .trust-strip-logos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: 1fr; gap: 28px; }
  .trust-strip-logos { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

/* ----- Teacher cards: lead + coming variants ----- */
.teacher-card--lead .teacher-badge { background: var(--bronze); color: var(--paper); }

.teacher-img--placeholder {
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none !important;
}
.teacher-placeholder {
  width: 120px;
  height: 120px;
  color: var(--bronze-2);
  opacity: 0.65;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teacher-placeholder svg { width: 100%; height: 100%; }
.teacher-badge--soft {
  background: rgba(255,255,255,0.92) !important;
  color: var(--bronze-3) !important;
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}
.teacher-card--coming .teacher-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.teacher-card--coming .teacher-bio { color: var(--muted-light); }

/* ----- Journal grid (re-using the "instagram" section container) ----- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 56px);
  margin-top: var(--space-4);
}
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.journal-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  filter: saturate(0.78) sepia(0.14) brightness(0.96) contrast(1.03);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.journal-thumb image-slot { width: 100%; height: 100%; display: block; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.journal-thumb .journal-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.journal-card:hover .journal-thumb image-slot { transform: scale(1.04); }
.journal-card:hover .journal-thumb .journal-video { transform: scale(1.04); }
.journal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.journal-rubric { color: var(--bronze-3); }
.journal-sep { opacity: 0.5; }
.journal-title {
  font-family: var(--font-body);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 22ch;
  transition: color 0.3s ease;
}
.journal-card:hover .journal-title { color: var(--bronze-3); }
.journal-summary {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-light);
  max-width: 38ch;
  font-weight: 300;
}
@media (max-width: 1100px) {
  .journal-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Hero eyebrow (re-introduced for clarity) ----- */
.hero-eyebrow .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--bronze-2);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

/* ----- Footer: newsletter + visit + since + soon ----- */
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.4fr !important; }
.footer-col--visit, .footer-col--news { display: flex; flex-direction: column; gap: 14px; }
.footer-since {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  opacity: 0.7;
  margin-top: 14px;
}
.footer-col .soon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--bronze-2);
  margin-left: 6px;
  opacity: 0.75;
  letter-spacing: 0;
  text-transform: none;
}
.footer-news-blurb {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.55;
  max-width: 32ch;
  margin-bottom: 4px;
}
.footer-news-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  gap: 10px;
  transition: border-color 0.2s ease;
}
.footer-news-form:focus-within { border-color: var(--bronze-2); }
.footer-news-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--paper);
}
.footer-news-form input::placeholder { color: var(--muted-dark); opacity: 0.6; }
.footer-news-form button {
  background: none;
  border: none;
  color: var(--bronze-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-news-form button:hover { color: var(--paper); transform: translateX(3px); }
.footer-news-ack {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--bronze-2);
  letter-spacing: 0.04em;
  min-height: 16px;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Booking modal · Stripe-ready
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 11, 7, 0.78);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--paper);
  width: 100%;
  max-width: 480px;
  padding: clamp(36px, 4vw, 52px);
  position: relative;
  transform: translateY(20px);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  border: 1px solid var(--line-light);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.modal.is-open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--muted-light);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--ink); }
.modal-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-3);
  margin-bottom: 16px;
}
.modal-title {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
.modal-title em { font-style: italic; color: var(--bronze-3); }
.modal-detail {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted-light);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}
.modal-form { display: flex; flex-direction: column; gap: 18px; }
.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.modal-field input {
  border: none;
  border-bottom: 1px solid var(--line-light);
  padding: 8px 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.modal-field input:focus { border-color: var(--bronze); }
.modal-field input::placeholder { color: var(--muted-light); opacity: 0.5; }
.modal-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 6px;
  margin-top: 10px;
  border-top: 1px solid var(--line-light);
}
.modal-price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.modal-price-amount {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.modal-price-amount .currency { font-size: 16px; color: var(--muted-light); margin-right: 4px; }
.modal-price-amount .free {
  font-style: italic;
  color: var(--bronze-3);
}
.modal-pay {
  margin-top: 10px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.modal-pay:hover { background: var(--bronze); border-color: var(--bronze); }
.modal-pay .arr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  transition: transform 0.2s ease;
}
.modal-pay:hover .arr { transform: translateX(4px); }
.modal-foot {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted-light);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.modal-foot strong { color: var(--ink); font-weight: 500; }

.modal-success {
  text-align: center;
  display: none;
  padding: 24px 0;
}
.modal-success.is-show { display: block; }
.modal-success .check {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--bronze);
}

/* ----- Reveal: keep elements visible by default (v1 behavior),
   add small enhancement when JS marks them is-visible ----- */
[data-reveal] {
  opacity: 1;
}
[data-reveal].is-visible {
  /* no-op — visual state already settled */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   MOBILE — drawer nav + phone-tier overrides
   Additive layer. Everything below this line touches mobile only
   (≤720px) or phone-only (≤480px). Cascade order: these rules sit
   last in the file so they win against any earlier @media blocks.
   ============================================================ */

/* ---- Drawer trigger — minimalist hamburger icon (hidden above 720px) ---- */
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  position: relative;
  color: var(--paper);
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-menu-btn:hover { color: var(--bronze-2); }

.nav-menu-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 14px;
}
.nav-menu-icon span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  left: 0;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              opacity 0.2s ease,
              top 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              bottom 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-menu-icon span:nth-child(1) { top: 0; }
.nav-menu-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-menu-icon span:nth-child(3) { bottom: 0; }

/* When open: top + bottom lines rotate into an X, middle fades. */
.nav-menu-btn.is-open .nav-menu-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-menu-btn.is-open .nav-menu-icon span:nth-child(2) {
  opacity: 0;
}
.nav-menu-btn.is-open .nav-menu-icon span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Drawer hidden above mobile breakpoint */
.nav-drawer { display: none; }

/* Drawer activates EARLIER than the content-stack breakpoint (960 vs 720)
   because the inline desktop nav (6 links + pin + lang + Book CTA) stops
   fitting around 1024px and starts clipping. Tablet portrait (768) and
   narrow laptops get the drawer; iPad landscape (1024)+ keeps the desktop
   nav. Content layout (hero-bottom, about-stats, etc.) still uses the 720
   breakpoint below — at 768-960 we want drawer-nav + desktop-content. */
@media (max-width: 960px) {
  .nav-menu-btn { display: inline-flex; }
  .nav-links { display: none; }
  .nav-pin { display: none; }
  .nav-cta { display: none; }
  .nav-actions { gap: 12px; }

  .nav-drawer {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99;
    max-height: 100vh;
    overflow-y: auto;
    background: rgba(22, 17, 11, 0.97);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    transform: translateY(-100%);
    transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-drawer.is-open { transform: translateY(0); }
  body.nav-drawer-open { overflow: hidden; }

  .nav-drawer-inner {
    padding: 96px var(--gutter) 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .nav-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
  }
  .nav-drawer-links a {
    display: block;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.005em;
    color: var(--paper);
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
  }
  .nav-drawer-links a:hover,
  .nav-drawer-links a:focus-visible { color: var(--bronze-2); }
  .nav-drawer-links a[aria-current="page"] { color: var(--bronze-2); }
  .nav-drawer-links a[aria-current="page"]::before {
    content: "—";
    position: absolute;
    left: -22px;
    color: var(--bronze-2);
  }

  .nav-drawer-meta {
    padding-top: 28px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* Drawer's own lang block — visually identical to nav-lang but a separate
     control. Both update via the same [data-set-lang] handler in app.js. */
  .nav-drawer-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--muted-dark);
  }
  .nav-drawer-lang .nav-lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    padding: 4px 2px;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }
  .nav-drawer-lang .nav-lang-btn.is-active { color: var(--paper); }
  .nav-drawer-lang .nav-lang-btn:hover { color: var(--bronze-2); }
  .nav-drawer-lang .nav-lang-sep { color: rgba(255,255,255,0.3); }

  .nav-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    background: var(--bronze);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .nav-drawer-cta:hover { background: var(--bronze-3); }
  .nav-drawer-cta .arr {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-drawer-pin {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
  }
  .nav-drawer-pin:hover { color: var(--bronze-2); }
  .nav-drawer-pin svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
  .nav-drawer-pin strong {
    display: block;
    font-weight: 500;
    color: var(--paper);
    margin-bottom: 2px;
    letter-spacing: 0.04em;
  }
}

/* Phone tier (≤720px): content layout collapses to single column and
   restores the lang toggle that the original mobile rule hides. */
@media (max-width: 720px) {
  /* Restore lang toggle (overrides the earlier mobile rule that hid it) */
  .nav-lang { display: flex !important; }

  /* ===== Cross-cutting layout fixes ===== */

  /* [A3] Hero — stack subline + CTAs vertically */
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }

  /* [A8] Journal section head — stack vertically */
  .ig-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ig-head > div:last-child { text-align: left !important; }

  /* [A6] Pune credentials — 1-col on phone */
  .pune-credentials { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }

  /* [A7] About stats — 1-col (3 items in 2-col leaves orphan) */
  .about-stats { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }

  /* [A4] Section heads stacked — drop the desktop padding on section-num */
  .section-head .section-num { padding-top: 0; }

  /* Final-CTA buttons stretch to full width on small screens.
     Explicit padding + min-height so the two buttons render identical heights
     regardless of background fill vs outline (otherwise the bronze fill
     visually pushes the button slightly bigger). Wider gap so they don't
     look lipite. `display: flex` repeated defensively in case earlier
     rules ever desync (already happened once with an orphan block). */
  .final-cta-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
  }
  .final-cta-ctas .btn {
    justify-content: space-between;
    padding: 20px 24px;
    min-height: 60px;
    box-sizing: border-box;
    line-height: 1.2;
  }

  /* Modal: more breathing room at the edges; reduce internal padding */
  .modal { padding: 16px; }
  .modal-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  /* Phone portrait — tighter stacking + reduced hero floor */

  /* [A5] Trust strip — 1-col so logo + sub-line don't fight */
  .trust-strip-logos { grid-template-columns: 1fr; row-gap: 20px; }

  /* [A9] Hero headline floor — reduce 64px to 48px so it breathes */
  .hero-headline { font-size: clamp(48px, 13vw, 64px); }

  /* Marquee — slightly smaller so labels don't dominate */
  .marquee span, .marquee em { font-size: 11px; }
  .marquee { gap: 36px; }

  /* Diff cards padding tightened */
  .diff-card { padding: 36px 0; gap: 22px; }

  /* Schedule day cells less tall on small phones */
  .day { min-height: 0; padding: 28px 18px; }

  /* Tighten nav gap further at narrow widths */
  .nav { padding-left: 18px; padding-right: 18px; }
  .nav.is-scrolled { padding-left: 18px; padding-right: 18px; }
  .nav-actions { gap: 10px; }
  .nav-logo { font-size: 15px; letter-spacing: 0.5em; padding-left: 0.5em; }
}
