/* ===================================================================
   devishakti — desert / glass design system
   Brand-book palette: 6 named colours — cherry, terracotta(orange), sage,
   ink(paper), cream, ember. The *-2/-3 tokens below are sanctioned tonal
   steps of those colours (hand-tuned for gradient depth), documented in
   docs/PALETTE.md — not new hues.
   No white anywhere — glass alpha uses paper-tinted rgba(255,236,217,*).
   =================================================================== */

:root{
  --paper:   #2E2A1C;   /* primary ink text (dark) */
  --paper-2: #4A4232;
  --orange:  #B0573A;   /* warm terracotta accent */
  --orange-2:#C56B45;
  --cherry:  #7E2A1E;   /* red — kept, used only as accent */
  --cherry-2:#9A3826;
  --cherry-3:#5B1A1A;
  --sage:    #5A6747;   /* deep sage accent */
  --ink:     #2E2A1C;
  --cream:   #FBF6EC;   /* light text on accent fills */
  --ember:   #E89171;   /* brand-book secondary — glow · breath-orb tint */

  --paper-soft: rgba(46,42,28,.86);
  --paper-mid:  rgba(46,42,28,.64);
  --paper-low:  rgba(46,42,28,.48);
  --paper-fade: rgba(46,42,28,.30);
  --paper-line: rgba(46,42,28,.15);
  --paper-hair: rgba(46,42,28,.08);

  /* Dawn field + frosted panels.
     NOTE: --bg-* greens (sage/cream) drift from the canonical 5-colour desert
     palette per the brand memory. Kept here because the DAWN override layer
     (below, ~line 1620+) intentionally shifts the site to a light-field look.
     Flag for design review if you want a strict-desert revert. */
  --bg-top:#C8DCC2; --bg-mid:#EAEDDB; --bg-bot:#E5DCBE;
  /* Frost panels — paper-tinted, not pure white, to honour the brand rule
     "only rgba(255,236,217,*) is allowed as a white-adjacent surface". */
  --frost:   rgba(255,236,217,.55);
  --frost-2: rgba(255,236,217,.38);
  --frost-line: rgba(46,42,28,.13);

  /* Single Latin family — Inter — applied across display, body, and small
     labels. Matches the Studio Eighteen reference: tight tracking on bold
     display, regular weight + small size on labels, one family throughout.
     Devanagari (--dn) and editorial italic (--serif) stay separate because
     they're content-bearing, not typographic-system choices. */
  --display:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  --body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  --mono:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  --dn:'Noto Serif Devanagari',serif;
  --serif:'Source Serif 4','Source Serif Pro',Georgia,serif;
}

/* ─── Reset + base ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
  margin:0;background:var(--cherry);color:var(--paper);
  font-family:var(--body);font-weight:400;
  font-size:16px;line-height:1.55;letter-spacing:-0.003em;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font:inherit;color:inherit;border:0;background:none;cursor:pointer;}
::selection{background:var(--paper);color:var(--cherry);}
.dn{font-family:var(--dn);font-weight:500;}
.mono{font-family:var(--mono);font-weight:500;font-size:11px;letter-spacing:.18em;text-transform:uppercase;}

/* ─── A11y ─────────────────────────────────────────────────── */
.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--paper);color:var(--cherry);padding:12px 16px;border-radius:8px;
  z-index:100;font-size:13px;
}
.skip-link:focus{left:16px;top:16px;}
:focus-visible{outline:2px solid var(--paper);outline-offset:3px;border-radius:4px;}

/* ─── Glass utility ────────────────────────────────────────── */
.glass{
  background:rgba(255,236,217,.13);
  backdrop-filter:blur(22px) saturate(140%);
  -webkit-backdrop-filter:blur(22px) saturate(140%);
  border:1px solid rgba(255,236,217,.22);
  box-shadow:
    0 1px 0 rgba(255,236,217,.32) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 18px 48px rgba(0,0,0,.28);
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .glass{background:rgba(91,26,26,.55);}
}

/* ─── NAV (sticky glass pill row) ─────────────────────────── */
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(58,15,15,.45);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-bottom:1px solid rgba(255,236,217,.10);
}
.nav-inner{
  width:100%;margin:0;
  display:flex;align-items:center;justify-content:space-between;
  /* Same container math as every section → brand sits on the shared left edge */
  padding:14px max(clamp(20px,4vw,56px), calc((100% - 1280px) / 2));gap:24px;
}
.nav-brand{
  display:inline-flex;align-items:baseline;gap:9px;line-height:1;
  font-family:var(--display);font-weight:700;font-size:clamp(17px,4.4vw,19px);letter-spacing:-.018em;text-transform:uppercase;
  color:var(--paper);white-space:nowrap;
}
/* Devanagari + latin share one size and sit on the same baseline, so the
   wordmark reads as a single, level mark. The 0.96em trims the slightly
   taller Devanagari body to optically match the latin. */
.nav-brand .dn{font-family:var(--dn);font-size:0.96em;font-weight:600;line-height:1;color:var(--paper);}
.nav-brand .dot{width:4px;height:4px;border-radius:50%;background:var(--paper);opacity:.6;align-self:center;}

.nav-links{display:flex;gap:8px;align-items:center;}
.nav-links a{
  padding:10px 18px;border-radius:999px;
  font-size:13.5px;font-weight:500;letter-spacing:-.002em;
  color:var(--paper-soft);
  background:rgba(255,236,217,.05);
  border:1px solid rgba(255,236,217,.12);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover{background:rgba(255,236,217,.16);color:var(--paper);transform:translateY(-1px);}
.nav-links a[aria-current="page"]{background:rgba(126,42,30,.10);color:var(--cherry);border-color:rgba(126,42,30,.32);}
.nav-cta{
  font-size:13.5px;font-weight:500;letter-spacing:-.002em;
  padding:11px 20px;border-radius:999px;
  background:var(--paper);color:var(--cherry);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  transition:transform .2s ease, opacity .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{transform:translateY(-1px);opacity:.96;}

.nav-toggle{
  display:none;width:44px;height:44px;border-radius:999px;
  align-items:center;justify-content:center;
  background:rgba(255,236,217,.10);border:1px solid rgba(255,236,217,.22);
  color:var(--paper);
}
.nav-toggle .bars,.nav-toggle .bars::before,.nav-toggle .bars::after{
  display:block;width:22px;height:1.5px;background:currentColor;border-radius:2px;position:relative;
}
.nav-toggle .bars::before,.nav-toggle .bars::after{content:"";position:absolute;left:0;}
.nav-toggle .bars::before{top:-7px;}
.nav-toggle .bars::after{top:7px;}

@media (max-width:880px){
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .nav-toggle{display:inline-flex;}
  .nav-inner{padding:14px 20px;}
}

/* ─── Mobile nav overlay ──────────────────────────────────── */
.nav-overlay{
  position:fixed;inset:0;z-index:100;
  background:
    radial-gradient(120% 80% at 50% 30%, var(--cherry-2) 0%, var(--cherry) 60%, var(--cherry-3) 100%);
  display:flex;flex-direction:column;
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateY(-8px);
  transition:opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
.nav-overlay.open{
  opacity:1;visibility:visible;pointer-events:auto;transform:none;
  transition:opacity .25s ease, transform .25s ease, visibility 0s;
}
.nav-overlay-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 20px;border-bottom:1px solid rgba(255,236,217,.15);
  flex:none;
}
.nav-overlay-brand{
  display:inline-flex;align-items:baseline;gap:10px;line-height:1;
  font-family:var(--display);font-weight:600;font-size:18px;color:var(--paper);
}
.nav-overlay-brand .dn{font-family:var(--dn);font-size:18px;font-weight:600;}
.nav-overlay-brand .dot{width:4px;height:4px;border-radius:50%;background:var(--paper);opacity:.6;align-self:center;}
.nav-overlay-close{
  width:44px;height:44px;border-radius:999px;font-size:26px;line-height:1;
  background:rgba(255,236,217,.10);color:var(--paper);
  display:inline-flex;align-items:center;justify-content:center;
}
.nav-overlay-body{
  flex:1 1 auto;overflow-y:auto;padding:8px 20px 20px;
  display:flex;flex-direction:column;
}
.nav-overlay-links{display:flex;flex-direction:column;margin-top:8px;}
.nav-overlay-links a{
  font-family:var(--display);font-weight:400;
  font-size:28px;letter-spacing:-.025em;color:var(--paper);
  padding:18px 4px;border-bottom:1px solid rgba(255,236,217,.18);
  display:flex;align-items:center;justify-content:space-between;
  min-height:64px;
}
.nav-overlay-links a[aria-current="page"]{font-weight:500;color:var(--cherry);}
.nav-overlay-links a[aria-current="page"]::after{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--cherry);margin-left:12px;
}
.nav-overlay-cta-row{margin-top:auto;padding-top:24px;}
.nav-overlay-cta{
  display:flex;align-items:center;justify-content:center;gap:12px;
  width:100%;min-height:56px;padding:16px 22px;border-radius:999px;
  background:var(--paper);color:var(--cherry);
  font-family:var(--body);font-size:15px;font-weight:500;letter-spacing:-.005em;
}
.nav-overlay-cta .arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:var(--cherry);color:var(--paper);font-size:12px;
}
.nav-overlay-foot{
  margin-top:16px;padding-bottom:env(safe-area-inset-bottom);
  font-size:13px;color:var(--paper-mid);text-align:center;
}

/* ─── HOME HERO (Luma-aligned, desert backdrop) ─────────────── */
.hero{
  position:relative;
  min-height:100dvh;
  padding:90px clamp(20px,4vw,56px) clamp(56px,8vw,96px);
  margin-top:-66px;
  display:flex;flex-direction:column;justify-content:space-between;
  gap:48px;overflow:hidden;isolation:isolate;
  color:var(--paper);
}
.hero::before{
  content:"";position:absolute;inset:0;z-index:-3;
  background:radial-gradient(120% 80% at 50% 38%,
              var(--orange-2) 0%, var(--orange) 38%, var(--cherry-2) 72%, var(--cherry) 100%);
}
.hero::after{
  content:"";position:absolute;inset:0;z-index:-2;
  background:image-set(url('/assets/hero.webp') type('image/webp'),
                       url('/assets/hero.jpg') type('image/jpeg')) center/cover no-repeat;
  mix-blend-mode:overlay;opacity:.30;filter:contrast(1.04) saturate(.9);
}
.hero .veil{
  position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(60% 50% at 50% 50%, transparent 0%, rgba(91,26,26,.32) 75%, rgba(40,8,8,.55) 100%);
}

.hero-inner{
  width:100%;max-width:1280px;margin:auto auto 0;
  display:grid;grid-template-columns:1fr auto;align-items:end;gap:32px;
}
.hero-copy{max-width:640px;}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:14px;
  margin:0 0 22px;color:var(--paper);
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:500;
}
.hero-eyebrow .dn{font-family:var(--dn);font-size:14px;letter-spacing:.04em;color:var(--paper);text-transform:none;font-weight:600;}
.hero-eyebrow .sep{display:inline-block;width:48px;height:1px;background:var(--paper-fade);}

.hero h1{
  font-family:var(--display);font-weight:800;
  font-size:clamp(44px,7vw,88px);
  line-height:.96;letter-spacing:-.042em;color:var(--paper);
  margin:0 0 22px;
  text-shadow:0 2px 28px rgba(0,0,0,.35);
}
.hero h1 em{font-family:var(--serif);font-style:italic;font-weight:300;color:rgba(239,217,192,.72);letter-spacing:-.012em;}
.hero-sub{
  font-size:clamp(15px,1.2vw,18px);line-height:1.55;
  color:var(--paper-soft);max-width:520px;margin:0 0 32px;
}

.hero-cta-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:24px;}
.hero-cta{
  display:inline-flex;align-items:center;gap:12px;
  padding:14px 26px;border-radius:999px;
  background:var(--paper);color:var(--cherry);
  font-weight:500;font-size:14.5px;letter-spacing:-.005em;
  box-shadow:0 10px 26px rgba(0,0,0,.24);
  transition:transform .25s ease, box-shadow .25s ease;
}
.hero-cta:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(0,0,0,.32);}
.hero-cta .arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:var(--cherry);color:var(--paper);font-size:12px;
  transition:transform .3s ease;
}
.hero-cta:hover .arrow{transform:translateX(3px);}
.hero-ghost{
  font-size:14px;color:var(--paper-mid);
  border-bottom:1px solid var(--paper-fade);padding-bottom:3px;
  transition:color .2s ease, border-color .2s ease;
}
.hero-ghost:hover{color:var(--paper);border-color:var(--paper);}
.hero-meta{font-size:13px;color:var(--paper-mid);}
.hero-meta b{color:var(--paper);font-weight:500;}
.hero-portrait{display:none;}

/* Credentials strip — used inside .creds-band (own section below hero) */
.creds-band{
  padding:clamp(28px,4.5vw,52px) clamp(20px,4vw,56px);
  background:linear-gradient(180deg, rgba(46,20,12,.04) 0%, rgba(46,20,12,0) 100%);
  border-bottom:1px solid rgba(46,42,28,.10);
}
.creds-strip{
  width:100%;max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;
}
.creds-band .creds-cell .v{ text-shadow:none; }
.creds-cell .l{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);
}
.creds-cell .v{
  font-family:var(--display);font-weight:600;font-size:19px;
  letter-spacing:-.015em;color:var(--paper);margin-top:8px;
  text-shadow:0 1px 8px rgba(0,0,0,.35);
}
.creds-cell .v em{font-family:var(--serif);font-style:italic;color:var(--paper-mid);font-weight:300;}
@media (max-width:760px){.creds-strip{grid-template-columns:repeat(2,1fr);gap:22px;}}

/* ─── BREATH SECTION (home) ────────────────────────────────── */
.breath-section{
  background:radial-gradient(80% 100% at 50% 0%,
              var(--cherry-2) 0%, var(--cherry) 60%, var(--cherry-3) 100%);
  padding:clamp(80px,9vw,140px) clamp(20px,4vw,56px);
  display:flex;justify-content:center;
}
.breath-card{
  width:min(880px,100%);border-radius:32px;padding:clamp(40px,5vw,64px) clamp(26px,4vw,56px);
  text-align:center;
}
.breath-card .eyebrow{
  display:inline-flex;align-items:center;gap:12px;justify-content:center;
  color:var(--paper-low);margin:0 0 18px;
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
}
.breath-card h2{
  font-family:var(--display);font-weight:700;
  font-size:clamp(32px,4.2vw,52px);letter-spacing:-.036em;line-height:1.02;
  color:var(--paper);margin:0;
}
.breath-card h2 em{font-family:var(--serif);font-style:italic;color:var(--paper-mid);font-weight:300;}

.orb-wrap{
  position:relative;width:220px;height:220px;margin:48px auto 36px;
  display:flex;align-items:center;justify-content:center;
}
.orb-halo{
  position:absolute;inset:-20px;border-radius:50%;
  /* Ember glow (brand book §04: ember = breath-orb tint). Was an off-canon
     sage-grey rgba(122,132,102) — corrected to ember #E89171. */
  background:radial-gradient(circle, rgba(232,145,113,.38) 0%, transparent 65%);
  filter:blur(8px);animation:halo 14s ease-in-out infinite;
}
.orb{
  width:140px;height:140px;border-radius:50%;
  background:radial-gradient(circle at 35% 30%,
              #F5C9A8 0%, var(--orange-2) 45%, var(--orange) 75%, var(--cherry-2) 100%);
  box-shadow:
    0 0 60px rgba(232,145,113,.55),
    0 0 120px rgba(232,145,113,.32),
    inset -10px -14px 30px rgba(91,26,26,.40),
    inset 8px 12px 22px rgba(255,236,217,.32);
  animation:breathe 14s ease-in-out infinite;
}
@keyframes breathe{
  0%   {transform:scale(.78);}
  14.3%{transform:scale(.78);}
  42.9%{transform:scale(1.18);}
  57.1%{transform:scale(1.18);}
  100% {transform:scale(.78);}
}
@keyframes halo{
  0%,100%{opacity:.5;transform:scale(.95);}
  50%    {opacity:.85;transform:scale(1.08);}
}
.breath-count{
  font-family:var(--mono);font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);
  display:flex;justify-content:center;gap:16px;flex-wrap:wrap;
}
.breath-count span{display:inline-flex;align-items:center;gap:6px;}
.breath-count em{font-style:normal;}
.breath-count .num{
  display:inline-flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:50%;
  background:rgba(255,236,217,.10);border:1px solid var(--paper-line);
  font-size:11px;
}
.breath-count .dot{opacity:.4;}

