/* ==========================================================================
   Nirakar Yog — stylesheet
   Mobile-first. Breakpoints: 768px (tablet), 1024px (laptop), 1440px (large)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* colour */
  --ivory: #FBF8F3;
  --sand: #F3ECE1;
  --sand-deep: #EBE1D1;
  --line: #E3D8C6;
  --ink: #2B2926;
  --ink-soft: #5F584F;
  --gold: #B8975A;
  --gold-deep: #8A6A2F;
  --saffron: #C9822B;
  --saffron-soft: #E7B274;
  --sage: #8A9A82;
  --earth: #2A2420;
  --earth-2: #3A312A;
  --on-dark: #F4EDE2;
  --on-dark-soft: #CBBFAE;

  /* type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-body: clamp(1.0625rem, 1rem + .2vw, 1.125rem);
  --fs-small: .9375rem;
  --fs-eyebrow: .8125rem;
  --fs-h1: clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);
  --fs-h2: clamp(2.2rem, 1.6rem + 2.6vw, 3.75rem);
  --fs-h3: clamp(1.45rem, 1.25rem + .8vw, 1.85rem);

  /* spacing (8px scale) */
  --s-1: .5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --section-y: clamp(4.5rem, 3rem + 6vw, 9.5rem);
  --gutter: 1.25rem;
  --container: 76rem;

  --radius: 4px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 64px;
  --shadow-soft: 0 1px 2px rgba(43, 41, 38, .04), 0 12px 32px -12px rgba(43, 41, 38, .14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
[hidden] { display: none !important; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }
.contact :focus-visible, .site-footer :focus-visible, .lightbox :focus-visible, .offer :focus-visible { outline-color: var(--saffron-soft); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  padding: .75rem 1rem; background: var(--ink); color: var(--ivory);
  border-radius: var(--radius); transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.6;
}
.eyebrow::before, .eyebrow::after {
  display: inline-block; vertical-align: middle; width: 28px; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow::before { content: ""; margin-right: .75rem; }
.hero .eyebrow { letter-spacing: .16em; }
.section-title, .hero-title, .philosophy-title, .contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.hero-badge-num, .why-number, .step-num, .service-num { font-variant-numeric: lining-nums; }
.section-title { font-size: var(--fs-h2); margin-top: var(--s-2); }
.section-title em, .hero-title em, .philosophy-title em, .contact-title em {
  font-style: italic; font-weight: 300; color: var(--gold-deep);
}
.section-lede { color: var(--ink-soft); max-width: 38rem; margin-top: var(--s-3); }
.prose p + p { margin-top: 1em; }
.prose { color: var(--ink-soft); max-width: 36rem; }

.icon { width: 1.15em; height: 1.15em; flex: none; }
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .8rem 1.6rem;
  font-size: 1rem; font-weight: 500; letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--ivory); box-shadow: 0 10px 24px -12px rgba(43, 41, 38, .55); }
