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

:root {
  --gold:    #d5b048;
  --gold-lt: #e8cb7a;
  --gold-dk: #a8882e;
  --cream:   #faf7f0;
  --warm:    #f2ece0;
  --ink:     #1e1a14;
  --ink-lt:  #4a4236;
  --rust:    #b84a2e;
  --rust-lt: #d4613e;
  --rust-dk: #8c3320;
  --deep:    #2c2318;
  --sage:    #7a8c6e;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-body:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warm); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 4vw;
  background: rgba(250,247,240,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213,176,72,0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(30,26,20,0.09); }

.nav-logo img {
  height: clamp(90px, 8vh, 120px);
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-lt); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-wa {
  font-family: var(--ff-sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  background: var(--rust); color: white;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-wa:hover { background: var(--rust-dk); transform: translateY(-1px); }
.nav-wa svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s; }

/* ── HERO ── */
#hero {
  height: calc(100vh - 0px); /* adjust 70px to your nav height */
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 15vh 6vw 10vh 8vw;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--rust); }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 400; line-height: 1.08;
  color: var(--ink); margin-bottom: 1.8rem;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 1.15rem; font-weight: 300;
  color: var(--ink-lt); max-width: 420px;
  margin-bottom: 3rem; line-height: 1.8;
}

.hero-cta { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn {
  font-family: var(--ff-sans);
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none; transition: all 0.3s;
  cursor: pointer; border: none; display: inline-flex;
  align-items: center; gap: 0.5rem;
}
.btn-primary { background: var(--gold); color: var(--deep); }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(213,176,72,0.35); }
.btn-ghost { background: transparent; border: 1px solid var(--ink-lt); color: var(--ink-lt); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-wa { background: var(--rust); color: white; }
.btn-wa:hover { background: var(--rust-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,74,46,0.35); }
.btn-wa svg { width: 18px; height: 18px; fill: white; }
.btn-wa-lg { font-size: 0.9rem; padding: 1.2rem 2.8rem; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88); }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 28%);
}

.mandala-deco {
  position: absolute; bottom: 8vh; left: 4vw;
  width: 110px; opacity: 0.1; z-index: 1;
  animation: spin-slow 70s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── SECTION COMMONS ── */
section { position: relative; }
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }

.section-tag {
  font-family: var(--ff-sans);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::after { content: ''; flex: 1; max-width: 36px; height: 1px; background: var(--gold); }

h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 400; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.2rem;
}
h2 em { font-style: italic; color: var(--gold-dk); }

.lead {
  font-family: var(--ff-body);
  font-size: 1.12rem; font-weight: 300;
  color: var(--ink-lt); max-width: 560px; line-height: 1.85;
}

/* ── ABOUT ── */
#about { padding: 9rem 0 7rem; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }

.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.about-image-wrap::before {
  content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid var(--gold); z-index: -1; opacity: 0.45;
}

.about-text { padding-left: 1vw; }
.about-quote {
  font-family: var(--ff-serif); font-size: 0.8rem; font-style: italic;
  color: var(--rust); border-left: 2px solid var(--rust);
  padding-left: 1.5rem; margin: 2rem 0; line-height: 1.55;
}
.about-body { font-size: 1.05rem; color: var(--ink-lt); line-height: 1.85; margin-bottom: 1.5rem; }

/* ── CLASSES ── */
#classes { padding: 5rem 0; background: var(--warm);}
.classes-header { margin-bottom: 4rem; }
.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.class-card {
  background: white; border: 1px solid rgba(213,176,72,0.15);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.class-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(30,26,20,0.1); }
.class-card-img-wrap { overflow: hidden; }
.class-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: saturate(0.82); transition: filter 0.4s, transform 0.4s;
}
.class-card:hover .class-card-img { filter: saturate(1.1); transform: scale(1.04); }
.class-card-body { padding: 1.8rem; }