/* ─── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero{
  position:relative;
  padding:140px clamp(20px,4vw,56px) clamp(48px,6vw,80px);
  margin-top:-66px;
  background:radial-gradient(110% 80% at 50% 0%,
              var(--cherry-2) 0%, var(--cherry) 60%, var(--cherry-3) 100%);
  overflow:hidden;isolation:isolate;color:var(--paper);
}
.page-hero::before{
  content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(232,145,113,.20) 0%, transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(232,145,113,.12) 0%, transparent 60%);
}
.page-hero-inner{
  position:relative;z-index:1;
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:1fr;gap:32px;
}
.page-hero-eyebrow{
  display:inline-flex;align-items:center;gap:14px;
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:500;
  color:var(--paper);margin:0 0 22px;
}
.page-hero-eyebrow .sep{display:inline-block;width:48px;height:1px;background:var(--paper-fade);}
.page-hero-eyebrow .dn{font-family:var(--dn);font-size:14px;letter-spacing:.04em;color:var(--paper);text-transform:none;font-weight:600;}
.page-hero h1{
  font-family:var(--display);font-weight:800;
  font-size:clamp(40px,6.4vw,80px);line-height:.98;letter-spacing:-.042em;
  color:var(--paper);margin:0 0 clamp(18px,2vw,28px);max-width:20ch;
  text-shadow:0 2px 24px rgba(0,0,0,.30);
}
.page-hero h1 em{font-family:var(--serif);font-style:italic;color:var(--paper-mid);font-weight:300;}
.page-hero-sub{
  font-size:clamp(15px,1.3vw,18px);line-height:1.55;
  color:var(--paper-soft);margin:0;max-width:62ch;
}
/* Optional portrait beside the page-hero text. Add `has-portrait` to the
   section and a <figure class="page-hero-portrait"> inside .page-hero-inner. */
.page-hero.has-portrait .page-hero-inner{
  grid-template-columns:minmax(0,1fr) clamp(240px,28vw,380px);
  align-items:center;gap:clamp(28px,5vw,60px);
}
.page-hero-portrait{
  margin:0;border-radius:20px;overflow:hidden;
  aspect-ratio:3/4;background:var(--cherry-3);
  border:1px solid var(--frost-line);
  box-shadow:0 26px 64px -30px rgba(0,0,0,.6);
}
.page-hero-portrait img{display:block;width:100%;height:100%;object-fit:cover;}
@media (max-width:780px){
  /* Stack the portrait below the hero text and CENTER it (every page portrait
     uses this — about, contact, offerings, practice, how-i-practice). The home
     banner uses .hero, not this, so it's unaffected. */
  .page-hero.has-portrait .page-hero-inner{grid-template-columns:1fr;}
  .page-hero-portrait{max-width:340px;width:100%;margin-left:auto;margin-right:auto;}
}

/* ─── Section shell on cherry ───────────────────────────────── */
section.shell{position:relative;background:var(--cherry);color:var(--paper);}
.wrap{max-width:1280px;margin:0 auto;padding:clamp(80px,11vw,144px) clamp(20px,4vw,56px);}
.wrap-narrow{max-width:980px;margin:0 auto;padding:clamp(80px,11vw,144px) clamp(20px,4vw,56px);}

.eyebrow{
  display:inline-flex;align-items:center;gap:12px;
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:500;
  color:var(--paper);margin-bottom:24px;
}

h2.display{
  font-family:var(--display);font-weight:700;
  font-size:clamp(34px,5vw,66px);line-height:1.00;letter-spacing:-.036em;
  margin:0 0 clamp(18px,2vw,28px);color:var(--paper);
}
h2.display em{font-family:var(--serif);font-style:italic;color:var(--paper-mid);font-weight:300;}
h3.display{
  font-family:var(--display);font-weight:600;
  font-size:clamp(22px,2.4vw,30px);line-height:1.12;letter-spacing:-.022em;
  margin:0 0 10px;color:var(--paper);
}
p.lead{
  font-size:clamp(17px,1.4vw,20px);line-height:1.55;
  color:var(--paper-soft);max-width:62ch;margin:0 0 18px;
}
p.body{
  font-size:16px;line-height:1.65;
  color:var(--paper-soft);max-width:60ch;margin:0 0 18px;
}
p.body b{color:var(--paper);font-weight:500;}

.wave-mark{display:none;}

/* ─── WHY / RECOGNITION rows ──────────────────────────────── */
.why{background:var(--cherry);}
.why-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(48px,7vw,128px);align-items:start;
}
.why-head{position:sticky;top:110px;}
.why-head h2{max-width:13ch;}
.why-list{display:flex;flex-direction:column;}
.why-row{
  display:grid;grid-template-columns:auto 1fr;gap:22px;
  padding:30px 0;border-top:1px solid var(--paper-line);align-items:start;
}
.why-row:last-child{border-bottom:1px solid var(--paper-line);}
.why-row .num{
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);min-width:32px;padding-top:4px;
}
.why-row h3{
  font-family:var(--display);font-weight:600;font-size:21px;color:var(--paper);
  margin:0 0 8px;letter-spacing:-.012em;
}
.why-row p{font-size:15px;line-height:1.6;color:var(--paper-soft);margin:0;max-width:50ch;}
@media (max-width:880px){
  .why-grid{grid-template-columns:1fr;}
  .why-head{position:static;}
}

/* ─── METHOD (3 cells, glass-on-cherry) ─────────────────────── */
.method{background:linear-gradient(180deg, var(--cherry) 0%, var(--cherry-2) 100%);}
.method-head{text-align:center;max-width:780px;margin:0 auto 56px;}
.method-head h2{margin:0 auto;}
.method-head .eyebrow{justify-content:center;}
.method-row{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.method-cell{
  padding:32px 28px;border-radius:24px;
  background:rgba(255,236,217,.08);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
}
.method-cell .step{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);margin-bottom:16px;
}
.method-cell h3{
  font-family:var(--display);font-weight:600;font-size:22px;color:var(--paper);
  margin:0 0 12px;letter-spacing:-.018em;
}
.method-cell p{font-size:15px;line-height:1.6;color:var(--paper-soft);margin:0;}
@media (max-width:780px){.method-row{grid-template-columns:1fr;}}

/* ─── HOUR — 5-row breakdown (Practice) ────────────────────── */
.hour{background:var(--cherry);}
.hour-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:clamp(48px,7vw,112px);align-items:start;}
.hour-rows{display:flex;flex-direction:column;}
.hour-row{
  display:grid;grid-template-columns:140px 1fr;gap:22px;
  padding:24px 0;border-top:1px solid var(--paper-line);align-items:baseline;
}
.hour-row:last-child{border-bottom:1px solid var(--paper-line);}
.hour-row .step{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);
}
.hour-row h3{
  font-family:var(--display);font-weight:600;font-size:20px;color:var(--paper);
  margin:0 0 4px;letter-spacing:-.012em;
}
.hour-row p{font-size:15px;line-height:1.6;color:var(--paper-soft);margin:0;max-width:52ch;}
.hour-pull{
  margin-top:clamp(32px,4vw,56px);padding-top:32px;
  border-top:1px solid var(--paper-line);
  font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(22px,2.6vw,28px);line-height:1.32;color:var(--paper);
  max-width:32ch;letter-spacing:-.012em;
}
@media (max-width:880px){
  .hour-grid{grid-template-columns:1fr;}
  .hour-row{grid-template-columns:1fr;gap:6px;}
}

/* ─── MONTH — 3 phases (Practice, paper-on-orange surface) ──── */
.month{
  background:radial-gradient(120% 80% at 50% 0%,
              var(--orange) 0%, var(--cherry-2) 60%, var(--cherry) 100%);
  color:var(--paper);
}
.month .eyebrow{color:var(--paper);}
.month-head{max-width:820px;margin:0 auto 56px;text-align:center;}
.month-head h2{margin:0 auto 14px;}
.month-head .eyebrow{justify-content:center;}
.month-head p{color:var(--paper-soft);margin:0 auto;}
.month-row{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.month-cell{
  padding:36px 28px;border-radius:24px;
  background:rgba(255,236,217,.10);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
}
.month-cell .when{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);margin-bottom:16px;
}
.month-cell h3{
  font-family:var(--display);font-weight:600;font-size:22px;color:var(--paper);
  margin:0 0 12px;letter-spacing:-.018em;
}
.month-cell p{font-size:15px;line-height:1.6;color:var(--paper-soft);margin:0;}
@media (max-width:780px){.month-row{grid-template-columns:1fr;}}

/* ─── JOURNAL teaser on Practice (themed grid) ────────────── */
.journal{background:var(--cherry);}
.journal-head{
  display:grid;grid-template-columns:1.2fr 1fr;gap:36px;align-items:end;margin-bottom:48px;
}
.journal-head h2{max-width:18ch;margin:0;}
.journal-head p{color:var(--paper-soft);max-width:42ch;font-size:15.5px;line-height:1.6;margin:0;}
.journal-themes{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
.j-theme{
  padding:24px 26px;border-radius:18px;
  background:rgba(255,236,217,.07);border:1px solid var(--paper-line);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:baseline;
  transition:background .2s ease, transform .2s ease;
}
.j-theme:hover{background:rgba(255,236,217,.14);transform:translateY(-2px);}
.j-theme .num{font-family:var(--mono);font-size:11px;letter-spacing:.18em;color:var(--paper-low);text-transform:uppercase;min-width:28px;}
.j-theme h3{font-family:var(--display);font-weight:600;font-size:19px;color:var(--paper);margin:0;letter-spacing:-.012em;}
.j-theme .sub{font-family:var(--mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--paper-fade);}
@media (max-width:760px){
  .journal-head{grid-template-columns:1fr;gap:18px;}
  .journal-themes{grid-template-columns:1fr;}
}

/* ─── DOORWAYS — home + offerings page (warm gradient bg) ───── */
.offerings,
.doorways{
  position:relative;
  padding:clamp(80px,11vw,128px) clamp(20px,4vw,56px);
  background:radial-gradient(110% 70% at 50% 0%,
              var(--orange) 0%, var(--cherry-2) 55%, var(--cherry) 100%);
  color:var(--paper);overflow:hidden;
}
.offerings-bg,.offerings-grain{display:none;}
.offerings-inner{max-width:1280px;margin:0 auto;}
.offerings-head{
  display:grid;grid-template-columns:1.2fr 1fr;gap:36px;align-items:end;margin-bottom:56px;
}
.offerings .eyebrow{color:var(--paper);}
.offerings h2.display{color:var(--paper);max-width:18ch;}
.offerings .lead{color:var(--paper-soft);max-width:44ch;margin:0;}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1280px;margin:0 auto;}
/* two-up variant — e.g. the Practice hub's doorways */
.cards.duo{grid-template-columns:repeat(2,1fr);max-width:920px;}
@media (max-width:720px){.cards.duo{grid-template-columns:1fr;}}
.cards.quad{grid-template-columns:repeat(4,1fr);}
@media (max-width:1024px){.cards.quad{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.cards.quad{grid-template-columns:1fr;}}
.card{
  border-radius:26px;padding:30px 28px 28px;
  display:flex;flex-direction:column;gap:16px;min-height:360px;
  background:rgba(255,236,217,.10);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 14px 36px rgba(0,0,0,.22);
  transition:transform .25s ease, background .25s ease;
  color:var(--paper);
}
.card:hover{transform:translateY(-4px);background:rgba(255,236,217,.16);}
.card .card-top{display:flex;align-items:flex-start;gap:14px;}
.card .card-icon{
  width:56px;height:56px;border-radius:16px;flex-shrink:0;
  background:linear-gradient(140deg, rgba(255,236,217,.24), rgba(255,236,217,.06));
  border:1px solid var(--paper-line);
  display:flex;align-items:center;justify-content:center;
  color:var(--paper);font-family:var(--dn);font-size:22px;font-weight:600;
}
.card .num,
.card .card-eyebrow{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);
}
.card h3{
  font-family:var(--display);font-weight:600;font-size:23px;letter-spacing:-.018em;
  color:var(--paper);margin:6px 0 4px;
}
.card h3 b{ font-weight:700; }
.card h3 .h3-light{ font-weight:300; color:var(--paper-soft); }
.card p{font-size:14.5px;line-height:1.55;color:var(--paper-soft);margin:0;flex:1;}
.card .price{
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--paper-low);
}
.card-price{
  display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;gap:14px;
  padding-top:18px;border-top:1px solid var(--paper-line);margin-top:auto;
}
.card-price .amt{
  font-family:var(--display);font-weight:600;font-size:20px;letter-spacing:-.018em;color:var(--paper);
  display:block;
}
.card-price .amt-unit{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--paper-low);display:block;margin-top:4px;
}
.card-price .link,
.card .inset-pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 16px;border-radius:999px;
  background:rgba(40,8,8,.55);color:var(--paper);
  border:1px solid var(--paper-line);
  font-size:13px;font-weight:500;letter-spacing:-.002em;
  transition:background .25s ease, transform .25s ease;
}
.card-price .link:hover,
.card .inset-pill:hover{background:rgba(40,8,8,.85);transform:translateY(-1px);}
.card .inset-pill .arrow,
.card-price .link .arrow{transition:transform .3s ease;}
.card .inset-pill:hover .arrow,
.card-price .link:hover .arrow{transform:translateX(3px);}
@media (max-width:980px){
  .cards{grid-template-columns:1fr;}
  .card{min-height:auto;}
  .offerings-head{grid-template-columns:1fr;gap:18px;}
}

/* ─── OFFERINGS list (expandable details) ─────────────────── */
.offer-list{display:flex;flex-direction:column;gap:14px;max-width:1080px;margin:0 auto;}
details.offer{
  background:rgba(255,236,217,.08);
  border:1px solid var(--paper-line);
  border-radius:22px;color:var(--paper);overflow:hidden;
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  transition:background .25s ease, border-color .25s ease;
  min-height:auto;
}
details.offer[open]{background:rgba(255,236,217,.14);border-color:rgba(255,236,217,.30);}
details.offer > summary{
  cursor:pointer;list-style:none;
  padding:28px clamp(22px,3vw,36px);
  display:grid;grid-template-columns:auto 1fr auto;gap:clamp(20px,3vw,40px);align-items:start;
}
details.offer > summary::-webkit-details-marker{display:none;}
.offer-num{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);line-height:1.6;
}
.offer-num .tag{display:block;margin-top:2px;color:var(--paper-fade);}
.offer-main h3{
  font-family:var(--display);font-weight:600;color:var(--paper);
  margin:0 0 8px;font-size:clamp(22px,2.2vw,27px);letter-spacing:-.018em;
}
.offer-main p{color:var(--paper-soft);font-size:14.5px;line-height:1.6;margin:0;max-width:60ch;}
.offer-toggle{
  margin-top:14px;font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);display:inline-flex;align-items:center;gap:6px;
}
details.offer[open] .offer-toggle::after{content:"▴";}
details.offer:not([open]) .offer-toggle::after{content:"▾";}
.offer-toggle::after{font-size:10px;margin-left:2px;}
.offer-price{text-align:right;min-width:160px;}
.offer-price .amt{
  font-family:var(--display);font-weight:600;font-size:20px;letter-spacing:-.018em;color:var(--paper);display:block;
}
.offer-price .amt-unit{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--paper-low);
  display:block;margin-top:6px;
}
.offer-reveal{padding:0 clamp(22px,3vw,36px) 28px;}
.reveal-head{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);margin:0 0 14px;
}
.reveal-empty{color:var(--paper-soft);font-size:14.5px;line-height:1.55;padding:14px 0;margin:0;}
.reveal-sessions{display:flex;flex-direction:column;border-top:1px solid var(--paper-line);}
.session{
  display:grid;grid-template-columns:1fr auto auto;gap:18px;align-items:center;
  padding:14px 0;border-bottom:1px solid var(--paper-hair);
}
.session .when{font-family:var(--display);font-size:15px;color:var(--paper);font-weight:500;}
.session .when .day{font-weight:600;margin-right:10px;}
.session .meta{font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;color:var(--paper-low);text-transform:uppercase;}
.session .meta .full{color:var(--paper-mid);}
.session .reach{
  font-size:13px;color:var(--paper);
  padding:8px 14px;border-radius:999px;
  background:rgba(40,8,8,.55);border:1px solid var(--paper-line);
  transition:background .2s ease, transform .2s ease;
}
.session .reach:hover{background:rgba(40,8,8,.85);transform:translateY(-1px);}
.session .reach.disabled{color:var(--paper-low);background:transparent;border-color:var(--paper-hair);pointer-events:none;}
.reveal-foot{
  margin-top:18px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
}
.reveal-foot .note{color:var(--paper-low);font-size:13px;line-height:1.55;max-width:38ch;}
.reveal-foot .reach{
  font-size:13.5px;color:var(--paper);
  padding:10px 18px;border-radius:999px;background:rgba(40,8,8,.55);
  border:1px solid var(--paper-line);transition:background .2s ease, transform .2s ease;
}
.reveal-foot .reach:hover{background:rgba(40,8,8,.85);transform:translateY(-1px);}
@media (max-width:780px){
  details.offer > summary{grid-template-columns:1fr;}
  .offer-price{text-align:left;min-width:0;}
  .session{grid-template-columns:1fr;gap:8px;}
}