.btn-primary:hover { background: #3a3632; box-shadow: 0 16px 30px -14px rgba(43, 41, 38, .6); }
.btn-primary .icon { color: var(--saffron-soft); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); background: rgba(255, 255, 255, .5); }
.btn-ghost .icon { transition: transform .35s var(--ease); }
.btn-ghost:hover .icon { transform: translateY(2px); }
.btn-pill { min-height: 44px; padding: .55rem 1.2rem; font-size: .9375rem; }
.btn-light { background: var(--saffron-soft); color: var(--earth); }
.btn-light:hover { background: #EDC089; }
.btn-outline-light { border: 1px solid rgba(244, 237, 226, .28); color: var(--on-dark); }
.btn-outline-light:hover { border-color: var(--saffron-soft); }

.text-link {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  font-weight: 500; color: var(--ink);
  background: linear-gradient(currentColor, currentColor) 0 calc(100% - 8px) / 0 1px no-repeat;
  transition: background-size .4s var(--ease), color .3s;
}
.text-link:hover { background-size: 100% 1px; color: var(--gold-deep); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
}
/* The frosted bar lives on a pseudo-element, not on the header itself: a
   backdrop-filter on the header would make it the containing block for the
   fixed mobile menu inside it, shrinking that "full-screen" menu down to the
   header's height whenever the page is scrolled. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 248, 243, .86);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  backdrop-filter: saturate(1.2) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.site-header.is-scrolled::before { opacity: 1; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); }

.brand { display: inline-flex; align-items: center; gap: .75rem; min-height: 44px; position: relative; z-index: 2; }
/* the badge's own lettering is too small to read at header size, so the
   typographic wordmark stays beside it */
.brand-logo { flex: none; width: 44px; height: 44px; }
/* the footer has room for the badge at full presence, lettering and all;
   on phones it sits above the wordmark (all centred) rather than squeezing beside it */
.footer-brand { text-align: center; }
.site-footer .brand { flex-direction: column; align-items: center; gap: var(--s-2); }
.site-footer .brand-logo { width: 152px; height: 152px; }
.brand-word {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; line-height: 1;
}
.brand-word span { font-weight: 300; color: var(--gold-deep); }
.brand--light { color: var(--on-dark); }
.brand--light .brand-word span { color: var(--saffron-soft); }

/* mobile menu */
.menu-toggle {
  position: relative; z-index: 2;
  width: 48px; height: 48px; margin-right: -10px;
  display: grid; place-items: center; border-radius: 50%;
}
.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after {
  display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--ease), background-color .2s;
}
.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before, .menu-toggle-lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle-lines::before { transform: translateY(-6px); }
.menu-toggle-lines::after { transform: translateY(6px); width: 14px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: rotate(-45deg); width: 22px; }

.site-nav {
  position: fixed; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: center; gap: var(--s-5);
  padding: calc(var(--header-h) + var(--s-4)) var(--s-4) var(--s-5);
  background: var(--ivory);
  background-image: radial-gradient(120% 60% at 50% 110%, rgba(231, 178, 116, .28), transparent 60%);
  /* The panel itself appears instantly (no opacity fade) so it never looks like a
     translucent double-exposure over the page behind it; only its links animate in. */
  visibility: hidden;
  transform: translateY(-10px);
  transition: transform .3s var(--ease), visibility 0s linear .3s;
}
.site-nav.is-open { visibility: visible; transform: none; transition: transform .32s var(--ease); }
.site-nav ul { display: grid; gap: var(--s-1); }
.site-nav ul a {
  display: block; padding: .35rem 0;
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1.2; font-weight: 400;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), color .3s;
}
.site-nav ul a:hover { color: var(--gold-deep); }
.site-nav.is-open ul a { opacity: 1; transform: none; }
.site-nav ul li:nth-child(1) a { transition-delay: .06s; }
.site-nav ul li:nth-child(2) a { transition-delay: .11s; }
.site-nav ul li:nth-child(3) a { transition-delay: .16s; }
.site-nav ul li:nth-child(4) a { transition-delay: .21s; }
.site-nav ul li:nth-child(5) a { transition-delay: .26s; }
.nav-cta {
  align-self: flex-start; background: var(--ink); color: var(--ivory); min-height: 52px; padding-inline: 1.6rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  transition-delay: .3s;
}
.site-nav.is-open .nav-cta { opacity: 1; transform: none; }
.nav-cta .icon { color: var(--saffron-soft); }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--s-4));
  background:
    radial-gradient(90% 55% at 85% 0%, rgba(243, 214, 168, .35), transparent 70%),
    var(--ivory);
  overflow: hidden;
}
.hero-inner { display: grid; gap: var(--s-4); }
.hero-title { font-size: var(--fs-h1); margin-top: var(--s-2); max-width: 12ch; }
.hero-lede { margin-top: var(--s-3); color: var(--ink-soft); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--s-4); }
.hero-actions .btn { flex: 1 1 auto; }
.hero-badge {
  display: flex; align-items: center; gap: 1rem;
  margin-top: var(--s-4); padding-top: var(--s-3);
  border-top: 1px solid var(--line); max-width: 22rem;
}
.hero-badge-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--gold-deep); font-weight: 300; }
.hero-badge-text { font-size: var(--fs-small); color: var(--ink-soft); line-height: 1.45; }

