:root{
  --ink:#1F1D1B;
  --bg:#F4EFE6;
  --paper:#FBF8F2;
  --text:#26221E;
  --saffron:#D9892E;
  --saffron-deep:#B96E1E;
  --gold:#C7A24B;
  --on-dark:#F4EFE6;
  --maxw:1200px;
  --gut:clamp(20px,5vw,64px);
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Pontano Sans',system-ui,sans-serif;
  --script:'Pinyon Script',cursive;
}
*,*::before,*::after{box-sizing:border-box}
html,body{max-width:100%;overflow-x:hidden}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img,svg,video,iframe{max-width:100%;height:auto;display:block}
a{color:inherit}
p{overflow-wrap:break-word}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
:focus-visible{outline:2px solid var(--saffron);outline-offset:3px;border-radius:2px}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--sans);font-weight:700;font-size:.82rem;
  letter-spacing:.05em;text-transform:uppercase;text-decoration:none;
  padding:.95em 1.7em;min-height:48px;cursor:pointer;border:1px solid transparent;
  transition:background .25s,color .25s,transform .25s,border-color .25s;
}
.btn-cta{background:var(--saffron);color:#fff;box-shadow:0 8px 24px -10px rgba(185,110,30,.6)}
.btn-cta:hover{background:var(--saffron-deep);transform:translateY(-2px)}
.btn-ghost-light{background:transparent;color:#fff;border-color:rgba(244,239,230,.5)}
.btn-ghost-light:hover{border-color:#fff;background:rgba(255,255,255,.08)}

/* Hero secondary CTA — text-link style, clearly subordinate to the filled button */
.hero-text-cta{
  display:inline-flex;align-items:center;
  color:rgba(244,239,230,.9);
  font-family:var(--sans);font-size:.82rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  text-decoration:none;
  padding:.95em 0;
  min-height:48px;
  border-bottom:1px solid rgba(244,239,230,.42);
  transition:color .25s,border-color .25s;
}
.hero-text-cta:hover{color:#fff;border-color:rgba(244,239,230,.95)}

/* ── Promo bar ── */
.promo{background:var(--ink);color:var(--on-dark);font-size:.78rem;letter-spacing:.02em}
.promo-inner{max-width:var(--maxw);margin:0 auto;padding:.55rem var(--gut);
  display:flex;align-items:center;justify-content:center;gap:.7rem;flex-wrap:wrap;text-align:center}
.promo-glyph{color:var(--gold)}
.promo strong{color:var(--gold)}
.promo-link{color:var(--saffron);text-decoration:none;font-weight:700}
.promo-link:hover{text-decoration:underline}

/* ── Header ── */
.header{position:sticky;top:0;z-index:60;transition:background .3s,box-shadow .3s,color .3s;color:#fff}
.header-inner{max-width:var(--maxw);margin:0 auto;padding:.8rem var(--gut);
  display:flex;align-items:center;justify-content:space-between;gap:1rem}
.wordmark{font-family:var(--script);font-size:2.05rem;line-height:1;color:#fff;text-decoration:none;white-space:nowrap;flex:0 0 auto}
.header.solid{background:rgba(244,239,230,.96);backdrop-filter:blur(10px);box-shadow:0 1px 0 rgba(31,29,27,.1);color:var(--ink)}
.header.solid .wordmark{color:var(--ink)}

.nav{flex:1 1 auto;display:flex;justify-content:center}
.nav-list{list-style:none;display:flex;gap:.4rem;margin:0;padding:0}
.nav-item{position:relative}
.nav-trigger{
  background:none;border:none;color:inherit;font-family:var(--sans);
  font-size:.84rem;letter-spacing:.04em;padding:.5rem .8rem;cursor:pointer;
}
.nav-trigger::after{content:"";display:block;height:1px;background:currentColor;width:0;margin-top:3px;transition:width .25s}
.nav-item:hover .nav-trigger::after,.nav-item:focus-within .nav-trigger::after{width:100%}
.dropdown{
  list-style:none;margin:0;padding:.5rem;position:absolute;top:100%;left:50%;
  transform:translateX(-50%) translateY(8px);
  background:var(--paper);min-width:230px;box-shadow:0 18px 40px -16px rgba(31,29,27,.4);
  opacity:0;visibility:hidden;transition:opacity .2s,transform .2s;border-top:2px solid var(--saffron);
}
.nav-item:hover .dropdown,.nav-item:focus-within .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown a{display:block;padding:.6rem .8rem;color:var(--text);text-decoration:none;font-family:var(--serif);font-size:1.02rem}
.dropdown a:hover{background:var(--bg);color:var(--saffron-deep)}

.header-right{display:flex;align-items:center;gap:.9rem;flex:0 0 auto}
.social{display:flex;gap:.7rem}
.social a{color:inherit;opacity:.85;transition:opacity .2s,color .2s}
.social a:hover{opacity:1;color:var(--saffron)}
.header-cta{font-size:.72rem;padding:.7em 1.2em;min-height:42px}
.menu-toggle{display:none;background:none;border:1px solid currentColor;color:inherit;
  font-family:var(--sans);font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;
  padding:.6rem .9rem;cursor:pointer}

/* ── Mobile menu ── */
.mobile-menu{position:fixed;inset:0;z-index:70;background:var(--ink);color:var(--on-dark);
  padding:5rem var(--gut) 3rem;overflow-y:auto;transform:translateX(100%);transition:transform .35s ease;visibility:hidden}
.mobile-menu.open{transform:translateX(0);visibility:visible}
.mobile-menu details{border-bottom:1px solid rgba(244,239,230,.15)}
.mobile-menu summary{font-family:var(--serif);font-size:1.6rem;padding:.8rem 0;cursor:pointer;list-style:none}
.mobile-menu summary::-webkit-details-marker{display:none}
.mobile-menu summary::after{content:"+";float:right;color:var(--saffron)}
.mobile-menu details[open] summary::after{content:"–"}
.mobile-menu ul{list-style:none;margin:0 0 .8rem;padding:0}
.mobile-menu ul a{display:block;padding:.45rem 0;color:rgba(244,239,230,.85);text-decoration:none;font-size:1rem}
.mobile-cta{margin:1.8rem 0 1.2rem;width:100%}
.mobile-social{display:flex;gap:1.2rem;flex-wrap:wrap}
.mobile-social a{color:var(--gold);text-decoration:none;font-size:.85rem;letter-spacing:.04em}

/* ── HERO ── */
.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;
  margin-top:calc(-1 * (3.65rem + 1.6rem + 1.1rem))}
.hero-media{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero-scrim{position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(31,29,27,.5) 0%,rgba(31,29,27,0) 26%),
    linear-gradient(0deg,rgba(31,29,27,.88) 0%,rgba(31,29,27,.38) 36%,rgba(31,29,27,0) 68%);
}
.hero-inner{position:relative;z-index:2;max-width:var(--maxw);margin:0 auto;width:100%;
  padding:0 var(--gut) clamp(3rem,9vh,7rem);color:#fff}
.hero-wordmark{font-family:var(--script);font-size:clamp(2.4rem,7vw,4.6rem);line-height:.9;margin:0 0 .3rem;color:#fff}
.hero-h1{font-family:var(--serif);font-weight:500;font-size:clamp(3.4rem,12vw,8.5rem);
  line-height:.92;margin:.1rem 0 .8rem;letter-spacing:-.01em}
.hero-sub{font-family:var(--serif);font-size:clamp(1.1rem,3vw,1.9rem);font-style:italic;
  color:rgba(244,239,230,.92);margin:0 0 2rem;max-width:32ch}
.hero-ctas{display:flex;gap:1.4rem;flex-wrap:wrap;align-items:center}
.hero-scrollcue{position:absolute;left:50%;bottom:18px;z-index:2;transform:translateX(-50%)}
.hero-scrollcue span{display:block;width:1px;height:42px;
  background:linear-gradient(rgba(255,255,255,0),rgba(255,255,255,.8));animation:cue 2.2s infinite}
@keyframes cue{0%,100%{opacity:.3;transform:scaleY(.6)}50%{opacity:1;transform:scaleY(1)}}

/* ── Display headings ── */
.display-h2{font-family:var(--serif);font-weight:500;font-size:clamp(2.1rem,5vw,3.6rem);
  line-height:1.04;letter-spacing:-.01em;margin:0 0 1.3rem;color:var(--ink)}
.display-h2 em{font-style:italic}
.display-h2.center{text-align:center}
.tools-eyebrow{font-family:var(--sans);font-size:.72rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--saffron);margin:0 0 1rem}
.tools-eyebrow.dark{color:var(--saffron-deep)}
.tools-eyebrow.center{text-align:center}
.link-arrow{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--sans);font-weight:700;
  font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--saffron-deep);
  text-decoration:none;margin-top:.6rem;padding-bottom:3px;border-bottom:1px solid var(--saffron)}
.link-arrow::after{content:"→";transition:transform .25s}
.link-arrow:hover::after{transform:translateX(5px)}

/* ── INTRO ── */
.intro{background:var(--paper);padding:clamp(4rem,9vw,8rem) 0}
.intro-grid{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut);
  display:grid;grid-template-columns:0.85fr 1.15fr;gap:clamp(2rem,6vw,5rem);align-items:center}

/* isolation:isolate creates a new stacking context so z-index:-1 on ::after
   stays behind the <img> but above the section background — making the border visible */
.intro-photo{position:relative;isolation:isolate}
.intro-photo img{width:100%;aspect-ratio:3/4;object-fit:cover;filter:grayscale(1) contrast(1.02)}
.intro-photo::after{content:"";position:absolute;inset:0;transform:translate(16px,16px);
  border:2px solid var(--gold);z-index:-1;pointer-events:none}

.intro-copy p{max-width:60ch;margin:0 0 1.1rem}
.intro-copy a{color:var(--saffron-deep);text-decoration-color:rgba(217,137,46,.4);text-underline-offset:3px}
.intro-copy a:hover{text-decoration-color:var(--saffron)}

/* ── TOOLS — celestial band ── */
.tools{position:relative;background:var(--ink);color:var(--on-dark);overflow:hidden;
  padding:clamp(4rem,9vw,7rem) 0}
.starfield{position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%,rgba(244,239,230,.7),transparent),
    radial-gradient(1.4px 1.4px at 78% 14%,rgba(244,239,230,.6),transparent),
    radial-gradient(1px 1px at 33% 70%,rgba(199,162,75,.7),transparent),
    radial-gradient(1.6px 1.6px at 62% 55%,rgba(244,239,230,.5),transparent),
    radial-gradient(1px 1px at 88% 80%,rgba(244,239,230,.6),transparent),
    radial-gradient(1.2px 1.2px at 45% 35%,rgba(199,162,75,.6),transparent),
    radial-gradient(1px 1px at 20% 88%,rgba(244,239,230,.55),transparent);
  animation:twinkle 6s ease-in-out infinite alternate}
@keyframes twinkle{from{opacity:.35}to{opacity:.6}}
.tools-inner{position:relative;z-index:2;max-width:var(--maxw);margin:0 auto;padding:0 var(--gut);text-align:center}
.tools-title{font-family:var(--serif);font-weight:500;font-size:clamp(2.4rem,6vw,4.4rem);margin:0 0 3rem;line-height:1}
.glyph-row{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,3vw,2.5rem)}
.glyph{display:flex;flex-direction:column;align-items:center;gap:1rem;text-decoration:none;
  color:var(--on-dark);padding:1rem;transition:transform .3s}
.glyph:hover{transform:translateY(-6px)}
.glyph-img{width:clamp(90px,12vw,140px);height:clamp(90px,12vw,140px);display:flex;align-items:center;
  justify-content:center;transition:filter .3s}
.glyph-img img{max-height:100%;width:auto;filter:brightness(0) invert(1)}
.glyph:hover .glyph-img{filter:drop-shadow(0 0 18px rgba(199,162,75,.6))}
.glyph-label{font-family:var(--serif);font-size:clamp(1.05rem,2.4vw,1.4rem);line-height:1.15;max-width:14ch}

/* ── Spreads ── */
.spread{padding:clamp(4rem,9vw,8rem) 0}
.spread.meditate{background:var(--paper)}
.spread-grid{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut);
  display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(2rem,6vw,5rem);align-items:center}
