/* =============================================================
   Suved Healing — Healing from Within
   Design system drawn from the brand mark: warm cream, deep
   violet, antique gold, sage. Animations are driven by GSAP in
   js/main.js; all content is visible without JS, and motion is
   disabled under prefers-reduced-motion.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream: #f7f1e5;
  --cream-soft: #faf6ee;
  --cream-deep: #efe6d3;
  --ink: #35265c;
  --ink-soft: #5a4a80;
  --purple: #6b4699;
  --purple-deep: #46306e;
  --lilac: #c9b2e4;
  --gold: #b8862e;
  --gold-bright: #d4a94f;
  --gold-pale: #ecd9ad;
  --sage: #7d8c5c;
  --sage-soft: #aab98c;
  --white: #fffdf8;

  --grad-gold: linear-gradient(120deg, #b8862e, #e0bc6a 55%, #b8862e);
  --grad-spirit: linear-gradient(115deg, #6b4699 0%, #9d6fc4 45%, #c9952e 100%);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-devanagari: "Mukta", "Nirmala UI", sans-serif;

  --shadow-soft: 0 18px 50px -18px rgba(70, 48, 110, 0.25);
  --shadow-card: 0 10px 36px -14px rgba(70, 48, 110, 0.18);
  --radius: 20px;
  --nav-h: 84px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 85% -5%, rgba(201, 178, 228, 0.28), transparent 60%),
    radial-gradient(1000px 600px at -10% 30%, rgba(170, 185, 140, 0.16), transparent 55%),
    var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
ul, ol { list-style: none; }
strong { font-weight: 500; }

::selection { background: var(--purple); color: var(--cream-soft); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--purple-deep);
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.section--alt {
  background:
    radial-gradient(900px 500px at 110% 10%, rgba(201, 178, 228, 0.22), transparent 55%),
    var(--cream-soft);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 300;
  background: var(--purple-deep);
  color: var(--cream-soft);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 10px 10px;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ---------- Shared text pieces ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 1.4rem;
}

.section-sub { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head .section-sub { margin-top: 0.4rem; }

.text-gradient {
  background: var(--grad-spirit);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* split-text lines get masked for the reveal animation (JS adds the wrapper) */
.split-line-mask { overflow: hidden; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  position: relative;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), color 0.35s, background-color 0.35s, border-color 0.35s;
  will-change: transform;
}

.btn--gold {
  background: var(--grad-gold);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(184, 134, 46, 0.55);
}
.btn--gold:hover {
  background-position: 100% 0;
  box-shadow: 0 16px 34px -10px rgba(184, 134, 46, 0.65);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(107, 70, 153, 0.45);
  color: var(--purple-deep);
  background: rgba(255, 253, 248, 0.5);
}
.btn--ghost:hover {
  border-color: var(--purple);
  background: rgba(107, 70, 153, 0.08);
  transform: translateY(-2px);
}

.btn--block { width: 100%; text-align: center; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(800px 500px at 50% 30%, rgba(201, 178, 228, 0.25), transparent 60%),
    var(--cream);
  /* CSS-only fallback: if JS never runs, fade the veil away after 4s */
  animation: preloader-fallback 0.8s ease 4s forwards;
}
.preloader.is-done { display: none; }

@keyframes preloader-fallback {
  to { opacity: 0; visibility: hidden; }
}

.preloader__inner { text-align: center; color: var(--purple-deep); }

.preloader__lotus {
  width: 110px;
  margin-inline: auto;
  color: var(--gold);
}
.preloader__lotus .lotus-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: lotus-draw 2.2s var(--ease-out) forwards;
}
.preloader__lotus .lotus-path:nth-child(2) { animation-delay: 0.15s; }
.preloader__lotus .lotus-path:nth-child(3) { animation-delay: 0.15s; }
.preloader__lotus .lotus-path:nth-child(4) { animation-delay: 0.3s; }
.preloader__lotus .lotus-path:nth-child(5) { animation-delay: 0.3s; }
.preloader__lotus .lotus-path:nth-child(6) { animation-delay: 0.5s; }

@keyframes lotus-draw { to { stroke-dashoffset: 0; } }

.preloader__word {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 4.4rem);
  color: var(--purple-deep);
  line-height: 1;
  margin-top: 0.6rem;
}
.preloader__word span { display: inline-block; }

.preloader__sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.9rem;
}