/* Welcome-offer pill above the hero eyebrow */
.offer-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 40px; padding: .35rem .95rem .35rem .8rem;
  margin-bottom: var(--s-3);
  border: 1px solid rgba(184, 151, 90, .45); border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  font-size: .8125rem; letter-spacing: .02em; color: var(--ink-soft);
  transition: border-color .3s, background-color .3s;
}
.offer-pill strong { font-weight: 500; color: var(--ink); }
.offer-pill .icon { width: 1rem; height: 1rem; color: var(--gold-deep); transition: transform .35s var(--ease); }
.offer-pill:hover { border-color: var(--gold); background: #fff; }
.offer-pill:hover .icon { transform: translateX(3px); }
.offer-pill-dot { position: relative; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); }
.offer-pill-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid var(--saffron); opacity: 0;
  animation: halo 3.2s ease-out infinite;
}
@keyframes halo {
  0% { transform: scale(.5); opacity: .7; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}

.hero-art { margin-inline: calc(var(--gutter) * -1); margin-top: calc(var(--s-3) * -1); }
.hero-art svg { width: 100%; height: auto; max-height: 300px; margin-inline: auto; }
.hero-glow { transform-origin: 280px 320px; animation: breathe 9s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section-head { margin-bottom: var(--s-5); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow::after, .philosophy .eyebrow::after { content: ""; margin-left: .75rem; }

/* ---------- About ---------- */
.about { padding-top: calc(var(--section-y) * .8); }
.about-inner { display: grid; gap: var(--s-5); }
.about-portrait { max-width: 26rem; width: 88%; }
.portrait-frame { position: relative; }
.portrait-frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold); border-radius: 200px 200px var(--radius) var(--radius); opacity: .55;
}
.portrait-placeholder, .portrait-frame img {
  position: relative; aspect-ratio: 4 / 5; width: 100%;
  border-radius: 200px 200px var(--radius) var(--radius);
  object-fit: cover;
}
.portrait-placeholder {
  display: grid; place-items: center; align-content: center; gap: .5rem;
  background:
    radial-gradient(80% 50% at 50% 100%, rgba(231, 178, 116, .45), transparent 70%),
    linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--gold-deep);
}
.portrait-placeholder svg { width: 88px; height: 88px; }
.portrait-placeholder .mark-sun { stroke: var(--saffron); }
.portrait-placeholder span { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: .3em; font-weight: 300; padding-left: .3em; }

.about-role { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--gold-deep); margin: .25rem 0 var(--s-3); }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--s-4); }
.tags li {
  font-size: .875rem; padding: .4rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .55); color: var(--ink);
}
.about-note {
  margin-top: var(--s-3); padding-left: var(--s-2);
  border-left: 1px solid var(--gold); color: var(--ink-soft); font-size: var(--fs-small); font-style: italic;
}
.about .text-link { margin-top: var(--s-3); }