.spread-grid.reverse{grid-template-columns:1.1fr 1fr}
.spread-copy p{max-width:58ch;margin:0 0 1.1rem}
.dot-list{list-style:none;margin:0 0 1.6rem;padding:0}
.dot-list li{position:relative;padding-left:1.5rem;margin-bottom:.55rem}
.dot-list li::before{content:"";position:absolute;left:0;top:.7em;width:7px;height:7px;
  border-radius:50%;background:var(--saffron)}

/* Mentorship collage */
.mentorship-media{position:relative;min-height:clamp(380px,46vw,560px)}
.mentorship-media img{position:absolute;object-fit:cover;box-shadow:0 22px 50px -22px rgba(31,29,27,.55)}
.mentorship-media .m-tall{width:62%;aspect-ratio:3/4;top:0;left:0;z-index:2}
.mentorship-media .m-wide{width:52%;aspect-ratio:4/3;top:18%;right:0;z-index:1}
.mentorship-media .m-sq{width:42%;aspect-ratio:1/1;bottom:0;left:22%;z-index:3;border:5px solid var(--bg)}

/* Meditate collage */
.meditate-media{position:relative;min-height:clamp(380px,42vw,540px)}
.meditate-media .big{width:78%;aspect-ratio:4/5;object-fit:cover;box-shadow:0 22px 50px -22px rgba(31,29,27,.55)}
.meditate-media .float{position:absolute;width:46%;aspect-ratio:3/4;object-fit:cover;right:0;bottom:6%;
  border:6px solid var(--paper);box-shadow:0 18px 40px -18px rgba(31,29,27,.5)}