/* ─── ABOUT narrative blocks ───────────────────────────────── */
.about-narrative{background:var(--cherry);}
.about-block{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(48px,7vw,112px);align-items:start;
}
.about-block + .about-block{margin-top:clamp(72px,9vw,128px);}
.about-block .head h2{max-width:15ch;}
.about-pull{
  margin-top:28px;font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(22px,2.4vw,28px);line-height:1.32;color:var(--paper);max-width:32ch;
  letter-spacing:-.012em;padding-left:22px;border-left:2px solid var(--orange-2);
}
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:clamp(36px,5vw,56px);}
.about-split .cell{
  padding:28px 26px;border-radius:20px;
  background:rgba(255,236,217,.08);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
}
.about-split .cell .l{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);margin-bottom:14px;
}
.about-split .cell h3{
  font-family:var(--display);font-weight:600;font-size:21px;margin:0 0 10px;color:var(--paper);letter-spacing:-.015em;
}
.about-split .cell p{font-size:15px;line-height:1.6;color:var(--paper-soft);margin:0;}
@media (max-width:880px){
  .about-block{grid-template-columns:1fr;gap:18px;}
  .about-split{grid-template-columns:1fr;}
}

/* ─── CREDENTIALS grid (About) ─────────────────────────────── */
.creds-paper{
  background:radial-gradient(120% 80% at 50% 0%,
              var(--cherry-2) 0%, var(--cherry) 65%, var(--cherry-3) 100%);
}
.creds-paper-head{text-align:center;max-width:720px;margin:0 auto 48px;}
.creds-paper-head h2{margin:0 auto 12px;}
.creds-paper-head .eyebrow{justify-content:center;}
.creds-paper-head p{color:var(--paper-soft);font-size:15.5px;line-height:1.55;margin:0 auto;max-width:46ch;}
.creds-paper-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.creds-paper-cell{
  padding:28px 24px;border-radius:20px;
  background:rgba(255,236,217,.08);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
}
.creds-paper-cell .l{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);margin-bottom:12px;
}
.creds-paper-cell .v{
  font-family:var(--display);font-weight:600;font-size:20px;color:var(--paper);
  letter-spacing:-.015em;margin-bottom:8px;
}
.creds-paper-cell .v em{font-family:var(--serif);font-style:italic;color:var(--paper-mid);font-weight:300;}
.creds-paper-cell p{font-size:14px;line-height:1.55;color:var(--paper-soft);margin:0;}
@media (max-width:780px){.creds-paper-grid{grid-template-columns:1fr;}}

/* ─── CONTACT form + other ways ───────────────────────────── */
.contact-form-block{background:var(--cherry);}
.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(48px,7vw,96px);align-items:start;}
.contact-form-head h2{max-width:14ch;}

.contact-form-card{
  padding:36px 32px;border-radius:24px;color:var(--paper);
  background:rgba(255,236,217,.10);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(22px) saturate(140%);
  -webkit-backdrop-filter:blur(22px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255,236,217,.32) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 18px 48px rgba(0,0,0,.28);
}
.contact-form-card .l{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);margin-bottom:14px;
}
.contact-form-card h3{font-family:var(--display);font-weight:600;font-size:24px;margin:0 0 14px;color:var(--paper);letter-spacing:-.018em;}
.contact-form-card form{display:flex;flex-direction:column;gap:0;}
.contact-form-card label{
  display:block;font-family:var(--mono);font-weight:500;font-size:11px;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);margin:18px 0 8px;
}
.contact-form-card label .req{
  display:inline-block;margin-left:10px;font-size:9.5px;letter-spacing:.16em;
  color:var(--orange-2);
}
.contact-form-card .hint{
  margin:-2px 0 10px;font-size:13px;line-height:1.5;color:var(--paper-low);
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select{
  width:100%;background:rgba(255,236,217,.06);
  border:1px solid rgba(255,236,217,.20);
  border-radius:14px;padding:14px 18px;
  font-family:var(--body);font-size:15px;color:var(--paper);font-weight:400;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{color:var(--paper-fade);}
.contact-form-card textarea{min-height:140px;resize:vertical;line-height:1.6;}
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus{
  outline:none;border-color:var(--orange-2);
  background:rgba(255,236,217,.12);
  box-shadow:0 0 0 4px rgba(232,145,113,.20);
}
.contact-form-card select{
  appearance:none;-webkit-appearance:none;cursor:pointer;
  padding-right:44px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%23E89171' stroke-width='1.6' stroke-linecap='round'><path d='M1 1l6 6 6-6'/></svg>");
  background-repeat:no-repeat;background-position:right 18px center;
}
.contact-form-card select option{background:#3A0F0F;color:var(--paper);}
.contact-form-card .two{display:grid;grid-template-columns:1fr 1fr;gap:14px;align-items:end;}
.contact-form-card .two > div{display:flex;flex-direction:column;}
@media (max-width:520px){.contact-form-card .two{grid-template-columns:1fr;gap:0;}}
.contact-form-card .route{
  margin:10px 0 0;padding-left:14px;border-left:1px solid var(--orange-2);
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:14.5px;line-height:1.5;color:var(--orange-2);
  min-height:1.4em;opacity:0;transform:translateY(-4px);
  transition:opacity .35s ease, transform .35s ease;
}
.contact-form-card .route.show{opacity:1;transform:none;}
.contact-form-card .privacy-note{
  margin:22px 0 0;font-size:13px;line-height:1.55;color:var(--paper-low);
}
.contact-form-card .privacy-note a{color:var(--orange-2);border-bottom:1px solid rgba(232,145,113,.4);padding-bottom:1px;}
.contact-form-card .submit,
.contact-form-card .write-cta{
  display:inline-flex;align-items:center;gap:12px;
  margin:24px 0 0;align-self:flex-start;
  padding:15px 26px;border-radius:999px;border:none;cursor:pointer;
  background:var(--paper);color:var(--cherry);
  font-size:14.5px;font-weight:500;letter-spacing:-.005em;
  min-height:48px;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
  transition:transform .2s ease, opacity .2s ease;
  text-decoration:none;
}
.contact-form-card .submit:hover,
.contact-form-card .write-cta:hover{transform:translateY(-2px);opacity:.96;}
.contact-form-card .submit:disabled{cursor:wait;opacity:.6;transform:none;}
.contact-form-card .reassure{
  margin:14px 0 0;font-size:13.5px;color:var(--paper-mid);
  font-family:var(--serif);font-weight:300;font-style:italic;
}
.contact-form-card .form-done{display:none;text-align:center;padding:8px 0;}
.contact-form-card .form-done.show{display:block;animation:formRise .9s cubic-bezier(.2,.6,.2,1);}
.contact-form-card .form-done .glow{
  width:80px;height:80px;border-radius:50%;margin:0 auto 22px;
  background:radial-gradient(circle, rgba(232,145,113,.55), rgba(232,145,113,0) 70%);
  animation:formBreathe 10s ease-in-out infinite;
}
.contact-form-card .form-done h2{
  font-family:var(--display);font-weight:600;font-size:30px;
  color:var(--paper);margin:0 0 12px;letter-spacing:-.02em;
}
.contact-form-card .form-done p{
  color:var(--paper-soft);font-size:15.5px;line-height:1.5;
  margin:0 auto;max-width:38ch;
}
@media (max-width:520px){
  .contact-form-card{padding:30px 22px;}
  .contact-form-card .submit{width:100%;justify-content:center;}
}
@media (max-width:880px){.contact-form-grid{grid-template-columns:1fr;gap:36px;}}

.contact-other{background:radial-gradient(120% 80% at 50% 0%, var(--cherry-2) 0%, var(--cherry) 70%);}
.contact-other-head{max-width:720px;margin:0 auto 48px;text-align:center;}
.contact-other-head h2{margin:0 auto;}
.contact-other-head .eyebrow{justify-content:center;}
.contact-other-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
  max-width:900px;margin:0 auto;
}
.contact-other-cell{
  padding:28px 24px;border-radius:20px;
  background:rgba(255,236,217,.08);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  text-align:center;
}
.contact-other-cell .reach-icon{ margin:0 auto 14px !important; }
.contact-other-cell .l{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);margin-bottom:12px;
}
.contact-other-cell h3{font-family:var(--display);font-weight:600;font-size:17px;margin:0 0 8px;color:var(--paper);letter-spacing:-.015em;line-height:1.3;}
.contact-other-cell a{color:var(--paper);border-bottom:1px solid var(--paper-line);padding-bottom:2px;transition:border-color .2s ease;}
.contact-other-cell a:hover{border-color:var(--orange-2);}
.contact-other-cell p{font-size:13px;line-height:1.55;color:var(--paper-soft);margin:8px 0 0;}
@media (max-width:880px){
  .contact-other-grid{grid-template-columns:repeat(2,1fr);max-width:560px;}
}
@media (max-width:520px){
  .contact-other-grid{grid-template-columns:repeat(2,1fr);max-width:100%;gap:12px;}
  .contact-other-cell{padding:22px 14px;}
  .contact-other-cell h3{font-size:14px;word-break:break-word;}
}

/* ─── CALENDAR (public viewer) ─────────────────────────────── */
.calendar-block{background:var(--cherry);}
.cal-loading{text-align:center;padding:48px 0;color:var(--paper-low);font-size:15px;}
.cal-empty{text-align:center;padding:56px 24px;color:var(--paper-soft);max-width:480px;margin:0 auto;}
.cal-empty h3{font-family:var(--display);font-weight:600;font-size:24px;color:var(--paper);margin:0 0 12px;letter-spacing:-.018em;}
.cal-empty p{font-size:15px;line-height:1.6;margin:0 0 20px;}
.cal-empty a{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 22px;border-radius:999px;background:var(--paper);color:var(--cherry);font-size:14px;font-weight:500;
}
.cal-day{display:grid;grid-template-columns:200px 1fr;gap:32px;padding:24px 0;border-top:1px solid var(--paper-line);align-items:start;}
.cal-day:last-child{border-bottom:1px solid var(--paper-line);}
.cal-day .when{font-family:var(--display);}
.cal-day .when .day{font-weight:500;font-size:20px;color:var(--paper);letter-spacing:-.015em;margin-bottom:4px;}
.cal-day .when .date{font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--paper-low);}
.cal-day .sessions{display:flex;flex-direction:column;gap:12px;}
.cal-session{
  display:grid;grid-template-columns:1fr auto auto;gap:18px;align-items:center;
  padding:16px 20px;border-radius:14px;
  background:rgba(255,236,217,.07);border:1px solid var(--paper-line);
}
.cal-session .label{font-family:var(--display);font-weight:600;font-size:16px;color:var(--paper);letter-spacing:-.012em;}
.cal-session .label .tag{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--paper-low);
  display:block;margin-top:2px;font-weight:500;
}
.cal-session .meta{font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--paper-low);text-align:right;}
.cal-session .reserve{
  font-size:13.5px;color:var(--cherry);padding:10px 18px;border-radius:999px;
  background:var(--paper);white-space:nowrap;transition:transform .2s ease, opacity .2s ease;font-weight:500;
}
.cal-session .reserve:hover{transform:translateY(-1px);opacity:.95;}
.cal-session .reserve.full{background:rgba(255,236,217,.10);color:var(--paper-low);}
@media (max-width:780px){
  .cal-day{grid-template-columns:1fr;gap:12px;}
  .cal-session{grid-template-columns:1fr;text-align:left;gap:8px;}
  .cal-session .meta{text-align:left;}
}

/* ─── PULL QUOTE block (home) ─────────────────────────────── */
.quote{
  background:radial-gradient(120% 80% at 50% 0%, var(--cherry) 0%, var(--cherry-3) 100%);
  text-align:center;padding:clamp(80px,11vw,144px) clamp(20px,4vw,56px);
}
.quote-inner{max-width:880px;margin:0 auto;}
blockquote{
  font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(26px,3.6vw,42px);line-height:1.25;letter-spacing:-.018em;
  color:var(--paper);margin:0 auto;max-width:28ch;
}
.quote-attrib{margin-top:30px;font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--paper-low);}

/* ─── DOORWAY (closing CTA — every page) ──────────────────── */
.doorway{
  position:relative;
  padding:clamp(80px,11vw,144px) clamp(20px,4vw,56px);
  background:radial-gradient(120% 80% at 50% 30%,
              var(--orange) 0%, var(--cherry-2) 55%, var(--cherry) 100%);
  text-align:center;color:var(--paper);overflow:hidden;
}
.doorway::before{
  content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(50% 50% at 20% 80%, rgba(232,145,113,.25) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 20%, rgba(232,145,113,.20) 0%, transparent 60%);
}
.doorway-inner{position:relative;z-index:1;max-width:780px;margin:0 auto;}
.doorway .eyebrow{justify-content:center;color:var(--paper);}
.doorway h2{margin:0 auto 18px;}
.doorway p{color:var(--paper-soft);font-size:16px;line-height:1.55;margin:0 auto 30px;max-width:46ch;}
.doorway-cta{
  display:inline-flex;align-items:center;gap:12px;
  padding:16px 28px;border-radius:999px;
  background:var(--paper);color:var(--cherry);
  font-size:15px;font-weight:500;letter-spacing:-.005em;
  box-shadow:0 12px 30px rgba(0,0,0,.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.doorway-cta:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(0,0,0,.34);}
.doorway-cta .arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;background:var(--cherry);color:var(--paper);font-size:12px;
  transition:transform .3s ease;
}
.doorway-cta:hover .arrow{transform:translateX(3px);}
.doorway .foot-meta{
  margin-top:22px;font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);
}
.doorway .foot-meta a{color:var(--paper);border-bottom:1px solid var(--paper-line);padding-bottom:1px;}
.doorway .foot-meta a:hover{border-color:var(--orange-2);}

/* ─── FOOTER (dark cherry — no cream block) ───────────────── */
footer{
  background:var(--cherry-3);color:var(--paper);
  padding:clamp(40px,5vw,64px) clamp(20px,4vw,40px) clamp(28px,3vw,40px);
  border-top:1px solid var(--paper-line);
}
/* Footer — centered single column, logo at top, lists below */
.footer-inner{
  max-width:560px;margin:0 auto;
  display:flex;flex-direction:column;align-items:center;gap:28px;
  text-align:center;
}
.footer-brand{display:flex;flex-direction:column;align-items:center;}
.footer-brand .mark{
  display:inline-flex;align-items:baseline;gap:8px;line-height:1;
  font-family:var(--display);font-weight:600;font-size:17px;color:var(--paper);letter-spacing:-.005em;
  justify-content:center;
}
.footer-brand .mark .dn{font-family:var(--dn);font-size:17px;font-weight:600;}
.footer-brand .mark .dot{width:3px;height:3px;border-radius:50%;background:var(--paper);opacity:.6;align-self:center;}
.footer-brand .tag{
  font-family:var(--serif);font-style:italic;font-weight:400;font-size:14px;
  color:var(--cherry);margin-top:10px;
}
.footer-brand .copy{font-size:12.5px;line-height:1.55;color:var(--paper-soft);margin:10px auto 0;max-width:42ch;}
.footer-col{display:flex;flex-direction:column;align-items:center;gap:2px;}
.footer-col h4{
  font-family:var(--mono);font-size:9.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);margin:0 0 8px;font-weight:500;
}
.footer-col a{
  display:block;font-size:12.5px;color:var(--paper-soft);
  padding:2px 0;transition:color .2s ease;
}
.footer-col a:hover{color:var(--paper);}
.footer-base{
  max-width:560px;margin:24px auto 0;padding-top:18px;
  border-top:1px solid var(--paper-line);
  display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:14px;
  font-family:var(--mono);font-size:9.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);text-align:center;
}
/* Legal links live in the bottom bar (Privacy · Terms · Refunds). */
.footer-legal a{ color:var(--paper-low); text-decoration:none; transition:color .2s ease; }
.footer-legal a:hover{ color:var(--paper); }

/* ─── Footer Reach column → icon buttons ───────────────────── */
.footer-col a[href^="mailto:"],
.footer-col a[href*="instagram.com"],
.footer-col a[href*="wa.me"]{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
}
.footer-col a[href^="mailto:"]::before,
.footer-col a[href*="instagram.com"]::before,
.footer-col a[href*="wa.me"]::before{
  content:"";display:inline-block;width:20px;height:20px;flex:none;
  background-position:center;background-repeat:no-repeat;background-size:contain;
  opacity:.85;
}
.footer-col a[href^="mailto:"]::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E2A1C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><path d='M3 7l9 6 9-6'/></svg>");
}
.footer-col a[href*="instagram.com"]::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E2A1C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='5'/><circle cx='12' cy='12' r='4'/><circle cx='17.4' cy='6.6' r='.9' fill='%232E2A1C' stroke='none'/></svg>");
}
.footer-col a[href*="wa.me"]::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E2A1C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2.5a9.5 9.5 0 0 0-8.2 14.3L2.5 21.5l4.9-1.3A9.5 9.5 0 1 0 12 2.5z'/><path d='M8.7 8.5c.2-.3.5-.4.7-.4h.6c.2 0 .5.2.6.4l.7 1.7c.1.2 0 .5-.1.7l-.5.6c-.2.2-.3.5-.1.8.5.9 1.3 1.7 2.2 2.2.3.2.6.1.8-.1l.6-.5c.2-.1.5-.2.7-.1l1.7.7c.2.1.4.4.4.6v.6c0 .2-.1.5-.4.7-.7.5-1.5.7-2.4.6-3.5-.3-6.2-3-6.5-6.5-.1-.9.1-1.7.6-2.4z'/></svg>");
}