/* ---------- Philosophy ---------- */
.philosophy {
  position: relative; overflow: hidden;
  background: var(--sand);
  padding-block: calc(var(--section-y) + 40px);
  text-align: center;
}
.wave { position: absolute; left: 0; width: 100%; height: 40px; fill: var(--ivory); }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.mandala {
  position: absolute; left: 50%; top: 50%;
  width: min(140vw, 760px); height: auto;
  transform: translate(-50%, -50%);
  color: var(--gold-deep); opacity: .09; pointer-events: none;
}
.philosophy-inner { position: relative; max-width: 48rem; }
.philosophy-title { font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5rem); margin-top: var(--s-3); }
.philosophy-body { margin: var(--s-4) auto 0; max-width: 36rem; color: var(--ink-soft); }
.philosophy-body p + p { margin-top: 1em; }
.sanskrit { font-family: var(--font-display); font-style: italic; font-size: 1.3em; color: var(--ink); }
.triad { display: flex; justify-content: center; align-items: center; margin-top: var(--s-5); gap: 0; }
.triad li { display: flex; align-items: center; }
.triad li span {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
}
.triad li + li::before {
  content: ""; width: clamp(28px, 8vw, 72px); height: 1px; margin-inline: clamp(.6rem, 2vw, 1.2rem);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Services ---------- */
.service-group + .service-group { margin-top: var(--s-6); }
.group-label {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: var(--s-2);
}
.group-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.service-list { display: grid; }
.service {
  position: relative;
  display: grid; grid-template-columns: 44px 1fr; column-gap: var(--s-2); row-gap: .25rem;
  align-content: start;
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.service-icon { grid-row: 1 / span 2; width: 44px; height: 44px; color: var(--gold-deep); transition: transform .6s var(--ease); }
.service:hover .service-icon { transform: translateY(-3px); }
.service-num { position: absolute; top: var(--s-3); right: 0; font-size: .75rem; letter-spacing: .15em; color: var(--gold); }
.service h4 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.2; padding-right: 2rem; }
.service p { color: var(--ink-soft); font-size: var(--fs-small); grid-column: 2; }

.service-group--institutions {
  background: var(--sand); border-radius: var(--radius-lg);
  padding: var(--s-4) var(--s-3) var(--s-2);
  margin-inline: calc(var(--gutter) * -.5);
}
.service-group--institutions .service:last-child { border-bottom: 0; }

.fine-print { margin-top: var(--s-4); font-size: .8125rem; color: var(--ink-soft); max-width: 44rem; }

.area {
  margin-top: var(--s-6);
  display: grid; gap: var(--s-3);
  padding: var(--s-4) var(--s-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(138, 154, 130, .14), transparent 70%),
    #fff;
}
.area-copy { display: flex; gap: var(--s-2); align-items: flex-start; }
.area-icon { width: 36px; height: 36px; color: var(--sage); flex: none; margin-top: .2rem; }
.area h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.2; }
.area p { color: var(--ink-soft); font-size: var(--fs-small); margin-top: .25rem; }
.area-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-list li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .95rem; border-radius: 999px; font-size: .9rem;
  background: var(--ivory); border: 1px solid var(--line);
}
.area-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.area-list .area-online { background: transparent; border-style: dashed; color: var(--ink-soft); }
.area-list .area-online::before { background: var(--saffron); }

/* ---------- Session timings & welcome offer ---------- */
.sessions { padding-top: calc(var(--section-y) * .6); }
.sessions-grid { display: grid; gap: var(--s-2); }
.session {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: var(--s-4) var(--s-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.session > * { position: relative; }
/* a soft sun glow at the bottom edge — dawn for the morning card, dusk for the evening one */
.session::after {
  content: ""; position: absolute; left: 50%; bottom: -70%;
  width: 130%; aspect-ratio: 1; transform: translateX(-50%);
  border-radius: 50%; pointer-events: none;
}
.session--morning { background: linear-gradient(180deg, #FFFDF9 0%, #F8EEDF 100%); }
.session--morning::after { background: radial-gradient(circle, rgba(240, 190, 125, .5), transparent 60%); }
.session--evening { background: linear-gradient(180deg, #F7F0E6 0%, #EFDFCB 100%); }
.session--evening::after { background: radial-gradient(circle, rgba(201, 130, 43, .3), transparent 60%); }
.session-icon { width: 44px; height: 44px; color: var(--gold-deep); }
.session-label {
  margin-top: var(--s-3);
  font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.session-time {
  margin-top: .35rem;
  font-family: var(--font-display); font-weight: 400; line-height: 1.1;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem);
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}
.session-time span { margin-left: .2em; font-size: .5em; font-style: italic; color: var(--gold-deep); }
/* "India time (IST)" sits directly under the time it describes */
.session-zone { margin-top: .15rem; font-size: var(--fs-small); color: var(--ink-soft); }
/* the visitor's own time: a separate, clearly labelled block at the foot of the card.
   Its spacing and divider line live inside the block, so cards for visitors in India
   (where it stays hidden) don't carry an empty gap at the bottom. */
.session-local {
  display: grid; gap: .15rem;
  margin-top: auto;
  padding-top: calc(var(--s-3) + var(--s-2));
  background: linear-gradient(rgba(184, 151, 90, .35), rgba(184, 151, 90, .35)) 0 var(--s-3) / 100% 1px no-repeat;
}
.session-local-label {
  font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.session-local-time { font-size: 1.125rem; color: var(--ink); }
.session-local-zone { font-size: var(--fs-small); color: var(--ink-soft); }

.offer {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-2);
  padding: var(--s-4) var(--s-3);
  border-radius: var(--radius-lg);
  background: var(--earth); color: var(--on-dark);
}
.offer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(231, 178, 116, .26), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 110%, rgba(201, 130, 43, .16), transparent 70%);
}
.offer > * { position: relative; }
.offer-bignum {
  position: absolute; right: -.06em; bottom: -.22em;
  font-family: var(--font-display); font-weight: 300; line-height: 1;
  font-size: clamp(9rem, 7rem + 8vw, 12rem); font-variant-numeric: lining-nums;
  color: transparent; -webkit-text-stroke: 1px rgba(231, 178, 116, .28);
  pointer-events: none; user-select: none;
}
.offer-tag {
  font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--saffron-soft);
}
.offer-title { font-family: var(--font-display); font-weight: 400; line-height: 1.1; font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem); }
.offer-title em { font-style: italic; font-weight: 300; color: var(--saffron-soft); }
.offer-text { max-width: 24rem; font-size: var(--fs-small); color: var(--on-dark-soft); }
.offer .btn { margin-top: var(--s-2); }

/* ---------- Why ---------- */
.why { padding-top: calc(var(--section-y) * .55); }
.why-inner { display: grid; gap: var(--s-5); }
.why-number {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(7rem, 5rem + 12vw, 13rem); line-height: .85;
  color: transparent;
  background: linear-gradient(180deg, var(--saffron-soft) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  margin-top: var(--s-4);
}
.why-number span { font-size: .55em; vertical-align: top; }
.why-number-caption { margin-top: var(--s-2); color: var(--ink-soft); max-width: 22rem; }
.why-number-caption strong { color: var(--ink); font-weight: 500; }
.why-list { display: grid; gap: var(--s-4); align-content: center; }
.why-list li { position: relative; padding-left: var(--s-4); }
.why-dot {
  position: absolute; left: 0; top: .55rem; width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--ivory);
}
.why-dot::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: var(--saffron-soft); }
.why-list h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.2; }
.why-list p { color: var(--ink-soft); margin-top: .35rem; font-size: var(--fs-small); }

