/* ==========================================================================
   Acharya Pushpak V Kumbhare — MahaVastu Acharya
   Version 1 stylesheet
   --------------------------------------------------------------------------
   Structure
     01  Design tokens
     02  Reset & base
     03  Typography
     04  Layout primitives
     05  Buttons & links
     06  Header & navigation
     07  Hero
     08  Credibility strip
     09  Prose sections
     10  Cards & grids
     11  The MahaVastu Approach
     12  Journey timeline
     13  Global consultations
     14  Testimonials
     15  Contact
     16  Footer
     17  Cookie notice
     18  Motion & reveal
     19  Legal pages
     20  Print
   ========================================================================== */


/* ==========================================================================
   01  DESIGN TOKENS
   Change colours, spacing and type scale here. Nothing else needs editing.
   ========================================================================== */

:root {
  color-scheme: light;

  /* --- Colour: surfaces ------------------------------------------------ */
  --paper:        #FCFBF9;   /* page background                            */
  --paper-alt:    #F5F3EF;   /* alternating section background             */
  --paper-deep:   #17161A;   /* dark section background                    */
  --surface:      #FFFFFF;   /* cards                                      */

  /* --- Colour: ink ----------------------------------------------------- */
  --ink:          #17161A;   /* headings                                   */
  --ink-body:     #3B3A42;   /* body copy                                  */
  --ink-muted:    #6F6D77;   /* captions, meta, labels                     */
  --ink-faint:    #9B9AA2;   /* placeholders                               */
  --ink-on-dark:  #F3F1EC;
  --ink-on-dark-muted: #A8A5A0;

  /* --- Colour: lines --------------------------------------------------- */
  --line:         #E5E1D9;
  --line-strong:  #D5D0C5;
  --line-on-dark: rgba(243, 241, 236, .16);

  /* --- Colour: accent (single, restrained) ----------------------------- */
  --accent:       #7A2E2A;
  --accent-deep:  #5C2120;
  --accent-tint:  #F3E9E6;
  --accent-on-dark: #D8A39B;

  /* --- Colour: utility ------------------------------------------------- */
  --whatsapp:     #1FA855;
  --whatsapp-deep:#17843F;
  --focus:        #7A2E2A;

  /* --- Type ------------------------------------------------------------ */
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.10rem);
  --step-1:  clamp(1.15rem, 1.08rem + 0.34vw, 1.35rem);
  --step-2:  clamp(1.38rem, 1.24rem + 0.66vw, 1.75rem);
  --step-3:  clamp(1.65rem, 1.40rem + 1.20vw, 2.40rem);
  --step-4:  clamp(2.00rem, 1.55rem + 2.15vw, 3.40rem);
  --step-5:  clamp(2.45rem, 1.65rem + 3.70vw, 4.80rem);

  /* --- Space ----------------------------------------------------------- */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --container: 1180px;
  --measure: 64ch;

  /* --- Misc ------------------------------------------------------------ */
  --radius:    14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --header-h: 72px;
  --shadow-sm: 0 1px 2px rgba(23, 22, 26, .04), 0 1px 3px rgba(23, 22, 26, .04);
  --shadow-md: 0 4px 10px rgba(23, 22, 26, .04), 0 12px 30px rgba(23, 22, 26, .06);
  --ease: cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================================================
   02  RESET & BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-body);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

/* The hidden attribute must win over the display rule above — placeholder
   images are marked hidden until a real file is dropped in. */
[hidden] { display: none !important; }

/* Browsers give <figure> a 40px side margin and <blockquote> a 40px indent by
   default, which would make cards narrower than the grid cells holding them. */
figure, blockquote, dl, dd, fieldset { margin: 0; }

button, input, textarea, select { font: inherit; color: inherit; }

:where(a):focus-visible,
:where(button):focus-visible,
:where(summary):focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Screen-reader-only, but focusable (skip link) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--ink-on-dark);
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* The inline SVG icon sprite */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }


/* ==========================================================================
   03  TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--step-1);
  line-height: 1.62;
  color: var(--ink-body);
  max-width: var(--measure);
}

/* Small uppercase label above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow--plain::before { display: none; }
.on-dark .eyebrow { color: var(--accent-on-dark); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head p { color: var(--ink-muted); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.muted { color: var(--ink-muted); }
.small { font-size: var(--step--1); }


/* ==========================================================================
   04  LAYOUT PRIMITIVES
   ========================================================================== */

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