@media (max-width:560px){
  .footer-inner{grid-template-columns:1fr 1fr;gap:24px 24px;}
  .footer-brand{grid-column:1 / -1;}
  /* Reach becomes a tight horizontal row of small icon pills */
  .footer-col:last-child{grid-column:1 / -1;margin-top:-4px;margin-bottom:-12px;}
  .footer-col:last-child h4{margin-bottom:6px;}
  .footer-col:last-child > a{
    width:34px;height:34px;padding:0;
    display:inline-flex;align-items:center;justify-content:center;
    background:transparent;border:1px solid rgba(46,42,28,.18);border-radius:999px;
    font-size:0;color:transparent;
  }
  .footer-col:last-child > a::before{width:16px;height:16px;opacity:1;}
  .footer-base{flex-direction:column;text-align:center;margin-top:18px;padding-top:18px;gap:10px;}
}

/* ─── Breath count → 2×2 grid on phones (cleaner than a wrap line) */
@media (max-width:480px){
  .breath-count{
    display:grid;grid-template-columns:repeat(2,max-content);
    column-gap:36px;row-gap:12px;justify-content:center;
  }
  .breath-count .dot{display:none;}
}

/* ─── FORM page (devishakti_form.html) ─────────────────────── */
.form-block{
  background:radial-gradient(120% 80% at 50% 0%,
              var(--cherry-2) 0%, var(--cherry) 60%, var(--cherry-3) 100%);
  color:var(--paper);
}
.form-hero{padding:clamp(80px,9vw,140px) clamp(20px,4vw,40px) 0;}
.form-hero-inner{max-width:760px;margin:0 auto;}
.form-hero .eyebrow{color:var(--paper);}
.form-hero h1{
  font-family:var(--display);font-weight:800;
  font-size:clamp(40px,5.6vw,72px);line-height:.98;letter-spacing:-.042em;
  color:var(--paper);max-width:18ch;margin:0 0 18px;
}
.form-hero h1 em{font-family:var(--serif);font-style:italic;color:var(--paper-mid);font-weight:300;}
.form-hero p.lead{margin:0;max-width:60ch;color:var(--paper-soft);}
.form-wrap{max-width:760px;margin:0 auto;padding:clamp(28px,4vw,40px) clamp(20px,4vw,40px) clamp(80px,10vw,140px);}
.form-card{
  background:rgba(255,236,217,.10);color:var(--paper);
  backdrop-filter:blur(22px) saturate(140%);-webkit-backdrop-filter:blur(22px) saturate(140%);
  border:1px solid var(--paper-line);
  border-radius:24px;padding:clamp(32px,5vw,48px);
  box-shadow:
    0 1px 0 rgba(255,236,217,.32) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 22px 60px rgba(0,0,0,.32);
}
.form-card form{display:flex;flex-direction:column;gap:0;}
.form-card .field{display:flex;flex-direction:column;}
.form-card label{
  display:block;font-family:var(--mono);font-weight:500;font-size:11px;
  letter-spacing:.18em;text-transform:uppercase;color:var(--paper-mid);
  margin:20px 0 8px;
}
.form-card label .req{color:var(--orange-2);font-size:9.5px;font-weight:500;letter-spacing:.16em;margin-left:10px;}
.form-card .hint{font-size:13px;color:var(--paper-low);margin-bottom:10px;}
.form-card input,
.form-card textarea,
.form-card select{
  width:100%;background:rgba(255,236,217,.06);
  border:1px solid rgba(255,236,217,.20);
  border-radius:14px;padding:14px 18px;
  font-family:var(--body);font-size:15px;color:var(--paper);font-weight:400;
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.form-card textarea{min-height:140px;resize:vertical;line-height:1.6;}
.form-card input::placeholder,
.form-card textarea::placeholder{color:var(--paper-fade);}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus{
  outline:none;border-color:var(--orange-2);
  background:rgba(255,236,217,.12);
  box-shadow:0 0 0 4px rgba(232,145,113,.20);
}
.form-card select{
  appearance:none;-webkit-appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%23E89171' stroke-width='1.6' stroke-linecap='round'><path d='M1 1l6 6 6-6'/></svg>");
  background-repeat:no-repeat;background-position:right 18px center;
  padding-right:44px;
}
.form-card select option{background:#3A0F0F;color:var(--paper);}
.form-card .two{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media (max-width:520px){.form-card .two{grid-template-columns:1fr;}}
.form-card .route{
  font-size:14.5px;color:var(--orange-2);font-style:italic;
  font-family:var(--serif);font-weight:300;
  margin:10px 0 0;padding-left:14px;border-left:1px solid var(--orange-2);
  min-height:1.4em;opacity:0;transform:translateY(-4px);
  transition:opacity .5s ease, transform .5s ease;
}
.form-card .route.show{opacity:1;transform:none;}
.form-card .privacy-note{font-size:13px;color:var(--paper-low);margin-top:22px;line-height:1.55;}
.form-card .privacy-note a{color:var(--orange-2);border-bottom:1px solid rgba(232,145,113,.4);padding-bottom:1px;}
.form-card .form-submit,
.form-card .submit{
  display:inline-flex;align-items:center;gap:12px;
  margin-top:26px;align-self:flex-start;
  padding:16px 30px;border-radius:999px;border:none;cursor:pointer;
  background:var(--paper);color:var(--cherry);
  font-family:var(--body);font-size:15px;font-weight:500;letter-spacing:-.005em;
  box-shadow:0 12px 30px rgba(0,0,0,.24);
  transition:transform .2s ease, opacity .2s ease;
}
.form-card .form-submit:hover,
.form-card .submit:hover{transform:translateY(-2px);opacity:.96;}
.form-card .form-submit:disabled,
.form-card .submit:disabled{cursor:wait;opacity:.6;transform:none;}
.form-card .form-submit .arrow,
.form-card .submit .arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;background:var(--cherry);color:var(--paper);font-size:12px;
}
.form-card .reassure{margin-top:16px;font-size:14px;color:var(--paper-mid);font-family:var(--serif);font-weight:300;font-style:italic;}
.form-card .hp{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;}

.form-done{display:none;text-align:center;padding:28px 0 8px;}
.form-done.show{display:block;animation:formRise 1s cubic-bezier(.2,.6,.2,1);}
@keyframes formRise{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:none;}}
.form-done .glow{
  width:90px;height:90px;border-radius:50%;margin:0 auto 22px;
  background:radial-gradient(circle, rgba(232,145,113,.55), rgba(232,145,113,0) 70%);
  animation:formBreathe 10s ease-in-out infinite;
}
@keyframes formBreathe{0%,100%{transform:scale(.85);opacity:.55;}40%{transform:scale(1.1);opacity:1;}}
.form-done h2{font-family:var(--display);font-weight:600;font-size:32px;color:var(--paper);letter-spacing:-.02em;margin:0 0 12px;}
.form-done p{color:var(--paper-soft);font-size:15.5px;line-height:1.55;margin:0 auto;max-width:42ch;}

/* ─── JOURNAL INDEX ───────────────────────────────────────── */
.journal-index{background:var(--cherry);}
.journal-theme{
  /* Each theme group is a frosted card — consistent with the rest of the
     site's "panel" treatment. Padding creates breathing room so text
     never touches the border. */
  background:var(--frost);
  border:1px solid var(--frost-line);
  border-radius:22px;
  padding:clamp(24px,4vw,40px) clamp(20px,4vw,36px);
  margin-bottom:16px;
}
.journal-theme .theme-head{
  display:flex;align-items:baseline;gap:14px;
  margin-bottom:18px;padding-bottom:14px;
  border-bottom:1px solid var(--frost-line);
}
.journal-theme .theme-head .num{
  font-family:var(--display);font-weight:700;font-size:13px;
  letter-spacing:.08em;color:var(--cherry);line-height:1;flex-shrink:0;
  background:rgba(126,42,30,.08);border-radius:6px;
  padding:4px 8px;
}
.journal-theme .theme-head h3{
  font-family:var(--display);font-weight:600;font-size:clamp(17px,2vw,20px);
  letter-spacing:-.018em;color:var(--paper);margin:0;line-height:1.15;
}
.journal-theme .theme-head .sub{
  font-family:var(--mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);margin-left:auto;flex-shrink:0;
}
.journal-theme .article-list{display:flex;flex-direction:column;gap:0;}
.journal-theme .article{
  /* HTML order: .kind  .body-col  .row-arrow
     Grid: kind is inline inside body-col via display:block;
     top-level grid is just body-col + arrow */
  display:flex;align-items:center;gap:14px;
  padding:14px 12px;
  border-radius:12px;
  transition:background .18s ease;
  text-decoration:none;
  margin:0 -12px;
}
.journal-theme .article + .article{
  border-top:1px solid var(--frost-line);
}
.journal-theme .article:hover{ background:rgba(46,42,28,.04); }
.journal-theme .article:active{ background:rgba(46,42,28,.08); }
.journal-theme .article .body-col{flex:1;display:flex;flex-direction:column;gap:3px;}
.journal-theme .article h4{
  font-family:var(--display);font-weight:600;font-size:16px;color:var(--paper);
  margin:0;letter-spacing:-.010em;line-height:1.25;
}
.journal-theme .article p{
  font-family:var(--body);font-size:13.5px;color:var(--paper-soft);margin:0;line-height:1.5;
}
.journal-theme .article .kind{
  display:inline-block;margin-bottom:4px;
  font-family:var(--mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--orange-2);
}
.journal-theme .article .kind.condition{ color:var(--paper-mid); }
/* → arrow on every row */
.journal-theme .article .row-arrow{
  display:flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:50%;
  background:rgba(46,42,28,.07);
  color:var(--paper-mid);font-size:13px;flex-shrink:0;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.journal-theme .article:hover .row-arrow{
  background:var(--cherry);color:var(--cream);transform:translateX(2px);
}
@media (max-width:880px){
  .journal-theme .theme-head .sub{ display:none; }
}

/* ─── JOURNAL ARTICLE (single read) ───────────────────────── */
.article-shell{
  background:radial-gradient(120% 80% at 50% 0%,
              var(--cherry-2) 0%, var(--cherry) 65%, var(--cherry-3) 100%);
  color:var(--paper);
  padding:140px clamp(20px,4vw,40px) clamp(64px,9vw,128px);
  margin-top:-66px;
}
.article-wrap{max-width:680px;margin:0 auto;}
.article-back{
  display:inline-flex;align-items:center;gap:7px;
  padding:8px 14px 8px 10px;
  border-radius:999px;
  background:rgba(255,236,217,.50);
  border:1px solid rgba(46,42,28,.12);
  font-family:var(--body);font-size:13px;font-weight:500;
  color:var(--paper);letter-spacing:-.002em;
  text-decoration:none;
  margin-bottom:24px;
  transition:background .18s ease, transform .18s ease;
}
.article-back::before{
  content:"←";
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:rgba(46,42,28,.08);
  font-size:13px;line-height:1;flex-shrink:0;
}
.article-back:hover{ background:rgba(255,236,217,.75); transform:translateX(-2px); }
.article-back-bottom{
  display:inline-flex !important;
  margin-top:32px !important;margin-bottom:0 !important;
}
.article-eyebrow{
  display:block;font-family:var(--mono);font-size:10.5px;letter-spacing:.20em;text-transform:uppercase;
  color:var(--orange-2);margin-bottom:18px;
}
.article-feel{
  font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(20px,2.8vw,26px);color:var(--paper-mid);line-height:1.4;margin:0 0 6px;
}
.article-shell h1{
  font-family:var(--display);font-weight:600;
  font-size:clamp(40px,6vw,68px);line-height:1.02;letter-spacing:-.028em;
  color:var(--paper);margin:0 0 22px;
}
.article-shell h1 .hl{font-style:italic;color:var(--paper-mid);font-weight:400;}
.article-shell .lead{
  font-family:var(--body);font-size:clamp(17px,1.4vw,20px);line-height:1.5;
  color:var(--paper-soft);margin:0 0 36px;
}
.article-body{
  background:rgba(255,236,217,.07);
  border:1px solid var(--paper-line);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-radius:24px;
  padding:clamp(28px,4vw,44px);
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}
.article-body .stagelabel{
  display:block;font-family:var(--mono);font-size:10.5px;letter-spacing:.20em;text-transform:uppercase;
  color:var(--orange-2);border-top:1px solid var(--paper-line);padding-top:18px;margin-top:36px;
}
.article-body > .stagelabel:first-child{border-top:none;padding-top:0;margin-top:0;}
.article-body h2{
  font-family:var(--display);font-weight:600;
  font-size:clamp(24px,2.8vw,30px);letter-spacing:-.018em;color:var(--paper);
  margin:14px 0 18px;line-height:1.15;
}
.article-body p{font-size:16.5px;line-height:1.68;color:var(--paper-soft);margin:0 0 18px;}
.article-body p:last-child{margin-bottom:0;}
.article-body .term{font-family:var(--dn);color:var(--orange-2);font-weight:500;}
.article-body em{font-family:var(--serif);font-style:italic;color:var(--paper);}
.article-body .pull{
  font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(22px,3vw,28px);line-height:1.4;color:var(--paper);
  margin:32px 0;padding-left:22px;border-left:2px solid var(--orange-2);
}
.article-body .practice{
  background:rgba(40,8,8,.32);
  border:1px solid var(--paper-line);
  border-radius:18px;padding:24px 26px;margin:28px 0;
}
.article-body .practice .ph{
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--orange-2);margin-bottom:14px;
}
.article-body .prow{
  display:grid;grid-template-columns:1fr auto;gap:14px;padding:12px 0;
  border-bottom:1px solid var(--paper-hair);align-items:baseline;
}
.article-body .prow:last-child{border-bottom:none;}
.article-body .prow .nm{font-family:var(--display);font-size:16px;color:var(--paper);font-weight:500;}
.article-body .prow .nm .en{font-family:var(--serif);font-style:italic;color:var(--paper-low);font-size:14px;font-weight:300;}
.article-body .prow .dur{font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--paper-low);white-space:nowrap;}
.article-body .disclaimer{
  font-size:13.5px;color:var(--paper-mid);font-style:italic;font-family:var(--serif);font-weight:300;
  border-top:1px solid var(--paper-line);padding-top:18px;margin-top:32px;
}
.article-doorway{margin-top:48px;text-align:center;}
.article-doorway .tag{
  display:inline-block;font-family:var(--mono);font-size:10.5px;letter-spacing:.20em;text-transform:uppercase;
  color:var(--paper-mid);margin-bottom:14px;
}
.article-doorway h2{
  font-family:var(--display);font-weight:600;font-size:clamp(28px,3.4vw,40px);
  color:var(--paper);margin:0 0 14px;letter-spacing:-.022em;line-height:1.1;
}
.article-doorway p{color:var(--paper-soft);font-size:15.5px;line-height:1.55;margin:0 auto 22px;max-width:40ch;}
.article-doorway .pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 24px;border-radius:999px;
  background:var(--paper);color:var(--cherry);
  font-size:14.5px;font-weight:500;letter-spacing:-.005em;
  box-shadow:0 10px 26px rgba(0,0,0,.24);
}
.article-doorway .pill:hover{transform:translateY(-2px);}
.article-nav{
  display:flex;justify-content:space-between;gap:14px;margin-top:48px;padding-top:24px;
  border-top:1px solid var(--paper-line);
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
}
.article-nav a{color:var(--paper-mid);border-bottom:1px solid var(--paper-line);padding-bottom:2px;}
.article-nav a:hover{color:var(--paper);border-color:var(--orange-2);}

/* ─── PRIVACY page reuses .wrap on .shell — already covered ─ */
.privacy-wrap h2{font-family:var(--display);font-weight:600;font-size:24px;color:var(--paper);letter-spacing:-.018em;margin:32px 0 12px;}
.privacy-wrap p,
.privacy-wrap li{color:var(--paper-soft);font-size:15.5px;line-height:1.65;margin:0 0 14px;}
.privacy-wrap ul{padding-left:22px;margin:0 0 16px;}