/* ---------- Gallery ---------- */
.gallery { padding-top: calc(var(--section-y) * .8); }
/* Mobile: aspect-ratio driven tiles (large photos stay large, never tiny thumbs) */
.mosaic {
  display: grid; gap: .6rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--sand-deep);
  padding: 0; width: 100%;
  aspect-ratio: 1;
  display: block; text-align: left;
}
.tile--featured, .tile--wide { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.tile:hover img { transform: scale(1.04); }
.tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 36, 32, .55));
  opacity: 0; transition: opacity .5s var(--ease);
}
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }
.tile-label {
  position: absolute; left: 1rem; right: 1rem; bottom: .9rem; z-index: 1;
  color: #fff; font-size: .875rem; letter-spacing: .04em;
  opacity: 0; transform: translateY(6px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tile:hover .tile-label, .tile:focus-visible .tile-label { opacity: 1; transform: none; }
.tile-zoom {
  position: absolute; top: .75rem; right: .75rem; z-index: 1;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(251, 248, 243, .9); color: var(--ink);
  opacity: 0; transition: opacity .4s var(--ease);
}
.tile-zoom svg { width: 16px; height: 16px; }
.tile:hover .tile-zoom, .tile:focus-visible .tile-zoom { opacity: 1; }
@media (hover: none) { .tile-zoom { opacity: 1; } }

/* Instagram tile */
.tile--insta {
  grid-column: 1 / -1; aspect-ratio: auto;
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-3);
  padding: var(--s-4) var(--s-3);
  background:
    radial-gradient(90% 70% at 100% 100%, rgba(231, 178, 116, .35), transparent 70%),
    var(--sand);
  color: var(--ink);
  min-height: 12rem;
}
.tile--insta::after { display: none; }
.tile--insta .icon { width: 32px; height: 32px; color: var(--gold-deep); }
.tile--insta strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; line-height: 1.15; }
.tile--insta span { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-small); color: var(--ink-soft); margin-top: .5rem; }
.tile--insta:hover span { color: var(--gold-deep); }

.gallery-more { display: flex; justify-content: center; margin-top: var(--s-4); }
.gallery-more:has(> [hidden]) { display: none; }
.noscript-img { border-radius: var(--radius); }