.section {
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--header-h) + 8px);
}
.section--alt { background: var(--paper-alt); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section--dark {
  background: var(--paper-deep);
  color: var(--ink-on-dark-muted);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ink-on-dark); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }


/* ==========================================================================
   05  BUTTONS & LINKS
   ========================================================================== */

a { color: var(--accent); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-deep); }

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  min-height: 48px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; flex: none; }

.btn--primary  { --btn-bg: var(--accent); --btn-bd: var(--accent); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: var(--accent-deep); --btn-bd: var(--accent-deep); }

.btn--ghost    { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bd: var(--ink); }

.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-bd: var(--whatsapp); --btn-fg: #fff; }
.btn--whatsapp:hover { --btn-bg: var(--whatsapp-deep); --btn-bd: var(--whatsapp-deep); }

.btn--on-dark  { --btn-bg: transparent; --btn-fg: var(--ink-on-dark); --btn-bd: var(--line-on-dark); }
.btn--on-dark:hover { --btn-bd: var(--ink-on-dark); }

.btn--light    { --btn-bg: var(--paper); --btn-fg: var(--ink); --btn-bd: var(--paper); }

.btn--sm { padding: .55rem 1.05rem; min-height: 40px; font-size: .82rem; }
.btn--lg { padding: 1rem 1.9rem; min-height: 54px; font-size: var(--step-0); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* Quiet text link with a trailing arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow .icon { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.4;
        stroke-linecap: round; stroke-linejoin: round; }
.icon--solid { fill: currentColor; stroke: none; }


/* ==========================================================================
   06  HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 249, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(252, 251, 249, .94);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  max-width: 100%;
}

/* --- Wordmark --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  flex: 0 1 auto;
  min-width: 0;          /* allows the wordmark to shrink instead of overflowing */
}
.brand__mark {
  height: 36px;
  padding-inline: .58rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--accent);
  flex: none;
  white-space: nowrap;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand__role {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* --- Desktop nav --- */
.nav { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 1.7vw, 1.55rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: .4rem 0;
  color: var(--ink-body);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }

.nav__cta { flex: none; }

/* --- Mobile action cluster (WhatsApp + hamburger) --- */
.header__mobile-actions { display: none; align-items: center; gap: .5rem; flex: none; }

.wa-compact {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background-color .18s var(--ease);
}
.wa-compact:hover { background: var(--whatsapp-deep); color: #fff; }
.wa-compact .icon { width: 22px; height: 22px; }

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  place-items: center;
}
.nav-toggle__bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .18s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5.25px; }
.nav-toggle__bars span:nth-child(3) { top: 10.5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* --- Mobile drawer --- */
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header__mobile-actions { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: block;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.75rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .24s var(--ease), opacity .24s var(--ease), visibility .24s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link {
    display: block;
    padding: .95rem .25rem;
    font-size: 1.02rem;
  }
  .nav__link::after { display: none; }
  /* The header already shows a persistent WhatsApp button on mobile, sitting
     directly beside the open menu — repeating it inside the drawer is noise. */
  .nav__cta { display: none; }
}

/* Narrow screens: tighten the header so the wordmark, the WhatsApp button
   and the hamburger always fit on one line without overflowing. */
@media (max-width: 900px) {
  .header__inner { gap: .75rem; }
}

/* The full name is never abbreviated. On narrow screens it wraps onto a
   second line and the header grows to suit, rather than being truncated. */
@media (max-width: 560px) {
  :root { --header-h: 84px; }
  .brand__mark { height: 32px; padding-inline: .45rem; font-size: .64rem; }
  .brand__name { font-size: .92rem; white-space: normal; line-height: 1.2; }
  .brand__role { font-size: .58rem; letter-spacing: .1em; }
}

@media (max-width: 400px) {
  .brand__name { font-size: .86rem; }
  .brand__role { font-size: .55rem; }
  .wa-compact, .nav-toggle { width: 40px; height: 40px; }
}


/* ==========================================================================
   07  HERO
   ========================================================================== */

.hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  scroll-margin-top: var(--header-h);
}

/* Subtle Indian-geometry motif: a single faint concentric mark, far right */
.hero__motif {
  position: absolute;
  top: 50%;
  right: -10%;
  width: min(680px, 68vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.hero__motif svg { width: 100%; height: 100%; }

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .9rem .4rem .55rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .6);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.6rem;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--whatsapp);
  flex: none;
  margin-left: .3rem;
}