.preloader__count {
  display: block;
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.preloader__count::after { content: "%"; }

/* ---------- Custom cursor ---------- */
.cursor,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 950;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor [data-tilt] { cursor: none; }
  body.has-cursor input,
  body.has-cursor textarea,
  body.has-cursor select { cursor: auto; }

  body.has-cursor .cursor {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
  }
  body.has-cursor .cursor-ring {
    display: block;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(107, 70, 153, 0.55);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, background-color 0.3s;
  }
  body.has-cursor .cursor-ring.is-hover {
    width: 64px;
    height: 64px;
    border-color: rgba(184, 134, 46, 0.8);
    background: rgba(184, 134, 46, 0.08);
  }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(250, 246, 238, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -16px rgba(70, 48, 110, 0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__logo {
  width: 44px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 3px 8px rgba(70, 48, 110, 0.2));
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--purple-deep);
  letter-spacing: 0.02em;
}
.nav__brand-text em {
  font-style: italic;
  background: var(--grad-spirit);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover,
.nav__link.is-active { color: var(--purple); }
.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta { padding: 0.65rem 1.5rem; font-size: 0.82rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  background: rgba(255, 253, 248, 0.65);
  border: 1px solid rgba(107, 70, 153, 0.25);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  z-index: 220;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.8px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.hero__orb--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(157, 111, 196, 0.4), transparent 65%);
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(212, 169, 79, 0.32), transparent 65%);
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 280px;
  height: 280px;
  top: 38%;
  left: 42%;
  background: radial-gradient(circle, rgba(170, 185, 140, 0.25), transparent 65%);
  animation: orb-drift 22s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -30px, 0) scale(1.12); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__eyebrow { margin-bottom: 1.6rem; }

.hero__title {
  font-size: clamp(3.2rem, 8.4vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin-bottom: 1rem;
}
.hero__title-line { display: block; }

.hero__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: 0.72em;
  color: var(--gold);
  margin-right: 0.08em;
}

.hero__devanagari {
  font-family: var(--font-devanagari);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 1.4rem;
}

.hero__lead {
  max-width: 52ch;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.2rem;
}

.hero__stats {
  display: flex;
  gap: clamp(1.6rem, 4vw, 3.4rem);
}
.hero__stats li { display: grid; gap: 0.1rem; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--purple-deep);
  font-variant-numeric: tabular-nums;
}
.hero__stats span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__halo {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 169, 79, 0.22), rgba(157, 111, 196, 0.12) 55%, transparent 72%);
  filter: blur(8px);
  animation: halo-pulse 6s ease-in-out infinite;
}

@keyframes halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.1); opacity: 1; }
}

.mandala {
  width: min(420px, 78%);
  color: var(--purple);
  position: relative;
}
.mandala__svg { width: 100%; height: auto; animation: mandala-spin 90s linear infinite; }
.mandala__petals { transform-origin: 200px 200px; animation: mandala-spin 60s linear infinite reverse; }
.mandala__om {
  font-size: 44px;
  fill: var(--gold);
  font-family: var(--font-devanagari);
}

@keyframes mandala-spin {
  to { transform: rotate(360deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll-line {
  width: 1.5px;
  height: 54px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--purple);
  transform: translateY(-100%);
  animation: scroll-hint 2.2s var(--ease-out) infinite;
}

@keyframes scroll-hint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  border-block: 1px solid rgba(107, 70, 153, 0.16);
  background: rgba(255, 253, 248, 0.6);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 36s linear infinite;
  padding-right: 2.6rem;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--purple-deep);
}
.marquee__sep { color: var(--gold); font-size: 0.9rem; }

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.portrait-frame {
  position: relative;
  border-radius: calc(var(--radius) * 2) calc(var(--radius) * 2) var(--radius) var(--radius);
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.9), rgba(236, 217, 173, 0.35));
  border: 1px solid rgba(184, 134, 46, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  transform-style: preserve-3d;
  will-change: transform;
}
.portrait-frame__inner {
  border-radius: calc(var(--radius) * 1.6) calc(var(--radius) * 1.6) calc(var(--radius) * 0.8) calc(var(--radius) * 0.8);
  overflow: hidden;
  background:
    radial-gradient(420px 300px at 50% 20%, rgba(201, 178, 228, 0.35), transparent 70%),
    var(--cream-soft);
  display: grid;
  place-items: center;
  padding: 1.6rem;
}
.portrait-frame__art {
  width: min(300px, 100%);
  filter: drop-shadow(0 14px 30px rgba(70, 48, 110, 0.22));
  transform: translateZ(40px);
}
.portrait-frame__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--grad-gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(184, 134, 46, 0.6);
}