.class-type {
  font-family: var(--ff-sans); font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.5rem;
}
.class-card h3 { font-family: var(--ff-serif); font-size: 1.55rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--ink); }
.class-card p { font-size: 0.98rem; color: var(--ink-lt); line-height: 1.75; margin-bottom: 1.4rem; }
.class-detail {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  font-family: var(--ff-sans); font-size: 0.7rem; letter-spacing: 0.07em; color: var(--ink-lt);
}
.class-detail span { display: flex; align-items: center; gap: 0.35rem; }
.class-detail .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* Sound healing wide card */
.class-card.sound-card { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.4fr; }
.class-card.sound-card .class-card-img-wrap { aspect-ratio: unset; min-height: 280px; }
.class-card.sound-card .class-card-img { height: 100%; aspect-ratio: unset; }
.class-card.sound-card .class-card-body { padding: 2.8rem; display: flex; flex-direction: column; justify-content: center; }
.sound-glyph { font-family: var(--ff-serif); font-style: italic; font-size: 3.5rem; color: var(--gold); opacity: 0.25; line-height: 1; margin-bottom: 0.3rem; }

/* WhatsApp book button */
.wa-book {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-sans); font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  background: var(--rust); color: white;
  text-decoration: none; margin-top: 1.8rem;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.wa-book:hover { background: var(--rust-dk); transform: translateY(-2px); }
.wa-book svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

/* ── INDIA TRAVEL ── */
#travel { padding: 9rem 0; background: var(--deep); color: var(--cream); overflow: hidden; }
.travel-bg-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(213,176,72,0.04) 0, rgba(213,176,72,0.04) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px; pointer-events: none;
}
/* red accent stripe */
.travel-accent-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--rust));
}
#travel h2 { color: var(--cream); }
#travel h2 em { color: var(--gold); }
#travel .section-tag { color: var(--gold-lt); }
#travel .section-tag::after { background: var(--gold-lt); }
#travel .lead { color: rgba(250,247,240,0.72); }

.travel-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5vw; align-items: start; margin-top: 4rem; }
.travel-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.travel-images img { width: 100%; object-fit: cover; display: block; }
.travel-images img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.travel-images img:not(:first-child) { aspect-ratio: 1; }

.trip-features { list-style: none; margin-bottom: 2.5rem; }
.trip-features li {
  display: flex; align-items: baseline; gap: 0.8rem;
  font-family: var(--ff-body); font-size: 1rem;
  color: rgba(250,247,240,0.8); padding: 0.55rem 0;
  border-bottom: 1px solid rgba(213,176,72,0.12);
}
.trip-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.trip-price { font-family: var(--ff-serif); font-size: 0.9rem; color: rgba(250,247,240,0.45); margin-bottom: 0.3rem; }
.trip-price strong { font-size: 2.2rem; color: var(--gold); font-weight: 400; }

/* ── SOUND / SPOTIFY ── */
#sound { padding: 9rem 0; background: var(--warm); }
.sound-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }

.spotify-wrap {
  background: white; padding: 2rem;
  border: 1px solid rgba(213,176,72,0.2);
  box-shadow: 0 8px 32px rgba(30,26,20,0.07);
}
.spotify-label {
  font-family: var(--ff-sans); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.spotify-label svg { width: 15px; height: 15px; fill: #1db954; }
.spotify-embed { width: 100%; border: none; border-radius: 0; height: 380px; }

.sound-text .lead { margin-bottom: 2rem; }
.soundwave-bar { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin: 2rem 0; }
.soundwave-bar span {
  flex: 1; background: var(--gold); border-radius: 2px;
  animation: wave-bar 1.2s ease-in-out infinite alternate;
}
.soundwave-bar span:nth-child(2)  { animation-delay: 0.10s; background: var(--rust); }
.soundwave-bar span:nth-child(3)  { animation-delay: 0.20s; }
.soundwave-bar span:nth-child(4)  { animation-delay: 0.30s; background: var(--rust); }
.soundwave-bar span:nth-child(5)  { animation-delay: 0.05s; }
.soundwave-bar span:nth-child(6)  { animation-delay: 0.15s; background: var(--rust); }
.soundwave-bar span:nth-child(7)  { animation-delay: 0.25s; }
.soundwave-bar span:nth-child(8)  { animation-delay: 0.35s; background: var(--rust); }
.soundwave-bar span:nth-child(9)  { animation-delay: 0.08s; }
.soundwave-bar span:nth-child(10) { animation-delay: 0.22s; background: var(--rust); }
.soundwave-bar span:nth-child(11) { animation-delay: 0.18s; }
.soundwave-bar span:nth-child(12) { animation-delay: 0.12s; background: var(--rust); }
@keyframes wave-bar { 0% { height: 6px; } 100% { height: 100%; } }

/* ── INSTAGRAM JOURNEY ── */
#instagram { padding: 8rem 0; background: var(--cream); }
.insta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.insta-text { }
.insta-text h2 { margin-bottom: 0.8rem; }
.insta-text .lead { margin-bottom: 2rem; }
.insta-handle {
  font-family: var(--ff-sans); font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--rust); margin-bottom: 2.5rem; display: block;
}

.insta-mosaic {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

/* Base image style */
.insta-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}

.insta-mosaic img:hover {
  transform: scale(1.05);
}

/* Make 2 images landscape (span 2 columns) */
.insta-mosaic img:nth-child(2),
.insta-mosaic img:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* 📱 Tablet */
@media (max-width: 900px) {
  .insta-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 8px;
  }

  .insta-mosaic img {
    width: 100%;
    aspect-ratio: 1 / 1; /* perfect squares */
  }

  /* Reset the "landscape" styling on mobile */
  .insta-mosaic img:nth-child(2),
  .insta-mosaic img:nth-child(4) {
    display: none;
  }
}
/* Vary sizes for playful asymmetry */
.insta-slot { position: relative; overflow: hidden; cursor: pointer; background: var(--warm); }
.insta-slot:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.insta-slot:nth-child(5) { grid-column: 3/5; grid-row: 2/4; }
.insta-slot:nth-child(7) { grid-column: 1/3; grid-row: 3/4; }