.hero h1 { margin-bottom: .35em; max-width: 16ch; }

.hero__role {
  font-family: var(--font-sans);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--accent);
  margin: 0 0 1.1rem;
}

.hero__lede { max-width: 52ch; font-size: var(--step-1); color: var(--ink-body); }

.hero__credibility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .9rem;
  margin: 1.8rem 0 2.1rem;
  font-size: var(--step--1);
  color: var(--ink-muted);
  font-weight: 500;
}
.hero__credibility .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

@media (max-width: 620px) {
  .hero__motif { opacity: .3; right: -25%; }
  .hero__credibility { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .hero__credibility .sep { display: none; }
  .hero .btn-row .btn { width: 100%; }
}

.hero__contact {
  margin-top: 1.6rem;
  font-size: var(--step--1);
  color: var(--ink-muted);
}
.hero__contact a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  white-space: nowrap;
}
.hero__contact a:hover { border-bottom-color: var(--ink); }

/* Optional portrait slot. Off by default; switch the hero's data-portrait
   attribute from "off" to "on" to enable it. See index.html for the steps. */
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero[data-portrait="on"] .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
@media (max-width: 860px) {
  .hero[data-portrait="on"] .hero__grid { grid-template-columns: 1fr; }
}
.hero__portrait { display: none; }
.hero[data-portrait="on"] .hero__portrait { display: block; }
.hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper-alt);
}


/* ==========================================================================
   08  CREDIBILITY STRIP
   ========================================================================== */

.credibility {
  border-block: 1px solid var(--line);
  background: var(--paper-alt);
}
.credibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.credibility__item {
  background: var(--paper-alt);
  padding: clamp(1.4rem, 3vw, 2.25rem) clamp(1rem, 2.2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.credibility__item .icon { width: 22px; height: 22px; color: var(--accent); margin-bottom: .3rem; }
.credibility__label,
.credibility__value { display: block; }
.credibility__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.credibility__value {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.25;
  color: var(--ink);
}
@media (max-width: 860px) { .credibility__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .credibility__grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   09  PROSE SECTIONS
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.split__aside { position: sticky; top: calc(var(--header-h) + 2rem); }
@media (max-width: 860px) { .split__aside { position: static; } }

.prose { max-width: var(--measure); }
.prose p + p { margin-top: 0; }

/* Pull-quote style statement */
.statement {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.38;
  color: var(--ink);
  letter-spacing: -.012em;
  max-width: 34ch;
  margin: 0;
}

/* ==========================================================================
   10  CARDS & GRIDS
   ========================================================================== */

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }

.card h3 { margin-bottom: .5rem; }
.grid--4 .card h3 { font-size: var(--step-1); }
.card p { color: var(--ink-muted); font-size: var(--step--1); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}
.card__icon .icon { width: 21px; height: 21px; }

/* Large paired cards: New Projects / Existing Spaces */
.card--feature { padding: clamp(1.75rem, 3.5vw, 2.75rem); }
.card--feature .card__icon { width: 54px; height: 54px; }
.card--feature .card__icon .icon { width: 27px; height: 27px; }
.card--feature h3 { font-size: var(--step-3); }
.card__tags {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.card__tags li {
  font-size: .8rem;
  color: var(--ink-body);
  padding: .35rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--paper);
}

/* Consult-about tiles: quiet, borderless, icon-led */
.tile {
  display: flex;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.tile .icon { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: .28rem; }
.tile h3 { font-size: var(--step-1); margin-bottom: .3rem; }
.tile p { font-size: var(--step--1); color: var(--ink-muted); margin: 0; }


/* --- Section note: a single highlighted line under a card grid --- */
.section-note {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper-alt);
  font-size: var(--step--1);
  color: var(--ink-body);
  max-width: 78ch;
}
.section-note .icon { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: .18rem; }
/* Bottom margin lives here rather than on .section-note itself, so the note
   adds no trailing space when it is the last thing in a section. */
.section-note + * { margin-top: 1.4rem; }
.section-note strong { color: var(--ink); font-weight: 600; }
.section--alt .section-note { background: var(--surface); }


/* --- The core logic: symptom, dosha, correction --- */
.mechanism {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.mechanism__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.mechanism__head h3 { font-size: var(--step-3); margin-bottom: .5rem; }
.mechanism__head p { color: var(--ink-body); margin: 0; }
.mechanism__head strong { color: var(--accent); font-weight: 600; }

.mechanism__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.85rem, 2vw, 1.5rem);
}
.mechanism__steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
}
.mechanism__num {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: .8rem;
}
.mechanism__steps h4 { font-size: var(--step-1); margin-bottom: .35rem; }
.mechanism__steps p { font-size: var(--step--1); color: var(--ink-muted); margin: 0; }