/* ─── Motion (subtle ॐ + mandala drift) ───────────────────── */
.motion-layer{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:0;}
.motion-layer .sym{
  position:absolute;font-family:var(--dn);color:rgba(255,236,217,.05);
  font-size:clamp(80px,14vw,180px);font-weight:500;line-height:1;user-select:none;
  animation:drift 26s ease-in-out infinite alternate;
}
.motion-layer .sym.s1{top:8%;left:6%;animation-duration:24s;}
.motion-layer .sym.s2{top:14%;right:8%;font-size:80px;animation-duration:28s;animation-delay:-6s;}
.motion-layer .sym.s3{bottom:18%;left:14%;font-size:70px;animation-duration:32s;animation-delay:-12s;}
.motion-layer .sym.s4{bottom:8%;right:6%;animation-duration:26s;animation-delay:-3s;}
.motion-layer .sym.s5{top:42%;left:48%;font-size:60px;animation-duration:30s;animation-delay:-9s;}
.motion-layer .sym.s6{top:62%;right:42%;font-size:80px;animation-duration:25s;animation-delay:-15s;}
.motion-layer .mandala{
  position:absolute;width:260px;height:260px;color:rgba(255,236,217,.05);
  animation:spinSlow 110s linear infinite;
}
.motion-layer .mandala.m1{top:-40px;right:-40px;}
.motion-layer .mandala.m2{bottom:-60px;left:-60px;width:320px;height:320px;animation-direction:reverse;}
@keyframes drift{
  0%   {transform:translate(0,0) rotate(0deg);opacity:.6;}
  50%  {transform:translate(-14px,-22px) rotate(-3deg);opacity:.95;}
  100% {transform:translate(18px,14px) rotate(4deg);opacity:.75;}
}
@keyframes spinSlow{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}

/* Lift content above motion layers */
section.hero > *:not(.motion-layer):not(.veil),
section.page-hero > *:not(.motion-layer),
section.offerings > *:not(.motion-layer):not(.offerings-bg):not(.offerings-grain),
section.doorway > *:not(.motion-layer),
section.month > *:not(.motion-layer),
section.creds-paper > *:not(.motion-layer){position:relative;z-index:2;}

/* ─── Tablet + Mobile ─────────────────────────────────────── */
@media (max-width:1100px) and (min-width:881px){
  /* nav-inner left edge is handled by the base container formula */
  .hero{padding:90px 32px 64px;}
  .wrap,.wrap-narrow{padding:88px 32px;}
}

@media (max-width:880px){
  .hero{
    padding:140px 22px 56px;gap:32px;min-height:auto;
  }
  .hero-inner{grid-template-columns:1fr;align-items:start;gap:24px;}
  .hero h1{font-size:clamp(42px,9vw,56px);line-height:1.02;}
  .hero-sub{font-size:15.5px;}
  .hero-cta{padding:13px 22px;font-size:14px;}
  .creds-strip{margin-top:32px;padding-top:24px;gap:18px;}
  .creds-cell .v{font-size:17px;}

  .page-hero{padding:124px 22px 60px;}
  .page-hero h1{font-size:clamp(36px,8vw,56px);}
  .page-hero-sub{font-size:15.5px;}

  .wrap,.wrap-narrow{padding:64px 22px;}
  h2.display{font-size:clamp(28px,7.5vw,44px);line-height:1.05;}

  .breath-section{padding:64px 22px 80px;}
  .breath-card{padding:36px 22px;border-radius:24px;}
  .orb-wrap{width:180px;height:180px;margin:36px auto 28px;}
  .orb{width:120px;height:120px;}
  .breath-count{font-size:11px;gap:10px;}

  .why-row{padding:24px 0;gap:18px;}
  .why-row h3{font-size:19px;}

  .method-cell{padding:28px 22px;}
  .hour-row{padding:20px 0;}
  .hour-row .step{min-width:90px;}
  .month-cell{padding:32px 22px;}

  .doorways,.offerings{padding:64px 22px;}
  .doorway{padding:64px 22px;}
  .doorway h2{font-size:clamp(28px,7vw,42px);}
  .doorway-cta{padding:14px 22px;font-size:14px;}

  .cards{gap:14px;}
  .card{padding:24px 22px;min-height:auto;}
  .card h3{font-size:21px;}

  .offerings-head,.contact-form-grid,.about-block{gap:24px;}

  details.offer > summary{padding:24px 22px;gap:16px;}

  .article-shell{padding:120px 20px 64px;}
  .article-wrap{max-width:none;}
  .article-body{padding:24px 22px;border-radius:20px;}
  .article-body h2{font-size:22px;}
  .article-body p{font-size:15.5px;}

  footer{padding:48px 22px 32px;}
  .footer-col a{padding:8px 0;}
}

@media (max-width:480px){
  /* App-like density on phones: smaller type + tighter vertical rhythm.
     The nav is sticky (not fixed), so section top paddings are pure
     breathing room and safe to compress. */
  body{font-size:15px;line-height:1.5;}

  .hero{padding:130px 18px 38px;gap:24px;}
  .hero h1{font-size:clamp(31px,8.6vw,40px);line-height:1.06;}
  .hero-sub{font-size:14.5px;}
  .hero-cta-row{flex-direction:column;align-items:stretch;gap:12px;}
  .hero-cta{width:100%;justify-content:center;padding:14px 20px;font-size:14px;}
  .hero-ghost{align-self:flex-start;}

  .creds-strip{grid-template-columns:1fr 1fr;gap:14px;margin-top:24px;padding-top:20px;}
  .creds-cell .v{font-size:15px;}

  .page-hero{padding:104px 18px 56px;}
  .page-hero h1{font-size:clamp(29px,8vw,40px);}
  .page-hero-sub{font-size:14.5px;}

  .wrap,.wrap-narrow{padding:40px 18px;}
  h2.display{font-size:clamp(25px,7vw,34px);line-height:1.08;}

  .breath-section{padding:40px 18px 44px;}
  .breath-card{padding:24px 18px;}

  .quote{padding:44px 18px;}
  blockquote{font-size:clamp(22px,6.2vw,30px);}

  .cards{gap:12px;}
  .cards .card,
  .card{padding:20px 18px;}
  .card h3{font-size:19px;}

  .doorways,.offerings{padding:40px 18px;}
  .doorway{padding:44px 18px;}
  .doorway h2{font-size:clamp(25px,6.6vw,36px);}
  .doorway p{font-size:15px;margin-bottom:24px;}
  .doorway-cta{width:100%;justify-content:center;}
  .doorway-cta span:first-child{flex:1 1 auto;text-align:center;}

  .article-shell{padding:64px 18px 44px;}
  .article-body{padding:20px 18px;}
  .article-body h2{font-size:20px;}
  .article-body p{font-size:15px;}

  .form-hero{padding:48px 18px 0;}
  .form-hero h1{font-size:clamp(30px,8vw,40px);}
  .form-wrap{padding:22px 18px 48px;}
  .form-card{padding:24px 18px;}

  footer{padding:34px 18px 24px;}
}

/* ─── Motion safety ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important;transition:none !important;}
  html{scroll-behavior:auto;}
  .motion-layer{display:none;}
  .orb,.orb-halo,.breath-orb{animation:none;transform:none;}
}

/* Lingering legacy elements that pages still ship — make harmless */
.hero-portrait .glow,.page-hero-portrait .glow,
.hero-portrait .frame,.page-hero-portrait .frame{display:none;}
.breath-orb{
  position:absolute;left:50%;top:50%;
  width:min(56vmin,520px);aspect-ratio:1/1;border-radius:50%;
  transform:translate(-50%,-50%);
  z-index:0;pointer-events:none;
  background:radial-gradient(circle at 50% 50%,
    rgba(232,145,113,.22) 0%,
    rgba(232,145,113,.14) 28%,
    rgba(232,145,113,.06) 55%,
    transparent 78%);
  filter:blur(8px);opacity:.7;mix-blend-mode:screen;
  animation:breathSlow 10s ease-in-out infinite;
}
@keyframes breathSlow{
  0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.75;}
  50%   {transform:translate(-50%,-50%) scale(1.05);opacity:.95;}
}

/* ─── App shell · bottom tab bar (mobile) + PWA ─────────────────────
   Mobile gets an app-style "lower" nav bar fixed to the bottom; the
   redundant hamburger is hidden once the tab bar is present. Built by
   assets/nav.js so it appears on every page that loads it. */
.tabbar{display:none;}

@media (max-width:880px){
  .tabbar{
    display:flex;justify-content:space-around;align-items:stretch;
    position:fixed;left:0;right:0;bottom:0;z-index:60;
    padding:7px 8px calc(7px + env(safe-area-inset-bottom));
    background:rgba(40,8,8,.74);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border-top:1px solid rgba(255,236,217,.12);
  }
  .tabbar-link{
    flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;gap:3px;
    padding:6px 4px;border-radius:14px;
    color:var(--paper-mid);font-family:var(--body);font-weight:500;
    font-size:10.5px;letter-spacing:.01em;line-height:1;text-align:center;white-space:nowrap;
    transition:color .18s ease,background .18s ease;
  }
  .tabbar-link:active{background:rgba(255,236,217,.07);}
  .tabbar-icon{display:block;}
  .tabbar-icon svg{display:block;width:23px;height:23px;}
  .tabbar-link.is-active{color:var(--cherry);}
  .tabbar-link.is-active .tabbar-icon svg{filter:drop-shadow(0 0 6px rgba(126,42,30,.45));}

  /* keep content + footer clear of the fixed bar */
  body.has-tabbar{padding-bottom:calc(62px + env(safe-area-inset-bottom));}
  /* tabs now carry the nav — the hamburger is redundant, so centre the logo on top */
  body.has-tabbar .nav-toggle{display:none;}
  body.has-tabbar .nav-inner{justify-content:center;}
}

/* Installed (standalone) launches: let the sticky nav own the top safe area */
html.pwa-standalone .nav{padding-top:env(safe-area-inset-top);}

/* Smooth cross-page transitions where the browser supports them */
@view-transition{navigation:auto;}

/* ===================================================================
   DAWN — light theme override layer (appended last; overrides the
   original dark-field rules without rewriting them).
   Soft green→cream→yellow field showing through · dark ink text ·
   frosted-white panels · red kept only as accent · shimmering grain.
   =================================================================== */