/* ---------- Lightbox ---------- */
.lightbox {
  width: 100vw; height: 100dvh; max-width: none; max-height: none;
  margin: 0; padding: 0; border: 0;
  background: rgba(24, 20, 17, .96); color: var(--on-dark);
  overscroll-behavior: contain;
}
.lightbox::backdrop { background: rgba(24, 20, 17, .9); }
.lightbox[open] { display: grid; animation: lb-in .35s var(--ease); }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox-stage {
  display: grid; place-items: center;
  padding: 64px 12px 96px;
  touch-action: pan-y pinch-zoom;
  min-height: 0;
}
.lightbox-figure { display: grid; justify-items: center; gap: .9rem; max-height: 100%; min-height: 0; }
.lightbox-figure img {
  max-width: 100%; max-height: calc(100dvh - 200px);
  width: auto; height: auto; object-fit: contain;
  border-radius: 2px; user-select: none; -webkit-user-drag: none;
  transition: opacity .25s var(--ease);
}
.lightbox-figure img.is-loading { opacity: 0; }
.lightbox-figure figcaption { text-align: center; font-size: var(--fs-small); color: var(--on-dark-soft); max-width: 40rem; }
.lightbox-figure figcaption strong { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--on-dark); }
.lightbox-figure figcaption:empty { display: none; }
.lightbox-count { position: fixed; top: 20px; left: 20px; font-size: .8125rem; letter-spacing: .2em; color: var(--on-dark-soft); }
.lb-btn {
  position: fixed; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(244, 237, 226, .1); color: var(--on-dark);
  transition: background-color .3s;
}
.lb-btn:hover { background: rgba(244, 237, 226, .2); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 8px; right: 8px; }
.lb-prev, .lb-next { bottom: 20px; }
.lb-prev { left: calc(50% - 64px); }
.lb-next { right: calc(50% - 64px); }
.lightbox.is-single .lb-prev, .lightbox.is-single .lb-next, .lightbox.is-single .lightbox-count { display: none; }
body.lightbox-open { overflow: hidden; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: var(--s-3); }
.quote {
  padding: var(--s-4) var(--s-3); border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line);
}
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: 1.45rem; line-height: 1.4; }
.quote blockquote::before { content: "\201C"; display: block; font-size: 3.5rem; line-height: .6; color: var(--gold); margin-bottom: .5rem; }
.quote figcaption { margin-top: var(--s-2); font-size: var(--fs-small); color: var(--ink-soft); }
.quote figcaption strong { color: var(--ink); font-weight: 500; }

/* ---------- How it begins ---------- */
.begin { background: linear-gradient(180deg, var(--ivory) 0%, #F5EEE3 100%); }
.steps { display: grid; gap: var(--s-4); counter-reset: none; position: relative; max-width: 64rem; margin-inline: auto; }
.steps li { position: relative; text-align: center; padding-inline: var(--s-2); }
.step-num {
  display: grid; place-items: center; margin: 0 auto var(--s-2);
  width: 64px; height: 64px; border-radius: 50%;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--gold-deep);
  border: 1px solid var(--gold);
  background: radial-gradient(circle at 50% 120%, rgba(231, 178, 116, .5), var(--ivory) 70%);
  position: relative; z-index: 1;
}
.steps h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.2; }
.steps p { color: var(--ink-soft); font-size: var(--fs-small); margin-top: .4rem; max-width: 20rem; margin-inline: auto; }
.begin-cta { display: flex; justify-content: center; margin-top: var(--s-6); }