.about__content p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.about__content p strong { color: var(--purple-deep); }

.about__highlights {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.4rem;
}
.about__highlights li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.about__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border-radius: 16px;
  color: var(--purple-deep);
  background: linear-gradient(150deg, rgba(201, 178, 228, 0.4), rgba(236, 217, 173, 0.4));
  border: 1px solid rgba(107, 70, 153, 0.18);
}
.about__highlights h3 { font-size: 1.25rem; margin-bottom: 0.15rem; }
.about__highlights p { font-size: 0.96rem; margin: 0; }

/* ---------- Cert strip ---------- */
.cert-strip {
  padding: 2.6rem 0;
  background:
    linear-gradient(90deg, rgba(70, 48, 110, 0.97), rgba(107, 70, 153, 0.94)),
    var(--purple-deep);
}
.cert-strip__inner { text-align: center; }
.cert-strip__label {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.3rem;
}
.cert-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.1rem;
}
.cert-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--cream-soft);
  border: 1px solid rgba(236, 217, 173, 0.35);
  background: rgba(255, 253, 248, 0.06);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  transition: background-color 0.3s, transform 0.3s var(--ease-out);
}
.cert-strip__badge:hover {
  background: rgba(236, 217, 173, 0.14);
  transform: translateY(-2px);
}
.cert-strip__icon { color: var(--gold-bright); }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(107, 70, 153, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.9rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 24px 60px -20px rgba(70, 48, 110, 0.32);
  border-color: rgba(184, 134, 46, 0.4);
}

.card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px 220px at var(--glow-x, 50%) var(--glow-y, 50%), rgba(212, 169, 79, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card:hover .card__glow { opacity: 1; }

.card--featured {
  background:
    radial-gradient(420px 260px at 100% 0%, rgba(201, 178, 228, 0.3), transparent 65%),
    var(--white);
  border-color: rgba(107, 70, 153, 0.3);
}

.card__ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(38deg);
  background: var(--grad-gold);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 2.6rem;
}

.card__icon {
  font-size: 1.9rem;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1.3rem;
  background: linear-gradient(150deg, rgba(201, 178, 228, 0.35), rgba(236, 217, 173, 0.45));
  border: 1px solid rgba(107, 70, 153, 0.15);
  transform: translateZ(34px);
}

.card__title { font-size: 1.5rem; margin-bottom: 0.7rem; }
.card__text { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.1rem; }

.card__list {
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.45rem;
}
.card__list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.card__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.2em;
}

.card__link {
  margin-top: auto;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  color: var(--purple);
  transition: color 0.3s, letter-spacing 0.3s var(--ease-out);
}
.card__link:hover { color: var(--gold); letter-spacing: 0.08em; }

/* ---------- Journey ---------- */
.journey { overflow: hidden; }

.journey__timeline { position: relative; }

.journey__line {
  position: absolute;
  top: 30px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: rgba(107, 70, 153, 0.15);
  z-index: 0;
}
.journey__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  transform: scaleX(var(--journey-progress, 0));
  transform-origin: left;
}

.journey__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.journey__step { text-align: left; padding-top: 0.4rem; }

.journey__num {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-deep);
  background: var(--white);
  border: 1.5px solid rgba(184, 134, 46, 0.5);
  box-shadow: 0 8px 22px -10px rgba(70, 48, 110, 0.3);
  margin-bottom: 1.1rem;
}

.journey__step h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.journey__step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Quote band ---------- */
.quoteband {
  position: relative;
  padding: clamp(5rem, 11vw, 8rem) 0;
  background:
    radial-gradient(900px 460px at 20% 0%, rgba(157, 111, 196, 0.3), transparent 60%),
    linear-gradient(120deg, #46306e, #6b4699 70%, #7d5aa6);
  overflow: hidden;
  text-align: center;
}

.quoteband__bg {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(420px 420px at 80% 60%, rgba(212, 169, 79, 0.2), transparent 60%),
    radial-gradient(380px 380px at 15% 75%, rgba(201, 178, 228, 0.18), transparent 60%);
  pointer-events: none;
}

.quoteband blockquote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--cream-soft);
  max-width: 26ch;
  margin-inline: auto;
}
.quoteband cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(107, 70, 153, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s var(--ease-out);
}
.testimonial:hover { box-shadow: 0 24px 60px -20px rgba(70, 48, 110, 0.3); }

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.testimonial figcaption { display: grid; }
.testimonial figcaption strong { color: var(--purple-deep); font-weight: 500; }
.testimonial figcaption span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__info > p { color: var(--ink-soft); }