html{background:var(--bg-mid);}
body{
  background:
    radial-gradient(120% 80% at 20% 0%, #D8E2CC 0%, transparent 55%),
    radial-gradient(110% 70% at 80% 100%, #EDDFC2 0%, transparent 55%),
    linear-gradient(178deg,
      var(--bg-top) 0%, #D6E3CA 28%, var(--bg-mid) 56%, #EDE6CC 78%, var(--bg-bot) 100%) fixed no-repeat;
  background-size:cover;
  color:var(--paper);
  min-height:100vh;
}
/* film-grain layer — slow, cinematic drift (like reading on textured paper) */
body::before{
  content:"";position:fixed;inset:-10%;z-index:-1;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:240px 240px;opacity:.11;mix-blend-mode:multiply;
  animation:dawnGrain 8s ease-in-out infinite;
  will-change:transform, opacity;
}
/* second grain layer — finer + counter-drift, gives the motion-graphic feel */
body::after{
  content:"";position:fixed;inset:-10%;z-index:-1;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:180px 180px;opacity:.07;mix-blend-mode:overlay;
  animation:dawnGrainFine 5.5s ease-in-out infinite reverse;
  will-change:transform, opacity;
}
@keyframes dawnGrain{
  0%   {opacity:.09;transform:translate3d(0,0,0);}
  25%  {opacity:.13;transform:translate3d(-14px,8px,0);}
  50%  {opacity:.10;transform:translate3d(10px,-12px,0);}
  75%  {opacity:.14;transform:translate3d(-6px,-4px,0);}
  100% {opacity:.09;transform:translate3d(0,0,0);}
}
@keyframes dawnGrainFine{
  0%   {opacity:.05;transform:translate3d(0,0,0) scale(1);}
  50%  {opacity:.09;transform:translate3d(8px,-6px,0) scale(1.02);}
  100% {opacity:.05;transform:translate3d(0,0,0) scale(1);}
}
/* the one field shows through every section */
section, section.shell, .hero, .page-hero, .doorway, .doorways, .offerings,
.quote, .breath-section, .method, .hour, .month, .why, .journal, .journal-index,
.about-narrative, .about, .contact-form-block, .contact-other, .calendar-block,
.article-shell, .form-block, .form-hero, footer{ background:transparent !important; }
/* drop the home-hero photo + dark veil so the field reads through */
.hero::before, .hero::after, .hero .veil{ display:none !important; }
/* frosted-white panels with a fine dark hairline */
.glass, .card, .breath-card, .method-cell, .month-cell, .j-theme, .journal-theme,
details.offer, .form-card, .contact-form-card, .article-body, .quote-inner{
  background:var(--frost) !important;
  border:1px solid var(--frost-line) !important;
  box-shadow:0 12px 30px rgba(46,42,28,.10) !important;
}
.nav{ background:var(--frost-2) !important; box-shadow:none !important; border-bottom:1px solid var(--frost-line) !important; }
.tabbar{ background:rgba(255,236,217,.70) !important; border-top:1px solid var(--frost-line) !important; }
.nav-overlay{ background:var(--bg-mid) !important; }
/* primary actions → red accent, cream label */
.nav-cta, .hero-cta, .doorway-cta, .cal-cta, .nav-overlay-cta{
  background:var(--cherry) !important; color:var(--cream) !important; border-color:transparent !important;
}
/* keep the red number badges legible (red dot, cream glyph) */
.month-cell .num, .hour .num, .card-icon, .creds-cell .v{ color:var(--paper) !important; }
/* selection · skip · focus tuned for light */
::selection{ background:var(--cherry); color:var(--cream); }
.skip-link{ background:var(--cherry) !important; color:var(--cream) !important; }
:focus-visible{ outline-color:var(--cherry); }
@media (prefers-reduced-motion: reduce){ body::before, body::after{ animation:none; } }

/* Dawn · accents — make every action pill the red CTA, and italic
   heading emphasis red (font accent). Appended after the Dawn layer. */
.card .inset-pill, .card-price .link, .reach, .session .reach,
.reveal-foot .reach, .hero-cta, .article-doorway .pill{
  background:var(--cherry) !important; color:var(--cream) !important;
  border:1px solid transparent !important;
}
.card .inset-pill:hover, .card-price .link:hover, .reach:hover,
.article-doorway .pill:hover{
  background:var(--cherry-2) !important;
}
/* keep waiting-list / disabled actions quiet, not red */
.reach.full, .reach.disabled{
  background:var(--frost) !important; color:var(--paper-mid) !important;
  border:1px solid var(--frost-line) !important;
}
/* italic emphasis in headings = red (the accent the client loves).
   .article-shell h1 .hl is the journal headline emphasis — it must match
   the same hierarchy as every other page's headline <em>. */
.hero h1 em, .page-hero h1 em, h2.display em, .form-hero h1 em,
.breath-card h2 em, .creds-cell .v em, .creds-paper-cell .v em,
.article-doorway h2 em, .article-shell h1 .hl{ color:var(--cherry) !important; }

/* ─── Dawn · form inputs (forms were built for cherry bg, this
   re-tunes contrast for the light field — covers both .contact-form-card
   on /contact and .form-card on /devishakti_form.html). ──────── */
.contact-form-card .l,
.contact-form-card label,
.form-card label{ color:var(--paper) !important; }
.contact-form-card .hint,
.contact-form-card .privacy-note,
.form-card .hint,
.form-card .privacy-note{ color:var(--paper-mid) !important; }
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select,
.form-card input,
.form-card textarea,
.form-card select{
  background:rgba(255,236,217,.68) !important;
  border:1px solid rgba(46,42,28,.22) !important;
  color:var(--paper) !important;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder,
.form-card input::placeholder,
.form-card textarea::placeholder{ color:rgba(46,42,28,.42) !important; }
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus,
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus{
  border-color:var(--cherry) !important;
  background:rgba(255,236,217,.86) !important;
  box-shadow:0 0 0 4px rgba(126,42,30,.16) !important;
}
.contact-form-card select,
.form-card select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%237E2A1E' stroke-width='1.7' stroke-linecap='round'><path d='M1 1l6 6 6-6'/></svg>") !important;
  background-repeat:no-repeat !important;
  background-position:right 18px center !important;
}
.contact-form-card select option,
.form-card select option{ background:#FBF6EC !important; color:var(--paper) !important; }
.contact-form-card label .req,
.form-card label .req{ color:var(--cherry) !important; }
.contact-form-card .route,
.form-card .route{
  border-left-color:var(--cherry) !important; color:var(--cherry) !important;
}
.contact-form-card .submit,
.contact-form-card .write-cta,
.form-card .submit,
.form-card .form-submit{
  background:var(--cherry) !important; color:var(--cream) !important;
}
.form-card .form-submit span{ color:var(--cream) !important; }
.contact-form-card .privacy-note a,
.form-card .privacy-note a{
  color:var(--cherry) !important; border-bottom-color:rgba(126,42,30,.35) !important;
}

/* ─── Footer · mobile · centered + horizontal Practice ───────── */
@media (max-width:560px){
  .footer-inner{ text-align:center; }
  .footer-brand{ display:flex;flex-direction:column;align-items:center; }
  .footer-brand .mark{ justify-content:center; }
  .footer-brand .copy{ margin-left:auto;margin-right:auto; }
  .footer-col h4{ text-align:center; }
  /* Practice column — links flow horizontally, centered, wrap to 2 lines */
  .footer-col:not(:last-child){
    display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
    gap:4px 16px;
  }
  .footer-col:not(:last-child) h4{ width:100%;margin-bottom:8px; }
  .footer-col:not(:last-child) a{ padding:2px 0;font-size:13.5px; }
  /* Reach row — centered */
  .footer-col:last-child{
    display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
    gap:12px;
  }
  .footer-col:last-child h4{ width:100%; }
  .footer-col:last-child > a{ margin:0; }
}

/* ===================================================================
   BRAND MARK + ICON SYSTEM (May 2026)
   The lotus mark replaces the abstract dot prefix; the dot becomes a
   hairline divider matching the horizontal-lockup spec. All icons load
   from one sprite (/assets/icons.svg) and inherit currentColor.
   =================================================================== */

/* ─── lotus mark in brand wrappers ─────────────────────────────────
   The brand-book lotus is full-colour and ~square (viewBox 60×58.5), so the
   wrappers below are sized 1:1. CSS `color` no longer tints it — the SVG
   carries its own sage/terracotta/cream fills + cherry outline. */
.brand-mark{
  display:inline-block;flex:none;align-self:center;
  width:26px;height:26px;line-height:0;
}
.brand-mark svg{display:block;width:100%;height:100%;}
.nav-brand .brand-mark{margin-right:6px;}
.nav-overlay-brand .brand-mark{width:30px;height:30px;}
.footer-brand .mark .brand-mark{width:34px;height:34px;}
.rail-brand .brand-mark{width:28px;height:28px;margin-right:6px;}

/* Two-tone wordmark — DEVI keeps the inherited ink, SHAKTI is terracotta.
   (Brand book: "DEVI in ink, SHAKTI in cherry"; site uses terracotta.) */
.w-shakti{ color:var(--orange); }

/* The legacy dot becomes the hairline divider from the horizontal lockup */
.nav-brand .dot,
.nav-overlay-brand .dot,
.footer-brand .mark .dot,
.rail-brand .dot{
  width:1px;height:14px;border-radius:0;
  background:currentColor;opacity:.32;
  align-self:center;
}

/* ─── generic icon utility ─────────────────────────────────────── */
.icon{
  display:inline-block;flex:none;
  width:1em;height:1em;
  line-height:0;vertical-align:-0.15em;
  color:inherit;fill:none;
  pointer-events:none;
}
.icon svg{display:block;width:100%;height:100%;}
.icon.is-lg{width:1.4em;height:1.4em;}
.icon.is-xl{width:2em;height:2em;}

/* ─── menu button (sprite icon replaces the old CSS bars) ──────── */
.nav-toggle svg{display:block;width:22px;height:22px;color:currentColor;}
.nav-overlay-close svg{display:block;width:22px;height:22px;color:currentColor;}

/* ─── offering cards — icon + number stacked in the corner ─────── */
.offer-icon{
  display:flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:12px;
  background:rgba(90,103,71,.12);
  color:var(--sage);margin-bottom:10px;
  flex:none;
}
.offer-icon svg{display:block;width:22px;height:22px;}

/* ─── "Other ways to reach me" — icon chip on each cell ───────── */
.contact-other-cell .reach-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:12px;
  background:rgba(126,42,30,.08);
  color:var(--cherry);margin-bottom:14px;
}
.contact-other-cell .reach-icon svg{display:block;width:24px;height:24px;}

/* ─── footer Reach column — small inline icon before each link ─── */
.footer-col a .icon{
  margin-right:8px;color:var(--paper-mid);
  width:16px;height:16px;vertical-align:-3px;
}

/* ─── practice hub doorways — icon on each card ────────────────── */
.practice-doorway .door-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:14px;
  background:rgba(90,103,71,.10);color:var(--sage);
  margin-bottom:14px;
}
.practice-doorway .door-icon svg{display:block;width:26px;height:26px;}

/* ─── form — calendar/clock decoration on Saturday/time fields ── */
.form-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:10px;
  background:rgba(90,103,71,.10);color:var(--sage);
  flex:none;
}
.form-icon svg{display:block;width:18px;height:18px;}

/* ─── hero arrow + doorway arrow (text → icon) ────────────────── */
.hero-cta .arrow svg, .doorway-cta .arrow svg,
.nav-overlay-cta .arrow svg, .reach .arrow svg{
  display:block;width:14px;height:14px;color:currentColor;
}
.hero-cta .arrow.is-icon, .doorway-cta .arrow.is-icon{
  background:none;border:none;width:auto;height:auto;
  color:currentColor;
}

/* ─── breath widget — breath icon decoration above eyebrow ────── */
.breath-card .breath-glyph{
  display:flex;align-items:center;justify-content:center;
  width:46px;height:46px;border-radius:50%;
  background:rgba(126,42,30,.08);color:var(--cherry);
  margin:0 auto 10px;
}
.breath-card .breath-glyph svg{display:block;width:26px;height:26px;}

/* ─── tabbar — icons render at the canonical 23px set in the tab block above */
.tabbar-icon svg{color:currentColor;}

/* ─── Print: lotus mark stays sage; icons collapse to currentColor */
@media print{
  .brand-mark{color:var(--sage) !important;}
  .icon, .offer-icon, .reach-icon, .door-icon, .form-icon{color:var(--paper) !important;background:transparent !important;}
}

/* ===================================================================
   POLISH PASS (2026-05-31) — fixes from senior-designer audit:
   · italic clauses no longer split mid-phrase
   · hero gets a right-column status card on tablet/desktop
   · bottom-tab active state gets a frosted pill scrim
   · offering cards always show price + Reserve, details only reveals dates
   · doorway CTA shrinks to fit on mobile
   =================================================================== */

/* 1 ─ Italic spans in headlines stay whole. Hero ems are short clauses;
   forcing inline-block + nowrap stops awkward mid-italic breaks. The
   sub-grid lets them wrap onto their own line if needed, intact. */
.hero h1 em,
.page-hero h1 em,
.form-hero h1 em,
h2.display em,
.breath-card h2 em{
  display:inline-block;
  white-space:nowrap;
}
/* On phones the em can be longer than the column — let it wrap softly there. */
@media (max-width:520px){
  .hero h1 em,
  .page-hero h1 em,
  .form-hero h1 em,
  h2.display em,
  .breath-card h2 em{ white-space:normal; }
}

/* 2 ─ Hero side card (desktop / tablet only). On mobile the hero is a
   single column and this stays hidden — copy reads naturally first. */
.hero-side{
  display:none;
  align-self:end;
  width:min(380px, 30vw);
  padding:28px 26px 26px;
  border-radius:24px;
  background:var(--frost);
  border:1px solid var(--frost-line);
  box-shadow:0 18px 40px rgba(46,42,28,.12);
  color:var(--paper);
  text-align:left;
}
.hero-side .hs-eyebrow{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);margin:0 0 12px;
}
.hero-side .hs-title{
  font-family:var(--display);font-weight:700;font-size:24px;letter-spacing:-.022em;
  color:var(--paper);margin:0 0 8px;line-height:1.1;
}
.hero-side .hs-title em{
  font-family:var(--serif);font-style:italic;font-weight:300;color:var(--cherry);
}
.hero-side .hs-body{
  font-family:var(--body);font-size:14px;line-height:1.55;color:var(--paper-soft);
  margin:0 0 18px;
}
.hero-side .hs-cycle{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:14px 16px;border-radius:14px;
  background:rgba(46,42,28,.06);
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--paper-mid);
}
.hero-side .hs-cycle .step{display:inline-flex;flex-direction:column;align-items:center;gap:4px;}
.hero-side .hs-cycle .step .n{
  font-family:var(--display);font-weight:700;font-size:18px;letter-spacing:-.02em;
  color:var(--cherry);
}
.hero-side .hs-cycle .dot{
  width:3px;height:3px;border-radius:50%;background:var(--paper-fade);align-self:center;
}
.hero-side .hs-foot{
  display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:16px;
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--paper-mid);
}
.hero-side .hs-foot .pulse{
  width:8px;height:8px;border-radius:50%;background:var(--cherry);
  box-shadow:0 0 0 0 rgba(126,42,30,.55);
  animation:hsPulse 2.4s ease-out infinite;
}
@keyframes hsPulse{
  0%   { box-shadow:0 0 0 0 rgba(126,42,30,.45); }
  70%  { box-shadow:0 0 0 12px rgba(126,42,30,0); }
  100% { box-shadow:0 0 0 0 rgba(126,42,30,0); }
}
@media (min-width:880px){
  .hero-side{ display:block; }
  /* let copy + side card share the bottom edge on big screens */
  .hero-inner{ align-items:end; gap:clamp(40px,5vw,80px); }
  .hero-copy{ max-width:none; }
  /* with a side card present, cap the H1 so "Take a breath." sits on
     one line — otherwise it double-wraps at 88px font-size. */
  .hero-inner:has(.hero-side) .hero h1{ font-size:clamp(44px,6vw,76px); }
}
@media (prefers-reduced-motion:reduce){
  .hero-side .hs-foot .pulse{ animation:none; }
}

/* 3 ─ Active bottom-tab gets a frosted pill scrim (mobile only) */
@media (max-width:880px){
  .tabbar-link.is-active{
    background:rgba(255,236,217,.45);
    border:1px solid rgba(126,42,30,.20);
    box-shadow:0 1px 0 rgba(255,236,217,.50) inset, 0 4px 12px rgba(46,42,28,.10);
  }
}

/* 4 ─ Offerings page helper text replaces the old eyebrow + headline +
   lead stack. One quiet line above the cards. */
.offerings-helper{
  max-width:560px;margin:0 auto 36px;text-align:center;
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-mid);
}

/* 4 ─ Offerings cards: price + Reserve always visible on the closed
   summary; <details> only reveals sessions on tap. The summary becomes
   a 4-column grid on tablet+ (number · main · price · CTA), and on
   phones the CTA tucks in on its own row beneath the body. */
.offer-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 18px;border-radius:999px;
  background:var(--cherry);color:var(--cream) !important;
  border:1px solid transparent;
  font-family:var(--body);font-weight:500;font-size:13.5px;letter-spacing:-.002em;
  text-decoration:none;white-space:nowrap;
  transition:background .2s ease, transform .2s ease;
}
.offer-cta:hover{ background:var(--cherry-2); transform:translateY(-1px); }
.offer-cta .arrow{ font-size:13px; }
.offer-cta.is-waitlist{
  background:var(--frost);color:var(--paper) !important;
  border-color:var(--frost-line);
}

/* 4-column summary layout when the card has a primary CTA.
   The first (icon + label) column is a FIXED width so every card's title
   starts at the same horizontal position — an auto column made the titles
   jitter left/right with each label's length. */
details.offer.has-cta > summary{
  grid-template-columns:clamp(180px,19vw,225px) 1fr auto auto;
  align-items:center;
}
/* Keep the icon + label column anchored to the top so it lines up with the
   title regardless of how many lines the label has (e.g. the demo card has no
   stage-number line). Price + CTA stay vertically centred. */
details.offer.has-cta > summary .offer-num{ align-self:start; }
@media (max-width:780px){
  details.offer.has-cta > summary{
    grid-template-columns:1fr;
    gap:14px;
  }
  details.offer.has-cta .offer-cta{ align-self:start; }
  details.offer.has-cta .offer-price{ text-align:left; }
}
/* The "See next sessions" affordance now reads as a subtle pill, not
   a small mono label — clearly tappable. */
details.offer .offer-toggle{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 12px;margin-top:14px;border-radius:999px;
  background:rgba(46,42,28,.05);
  border:1px solid rgba(46,42,28,.10);
  color:var(--paper-mid);
}
details.offer[open] .offer-toggle{ background:rgba(126,42,30,.06); color:var(--cherry); border-color:rgba(126,42,30,.18); }

/* 5 ─ Doorway CTA: tighter on mobile so the trimmed label fits one line. */
@media (max-width:520px){
  .doorway-cta{
    padding:13px 18px;font-size:13.5px;gap:10px;
  }
  .doorway-cta .arrow{width:20px;height:20px;}
}

/* 6 ─ Mobile footer simplified: bottom-tab bar already handles nav, so
   the Practice + Begin columns are redundant — hide them. The Reach
   column drops the icon-only circle styling and reads as plain text
   links (full email / handle / "WhatsApp") so first-time visitors can
   identify them at a glance. Footer becomes: brand · Reach. Done. */
@media (max-width:560px){
  /* hide the link-list columns (Practice, Begin, anything else); keep
     the brand and the last column (Reach). */
  .footer-col:not(:last-child){ display:none !important; }

  /* Reach column → plain text links, no circle, no font-size:0. The
     icon ::before glyph is hidden so the label reads cleanly. */
  .footer-col:last-child{
    grid-column:1 / -1;margin-top:0;margin-bottom:0;
    display:flex;flex-direction:column;align-items:center;gap:8px;
  }
  .footer-col:last-child h4{
    width:100%;margin-bottom:6px;
    font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
    color:var(--paper-mid);
  }
  .footer-col:last-child > a{
    width:auto;height:auto;padding:6px 0;
    display:inline-flex;align-items:center;gap:0;
    background:transparent;border:0;border-radius:0;
    font-size:14px;line-height:1.3;color:var(--paper);
  }
  .footer-col:last-child > a::before{ display:none !important; }
}

/* ===================================================================
   BRAND MARK REFIT (2026-05-31, v2)
   · Nav → lotus icon only (no wordmark text in nav, mobile or desktop)
   · Footer + mobile overlay → lotus icon STACKED above the wordmark,
     wordmark uses Inter 500 with normal tracking (the "older / lighter"
     feel the client preferred over the Studio Eighteen 700 + tight track)
   · Body content keeps the full Devishakti name freely
   =================================================================== */

/* ─ 1. Nav brand: brand-book horizontal lockup — lotus + a text block with
   DEVISHAKTI on top and a small देवीशक्ति tucked directly beneath it. A 2-row
   grid keeps the Devanagari under the Latin (the lotus spans both rows).
   On phones the nav shrinks to the lotus alone. */
.nav-brand{
  display:grid;
  grid-template-columns:auto auto;
  grid-template-rows:auto auto;
  column-gap:9px; row-gap:2px;
  align-items:center; letter-spacing:.01em;
}
.nav-brand .dot{ display:none !important; }
.nav-brand .brand-mark{
  grid-column:1; grid-row:1 / 3; align-self:center;
  margin:0; width:34px;height:34px;
}
.nav-brand .wordmark{ grid-column:2; grid-row:1; align-self:end; justify-self:start; line-height:1; }
.nav-brand .dn{
  grid-column:2; grid-row:2; align-self:start; justify-self:start; text-align:left;
  display:block !important;
  font-family:var(--dn); font-weight:600; font-size:11px; line-height:1;
  letter-spacing:.02em; color:var(--paper-mid); text-transform:none;
}
@media (max-width:760px){
  /* phones → lotus only */
  .nav-brand .wordmark, .nav-brand .dn{ display:none !important; }
  .nav-brand{ display:inline-flex; align-items:center; }
  .nav-brand .brand-mark{ width:34px;height:34px; }
}

/* ─ 2. Footer brand: brand-book banner lockup — lotus + a left-aligned text
   column [ DEVISHAKTI / देवीशक्ति / The art of returning ]. 3-row grid, lotus
   spans all three; the whole lockup is centred in the footer column. */
.footer-brand .mark{
  display:inline-grid;
  grid-template-columns:auto auto;
  grid-template-rows:auto auto auto;
  column-gap:12px; row-gap:2px;
  align-items:center; line-height:1;
}
.footer-brand .mark .dot{ display:none !important; }
.footer-brand .mark .brand-mark{
  grid-column:1; grid-row:1 / 4; align-self:center;
  width:42px;height:42px;margin:0;
}
/* DEVISHAKTI — uppercase Inter 700, two-tone (SHAKTI terracotta via .w-shakti). */
.footer-brand .mark .wordmark{
  grid-column:2; grid-row:1; align-self:end; justify-self:start;
  font-family:var(--display);font-weight:700;letter-spacing:.01em;
  text-transform:uppercase;font-size:20px;color:var(--paper);line-height:1;
}
/* देवीशक्ति — small, tucked beneath, left-aligned with DEVI (overrides the
   footer's inherited text-align:center). */
.footer-brand .mark .dn{
  grid-column:2; grid-row:2; align-self:start; justify-self:start; text-align:left;
  font-family:var(--dn);font-weight:600;font-size:12px;line-height:1;
  letter-spacing:.02em;color:var(--paper-mid);
}
/* The art of returning. — third line of the lockup, flush-left under DEVI. */
.footer-brand .mark .tag{
  grid-column:2; grid-row:3; justify-self:start; text-align:left;
  margin-top:4px;
}