.insta-slot img { width: 100%; height: 100%; object-fit: cover; display: none; transition: transform 0.4s; }
.insta-slot.has-image img { display: block; }
.insta-slot:hover img { transform: scale(1.07); }
.insta-slot input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 3; }
.insta-slot-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: rgba(213,176,72,0.4);
}
.insta-slot.has-image .insta-slot-placeholder { display: none; }
.insta-slot-placeholder svg { width: 18px; height: 18px; }
.insta-slot-placeholder span { font-family: var(--ff-sans); font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; }
.insta-slot-overlay { position: absolute; inset: 0; background: rgba(184,74,46,0.12); opacity: 0; transition: opacity 0.3s; z-index: 1; }
.insta-slot:hover .insta-slot-overlay { opacity: 1; }
.insta-remove {
  position: absolute; top: 5px; right: 5px; width: 22px; height: 22px;
  background: rgba(30,26,20,0.65); border: none; border-radius: 50%;
  color: white; font-size: 0.7rem; cursor: pointer;
  display: none; align-items: center; justify-content: center; z-index: 4;
}
.insta-slot.has-image:hover .insta-remove { display: flex; }
.insta-instructions {
  font-family: var(--ff-sans); font-size: 0.65rem; letter-spacing: 0.07em;
  color: var(--ink-lt); opacity: 0.6; margin-top: 6px;
  display: flex; align-items: center; gap: 0.35rem;
}

/* ── CONTACT / WHATSAPP ── */
#contact { padding: 9rem 0; background: var(--deep); color: var(--cream); text-align: center; }
#contact h2 { color: var(--cream); }
#contact h2 em { color: var(--gold); }
#contact .section-tag { color: var(--gold-lt); justify-content: center; }
#contact .section-tag::after { display: none; }
#contact .lead { color: rgba(250,247,240,0.65); margin: 0 auto 2.5rem; text-align: center; }

.contact-inner { max-width: 620px; margin: 0 auto; }

.wa-big-btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--ff-sans); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.3rem 3rem;
  background: var(--rust); color: white;
  text-decoration: none; margin-bottom: 2rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wa-big-btn:hover {
  background: var(--rust-dk); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184,74,46,0.45);
}
.wa-big-btn svg { width: 24px; height: 24px; fill: white; }

.contact-details {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  font-family: var(--ff-sans); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,247,240,0.4); margin-top: 2rem;
}
.contact-details a { color: rgba(250,247,240,0.4); text-decoration: none; transition: color 0.2s; }
.contact-details a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(213,176,72,0.1);
  padding: 0rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo img { height: 120px; width: auto; opacity: 0.55; }