.mechanism__close {
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  max-width: 72ch;
  font-size: var(--step-0);
  color: var(--ink-body);
}
.mechanism__close strong { color: var(--ink); font-weight: 600; }

@media (max-width: 780px) {
  .mechanism__steps { grid-template-columns: 1fr; }
}


/* ==========================================================================
   11  THE MAHAVASTU APPROACH
   One cohesive flow: Advise -> Analyse -> Align & Energise -> Results
   ========================================================================== */

.approach { position: relative; }

.flow { display: grid; gap: 0; margin-top: clamp(2rem, 4vw, 3rem); }

.flow__band {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-on-dark);
}
.flow__band:first-child { border-top: 0; padding-top: 0; }

.flow__meta { position: relative; }
.flow__stage {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin: 0 0 .55rem;
}
.flow__count {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--ink-on-dark);
  line-height: 1.1;
  margin: 0 0 .4rem;
}
.flow__note {
  font-size: .82rem;
  color: var(--ink-on-dark-muted);
  margin: 0;
  max-width: 26ch;
}

.flow__items { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; }

/* Numbered rows (stages, layers) */
.flow__items--rows { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem 2rem; }
.flow__items--rows li {
  display: flex;
  align-items: baseline;
  gap: .85rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--ink-on-dark);
  font-size: var(--step-0);
}
.flow__items--rows .num {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent-on-dark);
  flex: none;
  min-width: 1.6rem;
}

/* Icon chips (the 8 lenses) */
.flow__items--lenses {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
}
.lens {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1rem .9rem;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  color: var(--ink-on-dark);
  font-size: .86rem;
  line-height: 1.3;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.lens:hover { border-color: rgba(243, 241, 236, .34); background: rgba(243, 241, 236, .04); }
.lens .icon { width: 22px; height: 22px; color: var(--accent-on-dark); }
.lens__micro {
  display: block;
  font-size: .7rem;
  color: var(--ink-on-dark-muted);
  letter-spacing: .01em;
  margin-top: .1rem;
}

/* Results — quiet chips */
.flow__items--results { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.flow__items--results li {
  padding: .8rem 1rem;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  color: var(--ink-on-dark);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .flow__band { grid-template-columns: 1fr; gap: 1.5rem; }
  .flow__items--lenses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow__items--results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .flow__items--rows { grid-template-columns: 1fr; }
  .flow__items--results { grid-template-columns: 1fr; }
}

.approach__footer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.approach__footer p { max-width: 46ch; margin: 0; color: var(--ink-on-dark-muted); font-size: var(--step--1); }


/* ==========================================================================
   12  JOURNEY TIMELINE
   ========================================================================== */

.timeline { position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4rem); }

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: .55rem;
  bottom: .55rem;
  width: 1px;
  background: var(--line-strong);
}
@media (min-width: 861px) {
  .timeline::before { left: 7px; }
}

.milestone {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-left: 46px;
}
.milestone::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5rem;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--accent);
}

.milestone__date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .55rem;
}
.milestone h3 { margin-bottom: .55rem; }
.milestone p { font-size: var(--step--1); color: var(--ink-muted); }

.milestone__meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: var(--step--1);
}
.milestone__meta dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .2rem;
}
.milestone__meta dd { margin: 0 0 .8rem; color: var(--ink); }
.milestone__meta dd:last-child { margin-bottom: 0; }