/* ---------- Contact ---------- */
.contact {
  position: relative; overflow: hidden;
  background: var(--earth); color: var(--on-dark);
  padding-block: calc(var(--section-y) * 1.1);
  text-align: center;
}
/* a low sunrise glowing up from the bottom edge — echoes the hero */
.contact-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 38% 42% at 50% 102%, rgba(240, 190, 125, .34), transparent 70%),
    radial-gradient(ellipse 75% 70% at 50% 110%, rgba(201, 130, 43, .16), transparent 70%);
  pointer-events: none;
}
.contact-inner { position: relative; max-width: 44rem; }
.contact-mark { width: 64px; height: 64px; margin: 0 auto var(--s-3); color: var(--saffron-soft); }
.contact-mark .mark-sun { stroke: var(--saffron-soft); }
.contact-title { font-size: var(--fs-h2); }
.contact-title em { color: var(--saffron-soft); }
.contact-lede { margin: var(--s-3) auto 0; color: var(--on-dark-soft); max-width: 32rem; }
.contact-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: var(--s-5); align-items: stretch; }
.contact-insta {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  margin-top: var(--s-4); color: var(--on-dark-soft); font-size: var(--fs-small);
  transition: color .3s;
}
.contact-insta:hover { color: var(--saffron-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--earth); color: var(--on-dark-soft);
  padding-bottom: calc(var(--s-4) + env(safe-area-inset-bottom));
  font-size: var(--fs-small);
}
.footer-inner, .footer-base { position: relative; }
.footer-inner::before, .footer-base::before {
  content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px; background: rgba(244, 237, 226, .12);
}
.footer-inner {
  display: grid; gap: var(--s-4);
  padding-block: var(--s-5) var(--s-4);
}
.footer-tagline { margin-top: .75rem; letter-spacing: .2em; text-transform: uppercase; font-size: .75rem; }
.footer-links { display: grid; gap: .25rem; }
.footer-links li { display: flex; align-items: center; gap: .6rem; min-height: 44px; }
.footer-links a { display: inline-flex; align-items: center; gap: .6rem; min-height: 44px; transition: color .3s; }
.footer-links a:hover { color: var(--saffron-soft); }
.footer-links .icon { color: var(--saffron-soft); }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .5rem;
  padding-top: var(--s-3); font-size: .8125rem;
}
.to-top { min-height: 44px; display: inline-flex; align-items: center; }
.to-top:hover { color: var(--saffron-soft); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; z-index: 40;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25A162; color: #fff;
  box-shadow: 0 10px 24px -8px rgba(21, 94, 57, .55), 0 0 0 4px rgba(251, 248, 243, .7);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.9);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s, background-color .3s;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float.is-visible { opacity: 1; visibility: visible; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease), background-color .3s; }