.footer-copy {
  font-family: var(--ff-sans); font-size: 0.65rem;
  letter-spacing: 0.1em; color: rgba(250,247,240,0.25); text-transform: uppercase;
}
/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .travel-grid, .sound-layout, .insta-layout { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr; }
  .class-card.sound-card { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex; position: fixed; top: 62px; left: 0; right: 0;
    background: var(--cream); padding: 1rem 0; border-bottom: 1px solid rgba(213,176,72,0.2); z-index: 99;
  }
  .nav-links li a { padding: 0.8rem 5vw; display: block; }
  .nav-toggle { display: flex; }
  .nav-wa span { display: none; }
  footer { flex-direction: column; text-align: center; }
  .insta-mosaic { grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(3,70px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    padding: 0;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    filter: brightness(1.15) saturate(0.85);   /* Lighter + slightly less saturated */
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      to right,
      rgba(250, 247, 240, 0.95) 0%,     /* Strong cream on left */
      rgba(250, 247, 240, 0.88) 70%,
      rgba(250, 247, 240, 0.70) 80%,
      rgba(250, 247, 240, 0.35) 90%,
      rgba(250, 247, 240, 0.08) 100%,
      transparent 100%
    );
  }

  .hero-left {
    position: relative;
    z-index: 3;           /* Ensures text stays above everything */
    padding: 14vh 8vw 8vh;
  }

  /* Optional: Make text slightly darker for better contrast on mobile */
  .hero-title,
  .hero-subtitle,
  .hero-eyebrow {
    text-shadow: 0 2px 8px rgba(255,255,255,0.6); /* soft white glow for extra readability */
  }
  .hero-subtitle{
    font-size: 1.15rem; font-weight: 500;
  }
}

/* ── ROOTS TIMELINE ── */
.about-page #about {
  padding: 9rem 0 2rem; /* smaller bottom spacing */
}

.about-page #roots {
  padding: 2rem 0 6rem; /* smaller top spacing */
}
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--gold), var(--rust), var(--gold)); }

.tl-item { position: relative; margin-bottom: 3rem; }
.tl-dot {
  position: absolute; left: -2.5rem; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}
.tl-item:nth-child(even) .tl-dot { background: var(--rust); box-shadow: 0 0 0 1px var(--rust); }

.tl-label { font-family: var(--ff-sans); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.tl-item:nth-child(even) .tl-label { color: var(--rust); }
.tl-title { font-family: var(--ff-serif); font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.tl-body { font-size: 1rem; color: var(--ink-lt); line-height: 1.8; max-width: 560px; }

.about-page .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4vw;
  align-items: start;
}

.about-page .about-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;           /* tight, consistent spacing between text and timeline */
}

.about-page .roots-inline {
  /* no extra top padding — gap on .about-left handles spacing */
}

/* Right column: sticky so media stays visible while you scroll the left */
.about-page .about-media {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 110px;          /* clears the fixed nav */
}

.about-page .about-media img,
.about-page .about-media video {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-page .about-media img:nth-child(1) { aspect-ratio: 4 / 5; }
.about-page .about-media video           { aspect-ratio: 16 / 9; }
.about-page .about-media img:nth-child(3) { aspect-ratio: 3 / 2; }

/* Mobile: single column, media below text */
@media (max-width: 900px) {
  .about-page .about-grid {
    grid-template-columns: 1fr;
  }
  .about-page .about-media {
    position: static;   /* no sticky on mobile */
    margin-top: 2rem;
    grid-template-columns: 1fr 1fr;  /* 2-col photo grid on mobile */
    gap: 10px;
  }
  .about-page .about-media img:nth-child(1) {
    grid-column: 1 / -1;  /* first photo full width */
    aspect-ratio: 16 / 9;
  }
  .about-page .about-media video {
    grid-column: 1 / -1;  /* videos full width */
  }
}

.about-page .back-button {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-lt);
  opacity: 0.7;
  transition: 0.3s;
}

.about-page .back-button:hover {
  opacity: 1;
  color: var(--gold);
}

.about-page #mantra {
  padding: 8rem 0;
  background: var(--cream);
  text-align: center;
}

.about-page .mantra-text {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  margin: 1.5rem 0;
}

.about-page .mantra-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--ink-lt);
}

.about-page #mantra iframe {
  max-width: 600px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.btn-sound {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  gap: 0.7rem;
}
.btn-sound svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.btn-sound:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,176,72,0.3);
}
.btn-sound:hover svg {
  transform: scale(1.15);
}