/* Small inline flag for a value that is filled in but still needs confirming */
.check {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .04em;
  color: var(--accent);
  background: var(--accent-tint);
  border-radius: var(--radius-pill);
  padding: .12rem .6rem;
  margin-left: .3rem;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .milestone { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* --- Image frames (certificates / portrait) --- */
/* Photographs are shown deliberately small. Both are documentary records
   rather than portfolio images, and one was taken on a phone — displaying
   them large would only advertise their limits. The frame shrinks to the
   picture rather than cropping it, so nobody gets cut off. */
.frame {
  position: relative;
  /* A grid item blockifies inline-block, so it would stretch to the whole
     cell. fit-content keeps the frame hugging the picture. */
  width: fit-content;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-alt);
  border: 1px solid var(--line);
}
.frame { display: block; line-height: 0; }
.frame img {
  display: block;
  width: auto;
  height: auto;
  max-height: 240px;
  max-width: 100%;
}

/* The caption sits outside the bordered frame. Kept there deliberately: if it
   were inside, a long caption would widen the frame beyond the picture. */
.shot { margin: 0; }
.shot figcaption {
  margin-top: .7rem;
  font-size: .76rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 38ch;
}

@media (max-width: 760px) {
  .frame img { max-height: 210px; }
}

/* Placeholder state — shown until a real image is dropped in.
   Switch the figure's data-state from "placeholder" to "ready" once the
   image exists. */
.frame[data-state="placeholder"] .frame__box {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .6rem;
  padding: 1.5rem;
  text-align: center;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 10px,
      rgba(122, 46, 42, .045) 10px 20px
    ),
    var(--paper-alt);
  border-bottom: 1px dashed var(--line-strong);
  color: var(--ink-faint);
}
.frame[data-state="placeholder"] .icon { width: 26px; height: 26px; color: var(--line-strong); }
.frame[data-state="placeholder"] .frame__hint {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  max-width: 24ch;
  line-height: 1.5;
}


/* ==========================================================================
   13  GLOBAL CONSULTATIONS
   ========================================================================== */

.regions {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.regions li {
  padding: .55rem 1.15rem;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-pill);
  font-size: .88rem;
  color: var(--ink-on-dark);
}
.regions li.is-emphasis {
  border-color: var(--accent-on-dark);
  color: var(--accent-on-dark);
}

.global__mark {
  width: 54px; height: 54px;
  margin-top: 1.75rem;
  fill: none;
  stroke: var(--accent-on-dark);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .55;
}
@media (max-width: 860px) { .global__mark { display: none; } }

.global__note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: var(--step--1);
  color: var(--ink-on-dark-muted);
  max-width: 58ch;
}


/* ==========================================================================
   14  TESTIMONIALS
   ========================================================================== */

.quote {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -.008em;
}
.quote__mark { color: var(--accent); font-size: 1.6rem; line-height: 1; font-family: var(--font-display); }
.quote figcaption { margin-top: auto; }
.quote__name { font-weight: 600; color: var(--ink); font-size: var(--step--1); }
.quote__meta { font-size: .8rem; color: var(--ink-muted); margin-top: .15rem; }


/* --- Confidentiality note under the testimonials --- */
.confidential {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 76ch;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.confidential > .icon {
  width: 26px; height: 26px;
  color: var(--accent);
  flex: none;
  margin-top: .15rem;
}
.confidential h3 {
  font-size: var(--step-1);
  margin-bottom: .55rem;
}
.confidential p {
  font-size: var(--step--1);
  color: var(--ink-body);
  margin-bottom: .8rem;
}
.confidential p:last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .confidential { flex-direction: column; gap: .9rem; }
}


/* ==========================================================================
   15  CONTACT
   ========================================================================== */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__channels { display: grid; gap: 0; }

.channel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left .2s var(--ease);
}
.channel:last-child { border-bottom: 1px solid var(--line); }
.channel:hover { padding-left: .4rem; color: inherit; }
.channel__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: none;
  transition: border-color .2s var(--ease);
}
.channel:hover .channel__icon { border-color: var(--accent); }
.channel__icon .icon { width: 19px; height: 19px; }
.channel__text { min-width: 0; }
.channel__label,
.channel__value { display: block; }
.channel__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.channel__value {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--ink);
  line-height: 1.3;
  word-break: break-word;
}
.channel__arrow { margin-left: auto; color: var(--ink-faint); flex: none; }
.channel__arrow .icon { width: 17px; height: 17px; }

.contact__aside { font-size: var(--step--1); }
.contact__response {
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-alt);
}
.contact__response dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .25rem;
}
.contact__response dd { margin: 0 0 1.1rem; color: var(--ink); line-height: 1.6; }
.contact__response dd:last-child { margin-bottom: 0; }


/* ==========================================================================
   16  FOOTER
   ========================================================================== */