/* ─── Footer · desktop · 3 columns, each column's items in a row ─────── */
@media (min-width:720px){
  .footer-inner{
    max-width:1080px;
    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:start;justify-items:center;
    gap:40px;text-align:center;
  }
  /* Col 1 · Brand: the lotus + DEVISHAKTI/देवीशक्ति grid lockup (defined
     above) is identical at every width — only the surrounding copy widens. */
  .footer-brand{ align-items:center; }
  .footer-brand .copy{ max-width:34ch; }
  /* Col 2 · Practice: heading on top, links in a centered row below */
  .footer-col:not(:last-child){
    display:flex;flex-direction:row;flex-wrap:wrap;
    justify-content:center;align-items:center;gap:6px 16px;
  }
  .footer-col:not(:last-child) h4{ width:100%;margin:0 0 6px;text-align:center; }
  .footer-col:not(:last-child) > a{ padding:0; }
  /* Col 3 · Reach: icons in a single centered row */
  .footer-col:last-child{
    display:flex;flex-direction:row;flex-wrap:wrap;
    justify-content:center;align-items:center;gap:14px;
  }
}

/* ─ 3. Mobile overlay header: same stacked treatment + softer weight. */
.nav-overlay-brand{
  flex-direction:column;align-items:flex-start;gap:7px;
}
.nav-overlay-brand .dot{ display:none; }
.nav-overlay-brand .brand-mark{
  width:32px;height:32px;margin:0;
}
.nav-overlay-brand .wordmark{
  font-family:var(--display);font-weight:700;letter-spacing:.01em;
  font-size:19px;color:var(--paper);text-transform:uppercase;line-height:1;
  order:1;
}
/* देवीशक्ति — small, tucked directly under DEVISHAKTI. */
.nav-overlay-brand .dn{
  font-family:var(--dn);font-weight:600;font-size:12px;line-height:1;
  letter-spacing:.02em;color:var(--paper-mid);
  order:2;margin-top:-4px;
}

/* ─ 4. Footer Reach → bare icon glyphs only. No "REACH" heading, no
   circle background, no border, no label text. Three quiet icons in
   a row — universally recognised, nothing extra to read. */
.footer-col:last-child h4{ display:none !important; }
.footer-col:last-child > a{
  width:auto;height:auto;padding:8px;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent !important;border:0 !important;border-radius:0;
  font-size:0;color:transparent;line-height:0;gap:0;
  transition:opacity .2s ease, transform .2s ease;
  opacity:.75;
}
.footer-col:last-child > a::before{
  display:inline-block !important;width:22px;height:22px;opacity:1;
}
.footer-col:last-child > a:hover{ opacity:1; transform:translateY(-1px); }
@media (max-width:560px){
  .footer-col:last-child{
    flex-direction:row;justify-content:center;gap:16px;
  }
  .footer-col:last-child > a{ padding:10px; }
  .footer-col:last-child > a::before{
    display:inline-block !important;width:22px;height:22px;
  }
}

/* ─ 5. Footer-base on one line at every width — collapse the original
   "flex-direction:column" override on mobile, and join the two spans
   with a centred bullet so they read as one continuous line. */
.footer-base{
  flex-direction:row !important;flex-wrap:wrap;justify-content:center;
  gap:6px 14px;text-align:center;
}
.footer-base > span + span::before{
  content:"·";display:inline-block;margin-right:8px;
  color:var(--paper-low);
}

/* ─ 6a. Contact page · solo form (no left-column head).
   Form card centres in the wrap, max 600px, full-width on mobile. */
.contact-form-wrap-solo{
  display:flex;justify-content:center;
}
.contact-form-wrap-solo .contact-form-card{
  width:min(600px,100%);
}

/* ─ 6b. Back-link chip — appears at the very top of child pages just
   below the nav. A quiet ← arrow + parent label. Consistent site-wide. */
.page-back{
  display:inline-flex;align-items:center;gap:7px;
  padding:8px 14px 8px 10px;
  border-radius:999px;
  background:rgba(255,236,217,.50);
  border:1px solid rgba(46,42,28,.12);
  font-family:var(--body);font-size:13px;font-weight:500;
  color:var(--paper);letter-spacing:-.002em;
  text-decoration:none;
  transition:background .18s ease, transform .18s ease;
  max-width:max-content;
  margin:clamp(14px,2vw,22px) clamp(20px,4vw,56px) 0;
  display:block; /* goes on its own line above the hero */
}
.page-back:hover{ background:rgba(255,236,217,.75); transform:translateX(-2px); }
.page-back .back-arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:rgba(46,42,28,.08);
  font-size:13px;line-height:1;flex-shrink:0;
}

/* ─ 6. Homepage one-to-one card · dual price layout (online + Pune).
   Sits inside the standard .card replacing the old single .price line.
   Two rows, label left + amount right, hair-line divider between. */
.card-dual-price{
  display:flex;flex-direction:column;gap:0;
  margin-top:auto;padding-top:14px;
  border-top:1px solid var(--paper-line);
}
.card-dual-price .cdp-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:8px 0;
}
.card-dual-price .cdp-row + .cdp-row{
  border-top:1px dashed var(--paper-hair);
}
.card-dual-price .cdp-label{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper-low);
}
.card-dual-price .cdp-amt{
  font-family:var(--display);font-weight:600;font-size:18px;letter-spacing:-.018em;
  color:var(--paper);
}
.card-dual-price .cdp-amt small{
  display:inline-block;margin-left:6px;
  font-family:var(--mono);font-weight:400;font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--paper-low);
}

/* ─ 7. Pull quote · smaller, refined frame. Instead of a giant 42px
   editorial italic on its own coloured section, the quote now sits as
   a compact frosted card with a subtle left rule, smaller serif italic,
   and the attribution close beneath. Tightens vertical rhythm between
   the cards and the closing doorway. */
.quote{
  padding:clamp(40px,6vw,72px) clamp(20px,4vw,40px) !important;
  background:transparent !important;
}
.quote-inner{
  max-width:600px;margin:0 auto;
  padding:clamp(28px,4vw,40px) clamp(24px,4vw,40px);
  border-radius:22px;
  background:var(--frost) !important;
  border:1px solid var(--frost-line) !important;
  box-shadow:0 12px 30px rgba(46,42,28,.10) !important;
  text-align:left;
  position:relative;
}
.quote-inner::before{
  content:"";position:absolute;top:24px;left:0;bottom:24px;width:2px;
  background:var(--cherry);border-radius:2px;
  margin-left:clamp(24px,4vw,40px);transform:translateX(-100%);
}
.quote blockquote{
  font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(17px,2vw,21px);line-height:1.45;letter-spacing:-.008em;
  color:var(--paper);margin:0;max-width:46ch;
}
.quote-attrib{
  margin-top:18px !important;font-family:var(--mono);font-size:10.5px;
  letter-spacing:.18em;text-transform:uppercase;color:var(--paper-mid) !important;
}

/* ===================================================================
   DENSITY PASS (2026-05-31) — client: "reduce text, more breathable,
   visible on phone AND laptop." Moderate (~20-30%) reduction across
   THREE axes, applied at every breakpoint (appended last so it wins
   by source order). Copy is unchanged — only size + spacing.
     1. Headlines  — ~25% smaller
     2. Body type  — one notch down
     3. Vertical spacing — ~25% tighter section rhythm
   =================================================================== */

/* ── 1. HEADLINES ─────────────────────────────────────────────── */
.hero h1{ font-size:clamp(34px,5.4vw,64px); }
.page-hero h1{ font-size:clamp(30px,4.8vw,58px); }
.form-hero h1{ font-size:clamp(30px,4.4vw,54px); }
.article-shell h1{ font-size:clamp(30px,4.6vw,52px); }
h2.display{ font-size:clamp(26px,3.8vw,48px); margin-bottom:clamp(14px,1.6vw,22px); }
.breath-card h2{ font-size:clamp(25px,3.4vw,40px); }

/* ── 2. BODY TYPE — one notch down ────────────────────────────── */
body{ font-size:15px; }
.hero-sub{ font-size:clamp(14px,1vw,16px); }
.page-hero-sub{ font-size:clamp(14px,1.1vw,16px); }
p.lead, .form-hero p.lead, .offerings .lead{ font-size:15px; }
.doorway p{ font-size:15px; }
.article-shell .lead{ font-size:clamp(15px,1.2vw,17px); }
.card p, .offer-main p, .about-split .cell p, .method-cell p,
.hour-row p, .month-cell p{ font-size:13.5px; }

/* ── 3. VERTICAL SPACING — tighter section rhythm ─────────────── */
.wrap, .wrap-narrow{ padding:clamp(52px,7.5vw,96px) clamp(20px,4vw,56px); }
.breath-section{ padding:clamp(56px,7vw,104px) clamp(20px,4vw,56px); }
.quote{ padding:clamp(32px,5vw,56px) clamp(20px,4vw,40px) !important; }
.doorway{ padding:clamp(56px,8vw,104px) clamp(20px,4vw,56px); }
.offerings{ padding:clamp(56px,8vw,96px) clamp(20px,4vw,56px); }
.about-block + .about-block{ margin-top:clamp(48px,6vw,88px); }
.method-row, .month-row{ margin-top:clamp(28px,4vw,48px); }

/* ── Tablet (≤880px) ──────────────────────────────────────────── */
@media (max-width:880px){
  .wrap, .wrap-narrow{ padding:52px 24px; }
  .breath-section{ padding:52px 22px 64px; }
  .doorway, .offerings, .doorways{ padding:52px 22px; }
  h2.display{ font-size:clamp(24px,6vw,36px); }
  .hero-sub, .page-hero-sub{ font-size:14.5px; }
}

/* ── Phone (≤480px) — densest, most content per screen ────────── */
@media (max-width:480px){
  body{ font-size:14.5px; line-height:1.5; }
  .wrap, .wrap-narrow{ padding:34px 18px; }
  .breath-section{ padding:34px 18px 40px; }
  .quote{ padding:34px 18px !important; }
  .doorway, .doorways, .offerings{ padding:38px 18px; }
  .hero h1{ font-size:clamp(28px,8vw,38px); }
  .page-hero h1{ font-size:clamp(26px,7.4vw,36px); }
  .form-hero h1{ font-size:clamp(26px,7.4vw,36px); }
  .article-shell h1{ font-size:clamp(26px,7.4vw,36px); }
  h2.display{ font-size:clamp(22px,6.4vw,30px); }
  .breath-card h2{ font-size:clamp(22px,6vw,30px); }
  .hero-sub, .page-hero-sub, .doorway p{ font-size:14px; }
  /* page-hero keeps its top breathing room; trim the bottom a touch */
  .page-hero{ padding:104px 18px 44px; }

  /* Section content text — sub-headings + paragraphs — pulled down to
     match the body rhythm so nothing reads oversized on a phone. Covers
     the recognition rows, the method/hour/month cells, and the about
     split + narrative across every page. */
  p.body{ font-size:14px; line-height:1.6; }
  .why-row h3{ font-size:17px; }
  .why-row p{ font-size:14px; }
  .method-cell h3, .hour-row h3, .month-cell h3,
  .about-split .cell h3{ font-size:16px; }
  .method-cell p, .hour-row p, .month-cell p,
  .about-split .cell p{ font-size:13.5px; }
  /* about-narrative pull-quote — trim the oversized editorial italic */
  .about-pull{ font-size:18px; }
  .hour-pull{ font-size:17px; }
}

/* ===================================================================
   TYPE DISTILLATION (mobile ≤480) — one disciplined ladder:
     28 display · 24 section · 18 sub-head · 15 read · 14 body ·
     13 secondary · 11 helper · 10.5 label
   Collapses the heading compression + small-text drift found in the
   audit. Appended last so it settles the final word on mobile sizes.
   =================================================================== */
@media (max-width:480px){
  /* — Sub-headings: every card / row / cell title to ONE size — */
  .card h3,
  .offer-main h3,
  .why-row h3,
  .method-cell h3,
  .hour-row h3,
  .month-cell h3,
  .about-split .cell h3,
  .practice-doorway h3,
  .contact-other-cell h3{ font-size:18px; letter-spacing:-.014em; line-height:1.22; }

  /* — Prices: one step below sub-head, still prominent — */
  .card-price .amt,
  .offer-price .amt,
  .cdp-amt{ font-size:18px; }

  /* — Secondary copy: card descriptions, notes, captions → 13px — */
  .card p,
  .offer-main p,
  .reveal-empty,
  .reveal-foot .note,
  .session .meta{ font-size:13px; }

  /* — Footer serif tagline trimmed to sit with the body — */
  .footer-brand .tag{ font-size:15px; }

  /* — Editorial pull-quotes unified — */
  .article-body .pull,
  .about-pull,
  blockquote{ font-size:19px; line-height:1.4; }
  .hour-pull{ font-size:17px; }

  /* — Nav links inside the overlay: tighten the oversized 28px list — */
  .nav-overlay-links a{ font-size:22px; }
}

/* ===================================================================
   COLOR HIERARCHY (2026-05-31) — one disciplined system, audited live.
   Fixes three breaks: (1) journal headline emphasis was muted gray
   instead of cherry; (2) the article footer kicker was invisible cream
   from the dead dark theme; (3) eyebrows/labels at paper-low (.48) only
   reached 2.73:1 contrast — below WCAG AA.

   INK SCALE (neutral text, on the light field):
     --paper        #2E2A1C   primary — headings, key words      11.8:1
     --paper-soft   .86       body paragraphs                     7.9:1
     --ink-label    .70 (NEW) eyebrows · labels · meta you read   4.9:1 ✓AA
     --paper-mid    .64       quiet meta / captions               4.2:1
     --paper-low    .48       DECORATIVE ONLY (big faded numerals) 2.7:1
   ACCENT SCALE:
     --cherry   primary  — CTAs, headline emphasis, active, tagline
     --orange-2 editorial — Devanagari terms, stagelabels, kind-tags
     --sage     brand    — lotus mark only
     --cream    on-fill  — text/icons on cherry
   =================================================================== */

/* New readable-label tier — lifts the eyebrow/label classes that were
   failing contrast at .48 up to .70 (passes AA for small mono caps).
   Decorative numerals (.why-row .num, the step/when kickers) stay faint
   on purpose and are NOT included here. */
.eyebrow,
.card-eyebrow,
.creds-cell .l, .creds-paper-cell .l,
.contact-other-cell .l,
.card .price,
.card-price .amt-unit, .offer-price .amt-unit,
.cdp-label,
.offer-num,
.reveal-head,
.offerings-helper{
  color:rgba(46,42,28,.70) !important;
}
/* The offer-num's secondary "tag" line stays one notch quieter. */
.offer-num .tag{ color:rgba(46,42,28,.54) !important; }

/* Article footer kicker — was invisible cream + dead JetBrains Mono.
   Now an on-system mono label in the editorial accent (orange-2), tying
   it to the article's stagelabels. */
.article-foot-kicker{
  margin-top:32px;
  font-family:var(--mono);
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--orange-2);
  text-align:center;
}

/* ===================================================================
   HOME · BREATHING BANNER  (appended last — wins over the DAWN layer)

   MOBILE  (<880px): 9:16 portrait card — face visible, breathing player
   overlaid at the bottom. All actions (headline + CTAs + meta) sit in
   .hero-mobile-below, a plain block below the card.

   DESKTOP (≥880px): full-bleed landscape photo, cream text over it,
   breathing player position:absolute at bottom-left. Same approved look.
   =================================================================== */

/* ── Shared photo / scrim setup ─────────────────────────────── */
.hero--breath{ isolation:isolate; }

/* hero-photo beats the "section.hero > * { position:relative; z-index:2 }"
   generic lift rule that would otherwise collapse an abs-positioned element */
.hero--breath .hero-photo{
  position:absolute !important; inset:0; z-index:-3 !important;
  /* Mobile default: portrait crop, face/torso framed at top */
  background:
    image-set(url('/assets/mobile-hero.webp?v=1') type('image/webp'),
              url('/assets/mobile-hero.jpg?v=1')  type('image/jpeg'))
    center 14% / cover no-repeat;
  animation:none;
}
.hero--breath .hero-scrim{
  position:absolute !important; inset:0; z-index:-2 !important; pointer-events:none;
  /* Mobile: strong bottom fade so glass player reads on any photo */
  background:linear-gradient(180deg,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.02) 38%,
    rgba(0,0,0,.42) 70%,
    rgba(0,0,0,.76) 100%);
}