/* ── COSMOLOGY ── */
.cosmology{position:relative;padding:clamp(3rem,8vw,6rem) 0 clamp(4rem,9vw,8rem);overflow:hidden}
.cosmology-title{font-family:var(--serif);font-weight:500;font-size:clamp(3.5rem,16vw,12rem);
  line-height:.85;margin:0 0 clamp(1rem,3vw,2.5rem);padding:0 var(--gut);color:var(--ink);
  letter-spacing:-.02em;white-space:nowrap;overflow:hidden;text-overflow:clip}
.cosmology-grid{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut);
  display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(2rem,6vw,5rem);align-items:center}
.cosmology-copy{border-left:2px solid var(--saffron);padding-left:1.5rem}
.cosmology-copy p{max-width:52ch;margin:0 0 1.1rem}
.cosmology-media img{width:100%;aspect-ratio:4/5;object-fit:cover;box-shadow:0 26px 60px -24px rgba(31,29,27,.6)}

/* ── TESTIMONIALS ── */
.testimonials{background:var(--ink);color:var(--on-dark);padding:clamp(4rem,9vw,7rem) 0}
.testi-inner{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut)}
.testimonials .display-h2{color:#fff;margin-bottom:3rem}
.testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3rem)}
.testi-card{position:relative;margin:0;background:rgba(244,239,230,.04);
  border:1px solid rgba(244,239,230,.12);padding:clamp(1.8rem,3vw,2.6rem)}