.wa-float:hover { background: #1E8A53; transform: translateY(-2px); }
.no-js .wa-float { opacity: 1; visibility: visible; transform: none; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Tablet ≥ 768px
   ========================================================================== */
@media (min-width: 768px) {
  :root { --gutter: 2rem; --header-h: 76px; }
  .site-header .brand-logo { width: 52px; height: 52px; }
  .footer-brand { text-align: left; }
  .site-footer .brand { flex-direction: row; align-items: center; gap: var(--s-3); }
  .site-footer .brand-logo { width: 192px; height: 192px; }

  .hero { padding-top: calc(var(--header-h) + var(--s-5)); }
  .hero-actions .btn { flex: 0 0 auto; }
  .hero-art svg { max-height: 380px; }

  .about-inner { grid-template-columns: 5fr 7fr; align-items: center; gap: var(--s-6); }
  .about-portrait { width: 100%; }

  .service-list { grid-template-columns: 1fr 1fr; column-gap: var(--s-5); }
  .service { grid-template-columns: 1fr; padding-block: var(--s-4); }
  .service-icon { grid-row: auto; margin-bottom: var(--s-2); }
  .service p { grid-column: 1; }
  .service-num { top: var(--s-4); }
  .service-wide { grid-column: 1 / -1; grid-template-columns: 44px 1fr; column-gap: var(--s-3); }
  .service-wide .service-icon { grid-row: 1 / span 2; margin: 0; }
  .service-wide p { grid-column: 2; }

  .service-group--institutions { padding: var(--s-5) var(--s-5) var(--s-3); margin-inline: 0; }
  .service-group--institutions .service-list { grid-template-columns: repeat(3, 1fr); column-gap: var(--s-4); }
  .service-group--institutions .service { border-bottom: 0; }

  .area { grid-template-columns: 1fr 1fr; align-items: center; padding: var(--s-5); }
  .area-list { justify-content: flex-end; }

  .sessions-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .offer { grid-column: 1 / -1; padding: var(--s-5); }

  .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: .75rem; }
  .tile { aspect-ratio: auto; height: 100%; }
  .tile--featured { grid-column: span 2; grid-row: span 2; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 2; }
  .tile--insta { grid-column: auto; grid-row: span 2; min-height: 0; }

  .quotes { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .steps::before {
    content: ""; position: absolute; top: 32px; left: 16.66%; right: 16.66%; height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 10px); opacity: .6;
  }

  .contact-actions { flex-direction: row; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr auto; align-items: start; }

  .lb-prev, .lb-next { top: 50%; bottom: auto; transform: translateY(-50%); }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
  .lb-close { top: 16px; right: 16px; }
  .lightbox-stage { padding: 72px 96px 56px; }
  .lightbox-figure img { max-height: calc(100dvh - 180px); }
}

/* ==========================================================================
   Laptop / desktop ≥ 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  :root { --gutter: 2.5rem; }

  .menu-toggle { display: none; }
  .site-nav {
    position: static; inset: auto; padding: 0; background: none;
    visibility: visible; transform: none; transition: none;
    flex-direction: row; align-items: center; gap: var(--s-4);
  }
  .site-nav ul { display: flex; gap: var(--s-4); }
  /* Desktop nav is always visible — undo the mobile drawer's entrance animation */
  .site-nav ul a, .nav-cta { opacity: 1; transform: none; transition-delay: 0s; }
  .site-nav ul a {
    font-family: var(--font-body); font-size: .9375rem; letter-spacing: .03em; padding: .5rem 0;
    position: relative;
  }
  .site-nav ul a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: .2rem; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
  }
  .site-nav ul a:hover { color: var(--ink); }
  .site-nav ul a:hover::after, .site-nav ul a.is-active::after { transform: scaleX(1); }
  .nav-cta { min-height: 44px; padding-inline: 1.2rem; align-self: center; }

  .hero { min-height: min(100svh, 860px); display: flex; align-items: center; padding-bottom: var(--s-4); }
  .about { padding-top: calc(var(--section-y) * .6); }
  .hero-inner { grid-template-columns: 1.05fr 1fr; align-items: center; gap: var(--s-4); }
  .hero-art { margin: 0; }
  .hero-art svg { max-height: 520px; }

  .about-inner { grid-template-columns: 5fr 6fr; gap: var(--s-7); }
  .about-portrait { justify-self: center; }

  .section-head--split { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: var(--s-5); }
  .section-head--split .section-lede { margin-top: 0; justify-self: end; }

  .services .section-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; column-gap: var(--s-5); }
  .services .section-head .eyebrow, .services .section-head .section-title { grid-column: 1; }
  .services .section-head .section-lede { grid-column: 2; grid-row: 1 / span 2; align-self: end; margin: 0; justify-self: end; }

  .service-group:not(.service-group--institutions) { display: grid; grid-template-columns: 14rem 1fr; gap: var(--s-5); }
  .service-group:not(.service-group--institutions) .group-label { align-self: start; position: sticky; top: calc(var(--header-h) + var(--s-4)); padding-top: var(--s-4); }
  .service-group:not(.service-group--institutions) .group-label::after { display: none; }

  .why-inner { grid-template-columns: 5fr 6fr; gap: var(--s-7); align-items: center; }
  .why-list { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-5); }

  .session { padding: var(--s-4); }

  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; }
  .tile--featured { grid-column: span 3; grid-row: span 2; }

  .quotes { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Large desktop ≥ 1440px
   ========================================================================== */
@media (min-width: 1440px) {
  :root { --container: 82rem; }
  .mosaic { grid-auto-rows: 240px; }

  /* wide enough for morning · evening · offer side by side with times on one line */
  .sessions-grid { grid-template-columns: 1fr 1fr 1.2fr; }
  .offer { grid-column: auto; padding: var(--s-4); }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Disable transitions/animations outright rather than shortening them to
     ~0. A near-zero duration can fail to repaint reliably on some mobile
     browsers, leaving content stuck at its hidden starting state — turning
     transitions off entirely means every property change applies instantly
     and unconditionally, with nothing left waiting on an animation to finish. */
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .site-nav ul a, .nav-cta { opacity: 1; transform: none; }
  .btn:hover, .wa-float:hover, .tile:hover img, .service:hover .service-icon { transform: none; }
}