/* ── MOBILE: 9:16 portrait card ─────────────────────────────── */
@media (max-width:879px){
  .hero--breath{
    aspect-ratio:9/16;
    /* no max-height — let 9:16 run to its natural height (667px at 375px wide)
       so the face area above the player is fully exposed */
    overflow:hidden;
    min-height:auto !important;
    padding:0 !important;
  }
  /* Photo brandmark — muted skin/clay tone, multiply-blended into the wall
     so it reads like an etched mark in the texture, not a label on top. */
  /* Brandmark styled like the "Take a breath / Return to yourself" headline:
     big bold name + red italic tagline, centered on the photo. */
  .hero-photo-mark{
    position:absolute !important; z-index:10;
    top:96px; left:16px; right:16px;
    display:flex; flex-direction:column; align-items:center; gap:6px;
    text-align:center; line-height:1;
  }
  .hpm-name{
    font-family:var(--display); font-weight:800; text-transform:none;
    font-size:clamp(30px,8.8vw,40px); letter-spacing:-.034em; line-height:1;
    color:var(--paper);
    text-shadow:0 1px 22px rgba(238,236,222,.55);
  }
  .hpm-tag{
    font-family:var(--serif); font-style:italic; font-weight:300;
    font-size:clamp(27px,7.8vw,36px); letter-spacing:-.01em; line-height:1.04;
    color:var(--cherry);
    text-shadow:0 1px 22px rgba(238,236,222,.5);
  }

  /* Compact player overlay — orb + phase only; cycle/foot move to below-block */
  .hero--breath .breathe-player{
    position:absolute !important;
    left:13px !important; right:13px !important; bottom:13px !important;
    width:auto !important; z-index:5;
    padding:14px 14px 12px !important;
  }
  /* Shrink orb stage on mobile overlay — compact readout */
  .hero--breath .breathe-player{ padding:12px 14px 11px !important; }
  .hero--breath .bp-stage{ padding:6px 0 2px !important; gap:7px !important; }
  .hero--breath .bp-orb-wrap{ width:90px !important; height:90px !important; }
  .hero--breath .bp-orb{ width:56px !important; height:56px !important; }
  .hero--breath .bp-ring{ width:56px !important; height:56px !important; margin:-28px 0 0 -28px !important; }
  .hero--breath .bp-phase{ font-size:14.5px !important; }
  .hero--breath .bp-secs{ font-size:8.5px !important; letter-spacing:.16em !important; margin-top:2px !important; }
  .hero--breath .bp-pill,
  .hero--breath .bp-sound{ font-size:9px !important; padding:6px 11px !important; }
  /* Hide cycle + foot from the overlay — shown in hero-mobile-below instead */
  .hero--breath .bp-cycle{ display:none !important; }
  .hero--breath .bp-foot{ display:none !important; }
  /* Hide desktop-only elements inside the card */
  .hero--breath .hero-inner{ display:none !important; }
  .hero--breath .creds-strip{ display:none !important; }
}

/* ── Mobile below-card block ─────────────────────────────────── */
.hero-mobile-below{ display:none; }
@media (max-width:879px){
  .hero-mobile-below{
    display:block;
    padding:22px 18px 8px;
  }
  /* ── Below-photo block: full typography hierarchy ── */
  .hmb-eyebrow{
    font-family:var(--mono); font-size:10px; letter-spacing:.20em; text-transform:uppercase;
    color:var(--paper-low); margin:0 0 14px;
  }
  .hmb-headline{
    font-family:var(--display); font-weight:800;
    font-size:clamp(28px,7.6vw,36px); letter-spacing:-.038em; line-height:1.02;
    color:var(--paper); margin:0 0 14px;
  }
  .hmb-headline em{
    font-family:var(--serif); font-style:italic; font-weight:300;
    color:var(--cherry); letter-spacing:-.012em;
  }
  .hmb-sub{
    font-size:14.5px; line-height:1.56; color:var(--paper-soft);
    margin:0 0 22px; max-width:360px;
  }
  /* Primary CTA — pill, matching the site's standard CTA buttons */
  .hmb-cta{
    display:inline-flex; align-items:center; justify-content:center; gap:12px;
    width:100%; padding:15px 24px; border-radius:999px;
    background:var(--cherry); color:var(--cream);
    font-family:var(--display); font-weight:600; font-size:15px; letter-spacing:-.005em;
    box-shadow:0 10px 26px rgba(126,42,30,.30);
    transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration:none; margin-bottom:12px;
  }
  .hmb-cta:hover{ background:var(--cherry-2); transform:translateY(-2px); box-shadow:0 14px 30px rgba(126,42,30,.38); }
  .hmb-arrow{
    display:inline-flex; align-items:center; justify-content:center;
    width:24px; height:24px; border-radius:50%;
    background:rgba(255,236,217,.20); font-size:13px; flex-shrink:0;
    transition:transform .25s ease;
  }
  .hmb-cta:hover .hmb-arrow{ transform:translateX(3px); }
  /* Meta line */
  .hmb-meta{
    font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--paper-low); margin:0 0 22px; text-align:center;
  }
  .hmb-meta b{ color:var(--paper-mid); font-weight:500; }
  /* Explore links */
  .hmb-explore{
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    padding-top:16px; border-top:1px solid rgba(46,42,28,.10);
  }
  .hmb-explore-label{
    font-family:var(--mono); font-size:9.5px; letter-spacing:.18em; text-transform:uppercase;
    color:var(--paper-low); flex-shrink:0;
  }
  .hmb-explore-links{ display:flex; gap:8px; flex-wrap:wrap; }
  .hmb-explore-links a{
    padding:6px 13px; border-radius:999px;
    background:rgba(46,42,28,.06); border:1px solid rgba(46,42,28,.12);
    font-size:12.5px; color:var(--paper-soft); letter-spacing:-.005em;
    transition:background .18s ease, color .18s ease;
  }
  .hmb-explore-links a:hover{ background:rgba(46,42,28,.11); color:var(--paper); }
}

/* ── DESKTOP: full-bleed landscape photo ─────────────────────── */
@keyframes heroPan{ from{transform:scale(1.05);} to{transform:scale(1.14);} }

@media (min-width:880px){
  .hero--breath{
    min-height:100dvh; color:var(--cream);
    /* Left/right gutter matches the site's 1280-centered container exactly,
       so the hero content shares the same left edge as every other section. */
    padding:100px max(clamp(20px,4vw,56px), calc((100% - 1280px) / 2)) clamp(36px,4vw,56px);
    display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
    gap:clamp(18px,2vw,30px);
  }
  /* Switch to landscape photo on desktop */
  .hero--breath .hero-photo{
    background:
      image-set(url('/assets/hero.webp?v=2') type('image/webp'),
                url('/assets/hero.jpg?v=2')  type('image/jpeg'))
      center / cover no-repeat !important;
    transform-origin:62% 42%;
    animation:heroPan 34s ease-in-out infinite alternate !important;
  }
  /* Cinematic scrim — anchored LEFT so the editorial column always has
     contrast while the right side opens up to reveal the portrait. */
  .hero--breath .hero-scrim{
    background:
      linear-gradient(90deg, rgba(26,12,7,.82) 0%, rgba(26,12,7,.55) 28%, rgba(26,12,7,.12) 52%, transparent 72%),
      linear-gradient(180deg, rgba(26,12,7,.42) 0%, transparent 24%, transparent 72%, rgba(20,10,6,.55) 100%) !important;
  }
  /* Player: in normal flow on the LEFT, directly below the copy. A complete,
     compact card — full cycle + live footer always visible, never clipped. */
  .hero--breath .breathe-player{
    position:relative !important;
    top:auto !important; left:auto !important; right:auto !important; bottom:auto !important;
    margin:0 !important;
    width:clamp(300px,30vw,360px) !important;
    aspect-ratio:auto !important;
    order:2; flex-shrink:0;
    z-index:3;
    padding:16px 18px 16px !important;
  }
  .hero--breath .bp-stage{ padding:14px 0 4px !important; gap:10px !important; }
  .hero--breath .bp-orb-wrap{ width:clamp(98px,11vh,124px) !important; height:clamp(98px,11vh,124px) !important; }
  .hero--breath .bp-orb{ width:78px !important; height:78px !important; }
  .hero--breath .bp-ring{ width:78px !important; height:78px !important; margin:-39px 0 0 -39px !important; }
  .hero--breath .bp-phase{ font-size:20px !important; }
  .hero--breath .bp-cycle{ display:flex !important; margin-top:12px !important; padding:10px 13px !important; }
  .hero--breath .bp-foot{ display:flex !important; }
  /* Desktop copy layout — the editorial rail above the player */
  .hero--breath .hero-inner{
    width:100%; max-width:680px; margin:0;
    display:grid; grid-template-columns:1fr; align-items:start; gap:0;
    justify-items:start;
    order:1; flex-shrink:0;
    position:relative; z-index:2;
  }
  .hero--breath .hero-copy{ max-width:620px; text-align:left; margin-left:0; }
  /* Kicker — category anchor above the headline */
  .hero--breath .hero-kicker{
    display:inline-flex; align-items:center; gap:9px;
    font-family:var(--mono); font-size:11px; letter-spacing:.2em; text-transform:uppercase;
    color:rgba(251,246,236,.78); margin:0 0 18px;
  }
  .hero--breath .hero-kicker .hk-dot{
    width:6px; height:6px; border-radius:50%; background:#F5C9A8;
    box-shadow:0 0 0 4px rgba(245,201,168,.18);
  }
  .hero--breath .hero-copy h1{ margin-bottom:18px !important; line-height:.98 !important; }
  .hero--breath .hero-sub{ margin:0 0 26px !important; max-width:42ch; }
  .hero--breath .hero-cta-row{ margin-bottom:0 !important; }
  .hero--breath .hero-copy .hero-cta-row{ justify-content:flex-start; align-items:center; }
  .hero--breath .hero-copy h1{
    font-size:clamp(40px,5vw,64px) !important;
    color:var(--cream) !important; text-shadow:0 2px 40px rgba(0,0,0,.45);
  }
  .hero--breath .hero-copy h1 em{ color:#F3DCC3 !important; }
  .hero--breath .hero-sub{ color:rgba(251,246,236,.86) !important; font-size:clamp(15px,1.15vw,17px) !important; line-height:1.6 !important; }
  /* Redundant with the player's live footer + the free-hour button → hide */
  .hero--breath .hero-meta{ display:none !important; }
  .hero--breath .hero-ghost{
    color:rgba(251,246,236,.80) !important;
    border-bottom-color:rgba(251,246,236,.36) !important;
  }
  .hero--breath .hero-ghost:hover{
    color:var(--cream) !important; border-bottom-color:var(--cream) !important;
  }
  /* Credentials strip (desktop only) */
  .hero--breath .creds-strip{
    width:100%; max-width:1280px; margin:0 auto;
    border-top-color:rgba(251,246,236,.24) !important;
    position:relative; z-index:2;
  }
  .hero--breath .creds-cell .l{ color:rgba(251,246,236,.62) !important; }
  .hero--breath .creds-cell .v{
    color:var(--cream) !important; text-shadow:0 1px 10px rgba(0,0,0,.45);
  }
  .hero--breath .creds-cell .v em{ color:#F3DCC3 !important; }
  /* Mobile-below block + photo brandmark invisible on desktop */
  .hero-mobile-below{ display:none !important; }
  .hero-photo-mark{ display:none !important; }
}

/* ── The breathe-along player (its own glass; not the .glass util, so the
      DAWN ".glass{frost !important}" rule never touches it) ── */
.breathe-player{
  width:min(520px,100%);
  border-radius:26px;
  padding:20px 20px 18px;
  color:var(--cream);
  background:rgba(255,236,217,.10);
  border:1px solid rgba(255,236,217,.20);
  box-shadow:
    0 1px 0 rgba(255,236,217,.26) inset,
    0 -1px 0 rgba(0,0,0,.22) inset,
    0 24px 64px rgba(0,0,0,.42);
  backdrop-filter:blur(24px) saturate(135%);
  -webkit-backdrop-filter:blur(24px) saturate(135%);
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .breathe-player{ background:rgba(46,20,12,.62); }
}
.bp-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.bp-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 13px; border-radius:999px;
  background:rgba(255,236,217,.13); border:1px solid rgba(255,236,217,.22);
  font-family:var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(251,246,236,.92);
}
.bp-pill-dot{ width:7px;height:7px;border-radius:50%; background:#F5C9A8;
  box-shadow:0 0 0 0 rgba(245,201,168,.6); animation:bpPulse 4s ease-out infinite; }
.bp-sound{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 13px; border-radius:999px;
  background:rgba(255,236,217,.09); border:1px solid rgba(255,236,217,.22);
  color:rgba(251,246,236,.9);
  font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.bp-sound:hover{ background:rgba(255,236,217,.17); }
.bp-sound .bp-sound-ic{ font-family:var(--dn); font-size:15px; line-height:1; color:#F5C9A8; }
.bp-sound[aria-pressed="true"]{ background:rgba(245,201,168,.20); border-color:rgba(245,201,168,.5); color:var(--cream); }
.bp-sound[aria-pressed="true"] .bp-sound-ic{ color:var(--cream); }

.bp-stage{ display:flex; flex-direction:column; align-items:center; gap:12px; padding:18px 0 6px; }
.bp-orb-wrap{ position:relative; width:164px; height:164px; display:flex; align-items:center; justify-content:center; }
.bp-halo{ position:absolute; inset:-10px; border-radius:50%;
  background:radial-gradient(circle, rgba(245,201,168,.32) 0%, transparent 64%); filter:blur(8px); }
.bp-ring{ position:absolute; left:50%; top:50%; width:104px; height:104px; margin:-52px 0 0 -52px;
  border-radius:50%; border:1px solid rgba(245,201,168,.30); transform:scale(.72); }
.bp-ring.r2{ opacity:.55; }
.bp-orb{
  width:104px; height:104px; border-radius:50%;
  background:radial-gradient(circle at 36% 30%, #FAD9BC 0%, var(--orange-2) 42%, var(--orange) 72%, var(--cherry-2) 100%);
  box-shadow:
    0 0 52px rgba(245,201,168,.50),
    0 0 104px rgba(245,201,168,.28),
    inset -8px -12px 26px rgba(91,26,26,.42),
    inset 7px 10px 20px rgba(255,236,217,.34);
  transform:scale(.72);
  animation:bpBreathe 14s ease-in-out infinite;
  will-change:transform;
}
/* JS clock takes over → silence the CSS fallback animations */
.bp--js .bp-orb, .bp--js .bp-ring{ animation:none !important; }
@keyframes bpBreathe{
  0%{transform:scale(.72);} 14.3%{transform:scale(.72);}
  42.9%{transform:scale(1.16);} 57.1%{transform:scale(1.16);}
  100%{transform:scale(.72);}
}
@keyframes bpPulse{
  0%{box-shadow:0 0 0 0 rgba(245,201,168,.5);}
  70%{box-shadow:0 0 0 10px rgba(245,201,168,0);}
  100%{box-shadow:0 0 0 0 rgba(245,201,168,0);}
}
.bp-readout{ text-align:center; }
.bp-phase{ font-family:var(--display); font-weight:600; font-size:21px; letter-spacing:-.022em; color:var(--cream); }
.bp-secs{ margin-top:3px; font-family:var(--mono); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:rgba(251,246,236,.56); }
.bp-secs .bp-num{ color:#F5C9A8; font-weight:600; }

.bp-cycle{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  margin-top:14px; padding:11px 14px; border-radius:14px;
  background:rgba(255,236,217,.07); border:1px solid rgba(255,236,217,.14);
  font-family:var(--mono); font-size:9.5px; letter-spacing:.13em; text-transform:uppercase; color:rgba(251,246,236,.6);
}
.bp-step{ display:inline-flex; flex-direction:column; align-items:center; gap:4px; transition:color .35s ease; }
.bp-step b{ font-family:var(--display); font-weight:700; font-size:17px; letter-spacing:-.02em;
  color:rgba(251,246,236,.82); transition:color .35s ease, transform .35s ease; }
.bp-step.is-on{ color:#F5C9A8; }
.bp-step.is-on b{ color:#F5C9A8; transform:scale(1.14); }
.bp-sep{ flex:1; height:1px; background:rgba(255,236,217,.16); }

.bp-foot{
  display:flex; align-items:center; justify-content:space-between; gap:10px; margin:14px 2px 0;
  font-family:var(--mono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase; color:rgba(251,246,236,.56);
}
.bp-live{ display:inline-block; width:7px;height:7px;border-radius:50%; margin-right:6px; vertical-align:middle;
  background:#8FBE7A; box-shadow:0 0 0 0 rgba(143,190,122,.6); animation:bpPulse 2.8s ease-out infinite; }

@media (max-width:480px){
  .breathe-player{ width:100%; padding:16px 14px 14px; border-radius:20px; }
  .bp-orb-wrap{ width:130px; height:130px; }
  .bp-orb{ width:84px; height:84px; }
  .bp-ring{ width:84px; height:84px; margin:-42px 0 0 -42px; }
  .bp-phase{ font-size:18px; }
  .bp-cycle{ padding:9px 10px; font-size:9px; }
  .bp-step b{ font-size:15px; }
}
@media (prefers-reduced-motion:reduce){
  .hero--breath .hero-photo{ animation:none !important; transform:none !important; }
  .bp-orb{ animation:none !important; transform:scale(.96); }
  .bp-ring{ display:none; }
  .bp-pill-dot,.bp-live{ animation:none; }
}