.quote-mark{font-family:var(--serif);font-size:5rem;line-height:0;color:var(--saffron);
  position:absolute;top:2.4rem;left:1.3rem;opacity:.55}
.testi-card blockquote{margin:1.4rem 0 1.2rem;font-family:var(--serif);
  font-size:clamp(1.1rem,1.6vw,1.35rem);line-height:1.55;color:rgba(244,239,230,.92)}
.testi-card figcaption{font-family:var(--sans);font-size:.85rem;letter-spacing:.04em;color:var(--gold)}
.testi-card figcaption a{color:var(--saffron);text-underline-offset:3px}

/* ── GALLERY ── */
/* Uniform row heights eliminate the white gap that appears when different
   aspect-ratio values within the same grid row don't stretch to match each other */
.gallery{padding:0}
.gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  grid-auto-rows:clamp(220px,31vw,440px);
}
.gallery .g{margin:0;overflow:hidden;position:relative;background:var(--ink)}
.gallery .g img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.gallery .g:hover img{transform:scale(1.05)}
/* Crop the yoga/portrait shots to keep the subject in frame at landscape ratios */
.gallery .g1 img{object-position:center 20%}
.gallery .g3 img{object-position:center 30%}

/* ── CLOSING ── */
.closing{position:relative;background:var(--ink);color:var(--on-dark);overflow:hidden;
  padding:clamp(5rem,12vw,9rem) 0;text-align:center}