.footer {
  background: var(--paper-deep);
  color: var(--ink-on-dark-muted);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: var(--step--1);
}
.footer a { color: var(--ink-on-dark-muted); text-decoration: none; }
.footer a:hover { color: var(--ink-on-dark); }

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-on-dark);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; } }

.footer__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--ink-on-dark);
  margin: 0 0 .3rem;
}
.footer__role {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin: 0 0 1.25rem;
}
.footer__contact { display: grid; gap: .35rem; }
.footer__contact a { color: var(--ink-on-dark); }

.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.social a:hover { border-color: var(--ink-on-dark); }
.social .icon { width: 18px; height: 18px; }

.footer__disclaimer {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  max-width: 78ch;
  font-size: .8rem;
  line-height: 1.65;
  color: var(--ink-on-dark-muted);
  opacity: .85;
}
.footer__disclaimer a {
  color: var(--ink-on-dark);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; list-style: none; margin: 0; padding: 0; }


/* ==========================================================================
   17  COOKIE NOTICE
   ========================================================================== */

.cookie {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: 150;
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.4rem;
  display: none;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: .84rem;
  line-height: 1.55;
}
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; flex: 1 1 240px; color: var(--ink-body); }
.cookie .btn-row { flex: none; }

/* Floating WhatsApp button (mobile only) */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: 0 6px 20px rgba(23, 22, 26, .22);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.05); color: #fff; }
.wa-float .icon { width: 26px; height: 26px; }
.wa-float {
  opacity: 0;
  transform: translateY(10px) scale(.9);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 900px) { .wa-float { display: grid; } }

/* No JavaScript? Then show it unconditionally rather than never. */
html:not(.js) .wa-float { opacity: 1; transform: none; pointer-events: auto; }


/* ==========================================================================
   18  MOTION & REVEAL
   ========================================================================== */

/* IMPORTANT: the hidden starting state is applied ONLY when JavaScript is
   running (the .js class is added by a tiny inline script in <head>).
   Without that guard, a JavaScript failure would leave the page blank. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}


/* ==========================================================================
   19  LEGAL PAGES (privacy.html, disclaimer.html, 404.html)
   ========================================================================== */

.page-header {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: var(--step-4); margin-bottom: .35em; }
.page-header p { color: var(--ink-muted); margin: 0; }

.legal { padding-block: clamp(2.5rem, 5vw, 4rem) var(--section-y); }
.legal .container { max-width: 780px; }
.legal h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: var(--step-1); margin-top: 1.75rem; }
.legal ul, .legal ol { padding-left: 1.25rem; margin: 0 0 1.15em; }
.legal li { margin-bottom: .45rem; }
.legal .updated {
  display: inline-block;
  font-size: .78rem;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .35rem .9rem;
  margin-bottom: 2rem;
}

/* Highlighted note used to flag placeholder text to the site owner */
.note {
  border-left: 2px solid var(--accent);
  background: var(--accent-tint);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--step--1);
  margin: 1.5rem 0;
}
.note strong { color: var(--accent-deep); }

.error-page { display: grid; place-items: center; text-align: center; min-height: 62vh; padding-block: 4rem; }


/* ==========================================================================
   19b  DARK-SECTION TEXT OVERRIDES
   Anything inside .section--dark needs the light-on-dark ink values.
   ========================================================================== */

.section--dark .eyebrow        { color: var(--accent-on-dark); }
.section--dark .section-head p { color: var(--ink-on-dark-muted); }
.section--dark .lede           { color: var(--ink-on-dark); }
.section--dark .statement      { color: var(--ink-on-dark); }
.section--dark .muted,
.section--dark .small          { color: var(--ink-on-dark-muted); }
.section--dark p               { color: var(--ink-on-dark-muted); }
.section--dark strong          { color: var(--ink-on-dark); }
.section--dark a               { color: var(--accent-on-dark); }
.section--dark a:hover         { color: var(--ink-on-dark); }
.section--dark .flow__count,
.section--dark .flow__items li { color: var(--ink-on-dark); }
.section--dark .flow__note,
.section--dark .lens__micro    { color: var(--ink-on-dark-muted); }


/* ==========================================================================
   20  PRINT
   ========================================================================== */

@media print {
  .header, .cookie, .wa-float, .nav-toggle, .hero__motif { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .hero { padding-block: 1.5rem; }
  .section--dark, .footer { background: #fff !important; color: #000 !important; }
  .section--dark h2, .section--dark h3, .footer__name { color: #000 !important; }
  a { text-decoration: underline; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