.contact__channels {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.5rem;
}
.contact__channels li { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact__channel-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  border-radius: 16px;
  color: var(--purple-deep);
  background: linear-gradient(150deg, rgba(201, 178, 228, 0.4), rgba(236, 217, 173, 0.4));
  border: 1px solid rgba(107, 70, 153, 0.18);
}
.contact__channels h3 { font-size: 1.2rem; margin-bottom: 0.1rem; }
.contact__channels a { color: var(--ink-soft); transition: color 0.3s; }
.contact__channels a:hover { color: var(--purple); }
.contact__channels p { color: var(--ink-soft); }

.contact__form {
  background: var(--white);
  border: 1px solid rgba(107, 70, 153, 0.14);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field { display: grid; gap: 0.4rem; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid rgba(107, 70, 153, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(107, 70, 153, 0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(90, 74, 128, 0.5); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-note { min-height: 1.4em; font-size: 0.92rem; color: var(--sage); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.6rem;
  background:
    radial-gradient(900px 480px at 85% 110%, rgba(157, 111, 196, 0.35), transparent 60%),
    linear-gradient(160deg, #382559, #46306e);
  color: var(--cream-soft);
  overflow: hidden;
}

.footer__wordmark {
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 1.1;
  text-align: center;
  color: rgba(236, 217, 173, 0.16);
  user-select: none;
  pointer-events: none;
  margin-bottom: clamp(1.4rem, 4vw, 2.8rem);
  white-space: nowrap;
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.footer__brand .nav__brand-text { color: var(--cream-soft); }
.footer__brand .nav__brand-text em {
  background: linear-gradient(115deg, #d4a94f, #ecd9ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8rem; }
.footer__links a {
  color: rgba(250, 246, 238, 0.75);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-bright); }

.footer__copy {
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.55);
  display: grid;
  gap: 0.3rem;
}
.footer__tagline {
  font-family: var(--font-devanagari);
  letter-spacing: 0.18em;
  color: rgba(236, 217, 173, 0.55);
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 38px -8px rgba(37, 211, 102, 0.7);
}
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__visual { display: none; }
  .journey__steps { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.8rem; }
  .journey__line { display: none; }
}

@media (max-width: 880px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 380px; margin-inline: auto; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 210;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: calc(var(--nav-h) + 1rem) 1.5rem 2rem;
    overflow-y: auto;
    background:
      radial-gradient(700px 500px at 70% 20%, rgba(201, 178, 228, 0.35), transparent 60%),
      var(--cream);
    transform: translateY(-100%);
    /* visibility/opacity keep the closed menu fully hidden even if an
       ancestor transform ever confines the fixed overlay (defense in depth). */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.6s;
  }
  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { font-size: 1.6rem; font-family: var(--font-display); letter-spacing: 0.02em; }
  .nav__cta { margin-top: 0.8rem; }
}

@media (max-width: 560px) {
  /* Shorter bar + tighter section rhythm so phones aren't mostly whitespace */
  :root { --nav-h: 68px; }
  .container { width: min(1180px, 90vw); }
  .section { padding: clamp(3.5rem, 13vw, 5rem) 0; }

  .journey__steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero { padding: calc(var(--nav-h) + 1.5rem) 0 3.5rem; }
  .hero__eyebrow { font-size: 0.66rem; letter-spacing: 0.22em; margin-bottom: 1.1rem; }
  .hero__lead { margin-bottom: 2rem; }

  /* Full-width stacked CTAs read cleaner than wrapped pills on narrow screens */
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .hero__actions .btn { width: 100%; }

  .hero__stats {
    justify-content: space-between;
    gap: 1.2rem;
    text-align: center;
  }
  .hero__stats li { justify-items: center; }

  .marquee__item { font-size: 1.1rem; }
  .marquee__track { gap: 1.8rem; padding-right: 1.8rem; }

  .about__highlights li,
  .contact__channels li { gap: 0.85rem; }

  .footer__wordmark { white-space: normal; }
}

@media (max-width: 380px) {
  /* Very small handsets: pull the largest type down a touch more */
  .hero__title { font-size: clamp(2.7rem, 15vw, 3.2rem); }
  .nav__brand-text { font-size: 1.2rem; }
  .nav__logo { width: 38px; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .card { padding: 1.9rem 1.4rem 1.6rem; }
  .btn { padding: 0.9rem 1.6rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none; }
  .hero__canvas { display: none; }
  .marquee__track { animation: none; }
}