.closing-inner{position:relative;z-index:2;max-width:760px;margin:0 auto;padding:0 var(--gut)}
.hari-om{font-family:var(--serif);font-style:italic;font-size:clamp(2.6rem,8vw,5rem);
  margin:0 0 .6rem;color:#fff;line-height:1}
.closing-lead{font-family:var(--serif);font-size:clamp(1.2rem,2.6vw,1.7rem);
  color:rgba(244,239,230,.85);margin:0 0 2rem}
.closing-cta{margin-bottom:2.6rem}
.news-form{display:flex;gap:.5rem;max-width:460px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.news-form input{flex:1 1 200px;min-width:0;background:rgba(244,239,230,.06);
  border:1px solid rgba(244,239,230,.3);color:#fff;padding:.9rem 1rem;
  font-family:var(--sans);font-size:.95rem}
.news-form input::placeholder{color:rgba(244,239,230,.5)}
.news-btn{flex:0 0 auto}
.news-note{font-size:.85rem;color:rgba(244,239,230,.6);margin:.9rem 0 0}
.news-note em{font-style:italic;color:var(--gold)}

/* ── FOOTER ── */
.footer{background:#16140f;color:var(--on-dark);padding:clamp(3rem,6vw,4.5rem) 0 0}
.footer-inner{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut) 2.5rem;
  display:grid;grid-template-columns:1fr auto auto;gap:2rem;align-items:start}
.footer-wordmark{font-family:var(--script);font-size:2.4rem;line-height:1;margin:0 0 .6rem;color:#fff}
.footer-credit{font-size:.82rem;color:rgba(244,239,230,.7);margin:0;max-width:34ch}
.footer-credit a{color:var(--gold);text-underline-offset:3px}
.footer-nav{display:flex;flex-direction:column;gap:.55rem}
.footer-nav a{color:rgba(244,239,230,.85);text-decoration:none;font-size:.92rem}
.footer-nav a:hover{color:var(--saffron)}
.footer-social{display:flex;gap:1rem}
.footer-social a{color:rgba(244,239,230,.8)}
.footer-social a:hover{color:var(--saffron)}
.footer-bottom{border-top:1px solid rgba(244,239,230,.12);
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  max-width:var(--maxw);margin:0 auto;padding:1.5rem var(--gut)}
.footer-tm{font-size:.74rem;color:rgba(244,239,230,.55);margin:0;max-width:60ch}
.footer-q{font-size:.85rem;margin:0;color:rgba(244,239,230,.8)}
.footer-q a{color:var(--saffron);text-underline-offset:3px}

/* ── Scroll reveal ── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease,transform .8s ease}
.reveal.in{opacity:1;transform:none}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media(max-width:980px){
  .nav,.header-cta,.social{display:none}
  .menu-toggle{display:inline-block}
  .header-inner{padding:.7rem var(--gut)}
  .wordmark{font-size:1.85rem}
}

@media(max-width:760px){
  body{font-size:16px}
  .intro-grid,
  .spread-grid,
  .spread-grid.reverse,
  .cosmology-grid{grid-template-columns:1fr;gap:2.2rem}
  .intro-photo img{aspect-ratio:4/5;max-width:420px;margin:0 auto}
  .glyph-row{grid-template-columns:1fr 1fr;gap:1.6rem 1rem}
  .testi-grid{grid-template-columns:1fr;gap:1.4rem}
  .footer-inner{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column}
  .cosmology-title{font-size:clamp(3rem,18vw,5rem);white-space:normal}
  .cosmology-copy{border-left:none;padding-left:0;border-top:2px solid var(--saffron);padding-top:1.2rem}
  .spread-grid.reverse .spread-media{order:-1}

  /* Mentorship: left column spans both rows, right column stacks two images */
  .mentorship-media{
    display:grid;grid-template-columns:1fr 1fr;gap:10px;
    position:static;min-height:0;
  }
  .mentorship-media img{position:static;width:100% !important;border:none}
  .mentorship-media .m-tall{grid-column:1/2;grid-row:1/3;aspect-ratio:3/4}
  .mentorship-media .m-wide{grid-column:2/3;grid-row:1/2;aspect-ratio:4/3}
  .mentorship-media .m-sq{grid-column:2/3;grid-row:2/3;aspect-ratio:4/3}

  /* Meditate: both images stack full-width */
  .meditate-media{position:static;min-height:0}
  .meditate-media .big{
    position:static;width:100%;aspect-ratio:3/2;
    object-fit:cover;border:none;box-shadow:none;
  }
  .meditate-media .float{
    position:static;width:100%;aspect-ratio:4/5;
    object-fit:cover;border:none;box-shadow:none;
    margin-top:8px;
  }

  .hero{min-height:88svh}
}

@media(max-width:540px){
  /* Stack newsletter form on small phones for generous touch targets */
  .news-form{flex-direction:column;align-items:stretch;gap:.7rem}
  .news-form input,.news-btn{flex:none;width:100%}
}

@media(max-width:420px){
  .hero-ctas{flex-direction:column;align-items:flex-start;gap:.9rem}
  .hero-ctas .btn-cta{width:100%}
  .gallery-grid{grid-template-columns:1fr}
}

@media(prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
  .reveal{opacity:1;transform:none}
}