/* ==========================================================================
   VASTU CAFÉ — Core Stylesheet
   Solutions from the "Mystique" world
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Layout helpers
   5.  Decorative backdrops (sacred geometry)
   6.  Buttons
   7.  Header & navigation
   8.  Hero
   9.  Marquee
   10. Cards & grids
   11. Coin / badge (Why choose us)
   12. Founder
   13. Testimonials slider
   14. Accordion (FAQ)
   15. Tabs
   16. Gallery & lightbox
   17. Pricing
   18. Store
   19. Forms
   20. Tables
   21. Footer
   22. Utilities (scroll bar, to-top, loader, cursor)
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* ------------------------------------------------------------------
     Brand palette — royal blue #162E6A, carried by gold and warm cream.
     The `--saffron-*` names are kept as aliases so every rule, page and
     inline style written against them keeps working; they now resolve to
     the blue family. Prefer --brand / --brand-soft / --brand-deep in new
     code.
     ------------------------------------------------------------------ */
  --brand:          #162E6A;
  --brand-soft:     #2B4A9E;
  --brand-deep:     #0D1C45;
  --brand-tint:     #E9EDF7;

  --saffron:        var(--brand);
  --saffron-soft:   var(--brand-soft);
  --saffron-deep:   var(--brand-deep);

  --gold:           #C9A227;
  --gold-light:     #E6CE86;
  --gold-deep:      #7E6410;   /* text-weight gold: passes AA on cream */

  /* struck copper — the "why choose us" medallions */
  --copper:         #B87333;
  --copper-light:   #E9B98D;
  --copper-deep:    #8A4A22;
  --maroon:         #142757;
  --sage:           #6E7F5B;

  /* Neutrals */
  --white:          #FFFFFF;
  --cream:          #FCFAF5;
  --beige:          #F3F1EA;
  --sand:           #E7E4DA;
  --line:           #DFDCD0;

  /* Ink */
  --ink:            #16203A;
  --ink-soft:       #3B4560;
  --muted:          #616981;

  /* Gradients */
  --grad-gold:      linear-gradient(135deg, #E6CE86 0%, #C9A227 45%, #9C7C15 100%);
  --grad-saffron:   linear-gradient(135deg, #2B4A9E 0%, #162E6A 55%, #0D1C45 100%);
  --grad-brand:     var(--grad-saffron);
  --grad-cream:     linear-gradient(180deg, #FFFFFF 0%, #FCFAF5 45%, #F3F1EA 100%);
  --grad-warm:      linear-gradient(135deg, #FCFAF5 0%, #F3F1EA 50%, #E7E4DA 100%);
  --grad-dark:      linear-gradient(150deg, #1E3B78 0%, #16295C 60%, #0B1633 100%);

  /* Glass */
  --glass-bg:       rgba(255, 255, 255, 0.62);
  --glass-brd:      rgba(255, 255, 255, 0.75);
  --glass-blur:     saturate(160%) blur(16px);

  /* Elevation */
  --sh-xs:  0 1px 2px rgba(16, 26, 52, .06);
  --sh-sm:  0 4px 14px rgba(16, 26, 52, .07);
  --sh-md:  0 12px 32px rgba(16, 26, 52, .10);
  --sh-lg:  0 24px 60px rgba(16, 26, 52, .14);
  --sh-gold:0 14px 40px rgba(201, 162, 39, .28);
  --sh-brand:0 14px 40px rgba(22, 46, 106, .30);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Fluid spacing scale */
  --sp-1: clamp(.35rem, .5vw, .5rem);
  --sp-2: clamp(.7rem, 1vw, 1rem);
  --sp-3: clamp(1.1rem, 1.6vw, 1.6rem);
  --sp-4: clamp(1.6rem, 2.4vw, 2.4rem);
  --sp-5: clamp(2.2rem, 3.6vw, 3.6rem);
  --sp-6: clamp(3rem, 5vw, 5rem);
  --sp-7: clamp(4rem, 7vw, 7.5rem);

  /* Section rhythm — generous, balanced (vastu proportion) */
  --section-y: clamp(3.5rem, 7vw, 7.5rem);
  --shell:     1240px;
  --shell-wide:1560px;

  /* Type */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --f-body:    "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --f-deva:    "Noto Serif Devanagari", "Nirmala UI", "Mangal", var(--f-display);

  /* Motion */
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --t-fast:    .22s;
  --t-mid:     .42s;
  --t-slow:    .8s;

  --header-h: 84px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--f-body);
  font-size: clamp(1rem, .35vw + .93rem, 1.075rem);
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

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

button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-light); color: var(--ink); }

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1.4rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb {
  background: var(--grad-gold);
  border-radius: var(--r-pill);
  border: 3px solid var(--beige);
}
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 3.15rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.95rem); }
h4 { font-size: clamp(1.16rem, 1.5vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

strong, b { color: var(--ink); font-weight: 600; }

em { font-style: italic; }

blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.deva { font-family: var(--f-deva); }

/* Gold gradient text */
.txt-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.txt-saffron {
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-2);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow--left::before { display: none; }
.eyebrow--left::after { display: none; }
.eyebrow--left { padding-left: 0; }

/* Section heading block */
.sec-head {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--sp-5);
}
.sec-head--left { margin-inline: 0; text-align: left; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }
/* the kicker is a <p> too, so it needs to win back its accent colour */
.sec-head .eyebrow { color: var(--gold-deep); font-size: .78rem; }
.sec-head h2 { margin-bottom: var(--sp-2); }

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin: var(--sp-3) auto;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 130px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament svg { width: 26px; height: 26px; }
.ornament--left { justify-content: flex-start; margin-inline: 0; }
.ornament--left::before { display: none; }

/* Lead paragraph */
.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Pull quote */
.pull-quote {
  position: relative;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) calc(var(--sp-4) + 30px);
  background: var(--grad-warm);
  border-radius: var(--r-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--sh-sm);
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 14px;
  top: 2px;
  font-family: var(--f-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-light);
}
.pull-quote cite {
  display: block;
  margin-top: .9rem;
  font-style: normal;
  font-family: var(--f-body);
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ==========================================================================
   4. LAYOUT HELPERS
   ========================================================================== */
.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}
.shell-wide { width: min(100% - 2.5rem, var(--shell-wide)); margin-inline: auto; }
.shell-narrow { width: min(100% - 2.5rem, 900px); margin-inline: auto; }

section { position: relative; }

.section {
  padding-block: var(--section-y);
  position: relative;
  /* clip (not hidden) so decorative mandalas/orbs can bleed past the edge
     without ever widening the document or creating a scroll container */
  overflow-x: clip;
}
.section--tight { padding-block: calc(var(--section-y) * .62); }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--warm  { background: var(--grad-warm); }
.section--white { background: var(--white); }
.section--dark  { background: var(--grad-dark); color: rgba(252, 250, 245, .82); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark .eyebrow,
.section--dark .sec-head .eyebrow,
.cta-band .eyebrow,
.cta-band .sec-head .eyebrow { color: var(--gold-light); }
.section--dark .sec-head p { color: rgba(252, 250, 245, .68); }

.grid { display: grid; gap: var(--sp-3); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-auto-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g-auto-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-auto-340 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--sp-5);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }

.stack-2 > * + * { margin-top: var(--sp-2); }
.stack-3 > * + * { margin-top: var(--sp-3); }
.stack-4 > * + * { margin-top: var(--sp-4); }

.center { text-align: center; }
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.aic { align-items: center; }
.jcc { justify-content: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }

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

/* ==========================================================================
   5. DECORATIVE BACKDROPS — sacred geometry
   ========================================================================== */
.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-sacred.svg");
  background-size: 320px;
  opacity: .05;
  pointer-events: none;
  z-index: 0;
}
.bg-pattern > * { position: relative; z-index: 1; }

.bg-mandala {
  position: absolute;
  width: clamp(320px, 44vw, 720px);
  aspect-ratio: 1;
  background: url("../images/mandala.svg") center/contain no-repeat;
  opacity: .07;
  pointer-events: none;
  z-index: 0;
  animation: spin-slow 90s linear infinite;
}
.bg-mandala--tr { top: -12%; right: -12%; }
.bg-mandala--bl { bottom: -14%; left: -14%; animation-direction: reverse; }

/* Soft radial glows */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb--saffron { background: rgba(22, 46, 106, .18); width: 380px; height: 380px; }
.glow-orb--gold    { background: rgba(201, 162, 39, .16);  width: 440px; height: 440px; }

/* Divider strips */
.sep-lotus {
  display: block;
  width: 100%;
  height: 46px;
  background: url("../images/sep-lotus.svg") center/auto 100% repeat-x;
  opacity: .5;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--grad-saffron);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  font-family: var(--f-body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  box-shadow: 0 10px 26px rgba(22, 46, 106, .32);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              color var(--t-fast) var(--ease);
  cursor: pointer;
  text-align: center;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D8B23A, #9C7C15);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-gold); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--gold { --btn-bg: var(--grad-gold); box-shadow: 0 10px 26px rgba(201, 162, 39, .3); }
.btn--gold::before { background: var(--grad-saffron); }

.btn--ghost {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn--ghost::before { background: var(--grad-gold); }
.btn--ghost:hover { color: var(--white); border-color: transparent; }

.btn--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--sh-sm);
}
.btn--light::before { background: var(--grad-gold); }
.btn--light:hover { color: var(--white); }

.btn--dark {
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(16, 26, 52, .28);
}

.btn--wa { background: linear-gradient(135deg, #4ecf6b, #1faa4f); box-shadow: 0 10px 26px rgba(31,170,79,.3); }
.btn--wa::before { background: linear-gradient(135deg, #3bbb59, #158c3f); }

.btn--sm { padding: .7rem 1.4rem; font-size: .8rem; }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Ripple element injected by JS */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .45);
  animation: ripple-out .62s var(--ease-out) forwards;
  pointer-events: none;
  z-index: 2;
}

/* Text link with underline sweep */
.link-sweep {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: .04em;
}
.link-sweep::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid) var(--ease-out);
}
.link-sweep:hover::after { transform: scaleX(1); transform-origin: left; }
.link-sweep svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--ease); }
.link-sweep:hover svg { transform: translateX(4px); }

/* ==========================================================================
   7. HEADER & NAVIGATION
   ========================================================================== */
.topbar {
  background: var(--grad-dark);
  color: rgba(252, 250, 245, .8);
  font-size: .8rem;
  letter-spacing: .04em;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 42px;
  padding-block: 13px;
  flex-wrap: wrap;
}
.topbar a { transition: color var(--t-fast) var(--ease); }
.topbar a:hover { color: var(--gold-light); }
.topbar__left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar__right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar__pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(201, 162, 39, .16);
  border: 1px solid rgba(201, 162, 39, .34);
  color: var(--gold-light);
  padding: .18rem .8rem;
  border-radius: var(--r-pill);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar__pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5ce07f;
  box-shadow: 0 0 0 0 rgba(92, 224, 127, .7);
  animation: pulse-dot 2s infinite;
}
.topbar span.hk , .cta-band a.btn.btn--lg.btn--ghost{
  display: none;
}

/* Language translator select */
.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.lang select {
  appearance: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(223, 220, 208, .25);
  color: inherit;
  border-radius: var(--r-pill);
  padding: .2rem 1.9rem .2rem .8rem;
  font-size: .76rem;
  letter-spacing: .06em;
  cursor: pointer;
}
.lang select option { color: #16203A; background: #FCFAF5; }
.lang::after {
  content: "";
  position: absolute;
  right: .7rem;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

/* Flip contact number */
.flip-num {
  position: relative;
  display: inline-block;
  height: 1.35em;
  overflow: hidden;
  vertical-align: middle;
  min-width: 152px;
  perspective: 400px;
}
.flip-num__track {
  display: block;
  animation: flip-cycle 9s infinite;
}
.flip-num a {
  display: block;
  height: 1.35em;
  line-height: 1.35em;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: .05em;
  white-space: nowrap;
}
.flip-num a:hover { color: var(--saffron-soft); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(252, 250, 245, .86);
  border-bottom: 1px solid rgba(223, 220, 208, .8);
  transition: background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              padding var(--t-mid) var(--ease);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
.site-header.is-stuck {
  background: rgba(252, 250, 245, .78);
  box-shadow: 0 10px 34px rgba(16, 26, 52, .1);
  border-bottom-color: rgba(201, 162, 39, .35);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header { transition: transform .45s var(--ease-out), background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: var(--header-h);
}

/* Logo — brand lockup (official Vastu Café mark + wordmark) */
.logo--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  flex: none;
}
.logo__img {
  height: clamp(38px, 3.6vw, 52px);
  width: auto;
  transition: transform var(--t-mid) var(--ease-out), filter var(--t-mid) var(--ease);
}
.logo--brand:hover .logo__img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 8px 18px rgba(201, 162, 39, .38));
}
.logo__tagline {
  font-size: clamp(.5rem, .55vw, .6rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  white-space: nowrap;
  display: none;
}

/* Logo — emblem + text variant (used on dark surfaces) */
.logo { display: flex; align-items: center; gap: .75rem; flex: none; }
.logo__mark {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-warm);
  border: 1.5px solid rgba(201, 162, 39, .5);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm), inset 0 0 18px rgba(201, 162, 39, .16);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.logo:hover .logo__mark { transform: rotate(18deg); box-shadow: var(--sh-gold); }
.logo__mark svg,
.logo__mark img { width: 34px; height: 34px; }
.logo__mark--dark {
  background: rgba(201, 162, 39, .12);
  border-color: rgba(201, 162, 39, .45);
  box-shadow: none;
}
.logo__txt { line-height: 1.1; }
.logo__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
  display: block;
}
.logo__name .cafe { color: var(--saffron); }
.logo__tag {
  display: block;
  font-size: .62rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-top: 2px;
}

/* Primary menu */
.menu { display: flex; align-items: center; gap: .15rem; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .65rem .78rem;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: .28rem;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transform: translateX(-50%);
  transition: width var(--t-mid) var(--ease-out);
}
.menu > li > a:hover { color: var(--saffron-deep); }
.menu > li > a:hover::after,
.menu > li.is-active > a::after { width: 26px; }
.menu > li.is-active > a { color: var(--saffron-deep); }
.menu .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--t-fast) var(--ease);
}
.menu > li:hover .caret { transform: translateY(1px) rotate(225deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 264px;
  padding: .6rem;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out), visibility var(--t-mid);
  z-index: 40;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(255, 255, 255, .95);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.menu > li:hover .dropdown,
.menu > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .58rem .8rem;
  font-size: .88rem;
  color: var(--ink-soft);
  border-radius: var(--r-xs);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.dropdown a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
  flex: none;
  transition: transform var(--t-fast) var(--ease);
}
.dropdown a:hover {
  background: var(--beige);
  color: var(--saffron-deep);
  padding-left: 1.05rem;
}
.dropdown a:hover::before { transform: scale(1.6); opacity: 1; }

/* Nav actions */
.nav__actions { display: flex; align-items: center; gap: .55rem; flex: none; }

.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--sh-sm); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn__badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--saffron);
  color: #fff;
  font-size: .66rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 7px rgba(22, 46, 106, .5);
}

/* Hamburger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  place-items: center;
  box-shadow: var(--sh-xs);
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  margin: 2.5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast) var(--ease), width var(--t-mid) var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 88vw);
  z-index: 1200;
  background: var(--grad-cream);
  box-shadow: -24px 0 60px rgba(16, 26, 52, .22);
  transform: translateX(100%);
  /* visibility keeps the closed drawer out of the layout box entirely, so it
     can never widen the document or trap keyboard focus */
  visibility: hidden;
  transition: transform .5s var(--ease-out), visibility .5s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(252, 250, 245, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.drawer__close {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 1.3rem;
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.drawer__close:hover { transform: rotate(90deg); background: var(--beige); }
.drawer__body { padding: 1rem 1.3rem 2rem; }
.drawer__nav > li { border-bottom: 1px solid rgba(223, 220, 208, .7); }
.drawer__nav > li > a,
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  width: 100%;
  padding: .95rem .2rem;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.drawer__nav > li > a:hover,
.drawer__toggle:hover { color: var(--saffron); padding-left: .55rem; }
.drawer__nav > li.is-active > a { color: var(--saffron); }
.drawer__toggle .caret {
  width: 9px; height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t-fast) var(--ease);
  flex: none;
}
.drawer__toggle[aria-expanded="true"] .caret { transform: rotate(225deg) translateY(-2px); }
.drawer__sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s var(--ease-out);
}
.drawer__sub a {
  display: block;
  padding: .5rem .2rem .5rem 1.1rem;
  font-size: .95rem;
  color: var(--muted);
  border-left: 2px solid var(--line);
  margin-left: .3rem;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.drawer__sub a:hover { color: var(--saffron); border-color: var(--gold); }
.drawer__cta { margin-top: 1.6rem; display: grid; gap: .7rem; }
.drawer__meta {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
}
.drawer__meta a { display: block; padding: .2rem 0; }
.drawer__meta a:hover { color: var(--saffron); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 17, 38, .48);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid);
  z-index: 1100;
}
.overlay.is-open { opacity: 1; visibility: visible; }

body.no-scroll { overflow: hidden; }

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  /* clip, not hidden — `hidden` would make this a scroll container and kill
     the sticky chakra inside it */
  overflow-x: clip;
  background: var(--grad-cream);
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 50 / 50 as specified */
  gap: var(--sp-5);
  align-items: flex-start;
}

/* Left — spinning astro chakra */
.hero__chakra {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 42vw, 560px);
}
.chakra-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.chakra-stage img,
.chakra-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chakra-ring-1 { animation: spin-slow 46s linear infinite; }
.chakra-ring-2 { animation: spin-slow 34s linear infinite reverse; }
.chakra-ring-3 { animation: spin-slow 70s linear infinite; }
.chakra-core {
  position: relative;
  z-index: 3;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 32% 28%, #fff8e6, #f3dfa8 55%, #d9b955);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .55), var(--sh-gold), inset 0 -8px 22px rgba(156, 124, 21, .25);
  animation: breathe 5.5s var(--ease) infinite;
}
.chakra-core span {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.1;
  font-size: clamp(.9rem, 1.7vw, 1.25rem);
  letter-spacing: .02em;
  padding: .4rem;
}
/* the official Vastu Café emblem sits at the heart of the chakra */
.chakra-core img {
  width: 72%;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(90, 62, 10, .3));
}
.chakra-halo {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 46, 106, .22), transparent 62%);
  filter: blur(14px);
  animation: halo-pulse 6s ease-in-out infinite;
}

/* Floating sanskrit chips around the chakra */
.chakra-chip {
  position: absolute;
  z-index: 4;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  padding: .5rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink);
  white-space: nowrap;
  animation: float-y 6s ease-in-out infinite;
}
.chakra-chip strong { color: var(--saffron-deep); }
.chakra-chip--1 { top: 4%;  left: -4%;  animation-delay: -1s; }
.chakra-chip--2 { bottom: 12%; right: -6%; animation-delay: -3s; }
.chakra-chip--3 { bottom: -2%; left: 8%;  animation-delay: -2s; }

/* Right — content + event banner */
.hero__content { position: relative; z-index: 2; }
.hero__hk {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon);
  background: linear-gradient(90deg, rgba(201,162,39,.16), rgba(22, 46, 106,.08));
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: var(--r-pill);
  padding: .35rem 1.25rem;
  margin-bottom: var(--sp-3);
}
.hero__sanskrit {
  font-family: var(--f-deva);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  color: var(--maroon);
  line-height: 1.45;
  margin-bottom: .35rem;
}
.hero__sanskrit-en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--muted);
  margin-bottom: var(--sp-3);
}
.hero h1 { margin-bottom: var(--sp-2); }
.hero__sub {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: var(--sp-3);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: var(--sp-4); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
}
.hero__trust div strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--saffron-deep);
  line-height: 1;
}
.hero__trust div span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Event banner + soft flip images */
.event-banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-dark);
  color: var(--cream);
  padding: clamp(1.3rem, 2.4vw, 2rem);
  box-shadow: var(--sh-lg);
  margin-bottom: var(--sp-3);
  isolation: isolate;
}
.event-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-sacred.svg") center/210px;
  opacity: .09;
  z-index: -1;
}
.event-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #0C1934;
  background: var(--grad-gold);
  padding: .25rem .85rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  margin-bottom: .75rem;
}
.event-banner h3 { color: var(--cream); margin-bottom: .4rem; }
.event-banner p { color: rgba(252, 250, 245, .74); font-size: .95rem; margin-bottom: 1rem; }
.event-banner__row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.event-banner__media {
  position: relative;
  margin: 0 0 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
  border: 1px solid rgba(201, 162, 39, .3);
}
.event-banner__media img { width: 100%; height: 100%; object-fit: cover; }

/* Soft flip image strip */
.flip-strip { display: none; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.flip-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transform-style: preserve-3d;
  animation: soft-flip 9s var(--ease) infinite;
  background: var(--sand);
}
.flip-card:nth-child(2) { animation-delay: -3s; }
.flip-card:nth-child(3) { animation-delay: -6s; }
.flip-card img { width: 100%; height: 100%; object-fit: cover; }
.flip-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: .55rem .7rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(0deg, rgba(9, 17, 38,.82), transparent);
}

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  color: var(--cream);
  border-block: 1px solid rgba(201, 162, 39, .3);
  padding-block: .7rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(252, 250, 245, .9);
}
.marquee__item b { color: var(--gold-light); font-weight: 600; }
.marquee__item svg { width: 16px; height: 16px; color: var(--saffron); flex: none; }

/* Page banner (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6.5rem) clamp(2.6rem, 5vw, 4.5rem);
  background: var(--grad-warm);
  text-align: center;
}
.page-hero h1 { margin-bottom: var(--sp-2); }
.page-hero p { max-width: 70ch; margin-inline: auto; color: var(--muted); }
.crumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: var(--sp-3);
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .06em;
}
.crumbs a { color: var(--gold-deep); transition: color var(--t-fast) var(--ease); }
.crumbs a:hover { color: var(--saffron); }
.crumbs span[aria-current] { color: var(--ink); }
.crumbs li { display: flex; align-items: center; gap: .5rem; }
.crumbs li + li::before { content: "/"; color: var(--line); }

#mystic{display:none;}
#vision .lead{ font-size:20px; }
.cta-band .lead{
  color: var(--cream);
}
/* ==========================================================================
   10. CARDS & GRIDS
   ========================================================================== */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease);
  height: 100%;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(201, 162, 39, .12), transparent 45%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(201, 162, 39, .55);
}
.card:hover::after { opacity: 1; }

.card--glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-color: var(--glass-brd);
}
.card--flat { box-shadow: none; }
.card--warm { background: var(--grad-warm); }

.card__icon {
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(22, 46, 106, .14), rgba(201, 162, 39, .2));
  border: 1px solid rgba(201, 162, 39, .3);
  color: var(--saffron-deep);
  margin-bottom: var(--sp-2);
  transition: transform var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
}
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.06);
  background: var(--grad-saffron);
  color: #fff;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .97rem; }

.card__num {
  position: absolute;
  top: 14px; right: 20px;
  font-family: var(--f-display);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 162, 39, .14);
  pointer-events: none;
}

/* Bullet list with lotus markers */
.list-lotus li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
  color: var(--ink-soft);
}
.list-lotus li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 15px; height: 15px;
  background: url("../images/icon-lotus-bullet.svg") center/contain no-repeat;
  opacity: .9;
}
.list-lotus li:last-child { margin-bottom: 0; }
.list-lotus--gold li::before { filter: none; }

.list-check li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: .75rem;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 3px 8px rgba(201, 162, 39, .35);
}
.list-check li::after {
  content: "";
  position: absolute;
  left: 6.5px; top: .72em;
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

/* Stat counters */
.stat {
  text-align: center;
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--r-md);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
#appointments .stat__num{
  color: #000;
}
.lang{
  display: none;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#process .stat__num{
font-size: 25px; 
}

.stat__label {
  display: block;
  margin-top: .4rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Feature row / image + text */
.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--sand);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.media-frame--tilt { transform: rotate(-1.4deg); transition: transform var(--t-slow) var(--ease-out); }
.media-frame--tilt:hover { transform: rotate(0deg) scale(1.012); }

.float-badge {
  position: absolute;
  z-index: 3;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: float-y 7s ease-in-out infinite;
}
.float-badge svg { width: 32px; height: 32px; color: var(--saffron); flex: none; }
.float-badge strong { display: block; font-family: var(--f-display); font-size: 1.3rem; color: var(--ink); line-height: 1; }
.float-badge span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.float-badge--br { right: -18px; bottom: 26px; }
.float-badge--tl { left: -18px; top: 26px; }

/* ==========================================================================
   11. COIN / BADGE — "Why choose Vastu Café" (flip for details)
   ========================================================================== */
.coin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.coin {
  perspective: 1400px;
  aspect-ratio: 1;
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  cursor: pointer;
}
.coin__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s var(--ease-out);
}
.coin:hover .coin__inner,
.coin:focus-within .coin__inner,
.coin.is-flipped .coin__inner { transform: rotateY(180deg); }

.coin__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14%;
  overflow: hidden;
}
.coin__face--front {
  /* struck copper — the centre is deliberately the lightest part so the
     engraved label stays readable over the emboss pattern */
  background:
    radial-gradient(circle at 50% 44%, #FFF7EF 0%, #F8DFC6 30%, #E7B189 52%, #C87A41 78%, #8E4C22 100%);
  box-shadow: var(--sh-md), inset 0 0 0 6px rgba(255, 255, 255, .34), inset 0 -10px 26px rgba(110, 55, 20, .3);
  color: #4A2410;
}
.coin__face--front::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 2px dashed rgba(110, 55, 20, .32);
}
.coin__face--front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/coin-emboss.svg") center/86% no-repeat;
  opacity: .13;                 /* faint enough to read straight through */
}
.coin__face--back {
  transform: rotateY(180deg);
  background: var(--grad-dark);
  color: rgba(252, 250, 245, .88);
  box-shadow: var(--sh-lg), inset 0 0 0 6px rgba(184, 115, 51, .5);
}
.coin__face--back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-sacred.svg") center/150px;
  opacity: .1;
}
.coin__ico { width: 42px; height: 42px; margin-bottom: .5rem; }
.coin__title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}
.coin__sub {
    font-size: 12px;
    letter-spacing: .17em;
    text-transform: uppercase;
    margin-top: .4rem;
    opacity: .95;
    color: #6B3A16;
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}
.coin__ico { position: relative; z-index: 2; }
.coin__body { font-size: .87rem; line-height: 1.6; position: relative; z-index: 2; }
.coin__body strong { color: var(--copper-light); }
.coin__hint {
  display: block;
  text-align: center;
  margin-top: .9rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   12. FOUNDER
   ========================================================================== */
.founder__photo {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 120px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--grad-warm);
}
.founder__photo img { width: 100%; }
.founder__ring {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, .4);
  animation: spin-slow 60s linear infinite;
  pointer-events: none;
}
.founder__sig {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--saffron-deep);
  margin-top: .6rem;
}

.desk-quote {
  position: relative;
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--grad-dark);
  color: rgba(252, 250, 245, .9);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.desk-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-sacred.svg") center/200px;
  opacity: .08;
}
.desk-quote > * { position: relative; z-index: 1; }
.desk-quote h3 { color: var(--gold-light); font-size: 1.1rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--f-body); font-weight: 500; margin-bottom: .9rem; }
.desk-quote blockquote { color: var(--cream); }

/* ==========================================================================
   13. TESTIMONIALS SLIDER
   ========================================================================== */
.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--r-lg); }
.slider__track {
  display: flex;
  transition: transform .75s var(--ease-out);
  will-change: transform;
}
.slider__slide { min-width: 100%; padding: 2px; }

.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.tcard::before {
  content: "";
  position: absolute;
  top: -40px; right: -30px;
  width: 190px; height: 190px;
  background: url("../images/mandala.svg") center/contain no-repeat;
  opacity: .06;
}
.tcard__stars { display: flex; gap: .18rem; color: var(--saffron); margin-bottom: var(--sp-2); }
.tcard__stars svg { width: 19px; height: 19px; }
.tcard__text {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}
.tcard__who {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
}
.tcard__avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid var(--gold-light);
  box-shadow: var(--sh-sm);
  background: var(--sand);
}
.tcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard__name { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.tcard__role { font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: var(--sp-3);
}
.slider__btn {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.slider__btn:hover { background: var(--grad-gold); color: #fff; transform: translateY(-2px); border-color: transparent; }
.slider__btn svg { width: 19px; height: 19px; }
.slider__dots { display: flex; gap: .45rem; align-items: center; }
.slider__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  transition: width var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease);
}
.slider__dot.is-active { width: 30px; border-radius: var(--r-pill); background: var(--grad-gold); }

/* Logo / image marquee slider (grace scroll) */
.scroll-strip { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.scroll-strip__track { display: flex; gap: var(--sp-3); width: max-content; animation: marquee 46s linear infinite; }
.scroll-strip:hover .scroll-strip__track { animation-play-state: paused; }
.scroll-strip figure {
  width: clamp(230px, 26vw, 330px);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--white);
  position: relative;
}
.scroll-strip figure img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.scroll-strip figcaption {
  padding: .7rem .9rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ==========================================================================
   14. ACCORDION
   ========================================================================== */
.accordion { display: grid; gap: .9rem; }
.acc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
}
.acc.is-open { box-shadow: var(--sh-md); border-color: rgba(201, 162, 39, .5); }
.acc__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.acc__btn:hover { color: var(--saffron-deep); background: rgba(243, 241, 234, .55); }
.acc__q {
  display: inline-flex;
  align-items: baseline;
  gap: .7rem;
}
.acc__q i {
  font-style: normal;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold-deep);
  flex: none;
}
.acc__ico {
  position: relative;
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--line);
  transition: background var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.acc__ico::before,
.acc__ico::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--saffron-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease);
}
.acc__ico::before { width: 12px; height: 2px; }
.acc__ico::after  { width: 2px; height: 12px; }
.acc.is-open .acc__ico { background: var(--grad-saffron); border-color: transparent; transform: rotate(180deg); }
.acc.is-open .acc__ico::before,
.acc.is-open .acc__ico::after { background: #fff; }
.acc.is-open .acc__ico::after { transform: translate(-50%, -50%) scaleY(0); }
.acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.acc__panel-inner {
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 1.05rem;
  margin: 0 1.35rem 1.35rem;
  padding-inline: 0;
}

/* ==========================================================================
   15. TABS
   ========================================================================== */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: var(--sp-4);
  padding: .45rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  width: fit-content;
  margin-inline: auto;
  max-width: 100%;
}
.tabs__btn {
  padding: .62rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast) var(--ease), background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  white-space: nowrap;
}
.tabs__btn:hover { color: var(--saffron-deep); }
.tabs__btn.is-active {
  color: #fff;
  background: var(--grad-saffron);
  box-shadow: 0 8px 20px rgba(22, 46, 106, .3);
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fade-up .6s var(--ease-out) both; }

/* ==========================================================================
   16. GALLERY & LIGHTBOX
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-3);
}
.gal-item {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  background: var(--sand);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.gal-item--tall { aspect-ratio: 3 / 4; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter var(--t-mid) var(--ease);
}
.gal-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem .9rem .8rem;
  background: linear-gradient(0deg, rgba(9, 17, 38, .86), transparent);
  color: #fff;
  font-size: .86rem;
  letter-spacing: .06em;
  transform: translateY(6px);
  opacity: .9;
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-mid) var(--ease);
}
.gal-item:hover .gal-item__cap { transform: translateY(0); opacity: 1; }
.gal-item__zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: var(--ink);
  opacity: 0;
  transform: scale(.7);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.gal-item:hover .gal-item__zoom { opacity: 1; transform: scale(1); }

/* Modal / lightbox */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(26, 17, 10, .82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative;
  width: min(100%, 860px);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transform: translateY(26px) scale(.97);
  transition: transform .5s var(--ease-out);
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__box--wide { width: min(100%, 1040px); }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  font-size: 1.3rem;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.modal__close:hover { transform: rotate(90deg); background: var(--saffron); color: #fff; }
.modal__media img { width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.modal__body { padding: var(--sp-4); }
.modal__caption { text-align: center; padding: 1rem 1.4rem 1.4rem; color: var(--muted); }
.modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  box-shadow: var(--sh-md);
  z-index: 4;
}
.modal__arrow:hover { background: var(--saffron); color: #fff; }
.modal__arrow--prev { left: 10px; }
.modal__arrow--next { right: 10px; }

/* ==========================================================================
   17. PRICING
   ========================================================================== */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
  height: 100%;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-9px); box-shadow: var(--sh-lg); border-color: rgba(201,162,39,.5); }
.price-card--featured {
  background: var(--grad-dark);
  color: rgba(252, 250, 245, .84);
  border-color: rgba(201, 162, 39, .5);
  box-shadow: var(--sh-lg);
}
.price-card--featured h3,
.price-card--featured .price-card__amt { color: var(--cream); }
.price-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-sacred.svg") center/190px;
  opacity: .08;
  pointer-events: none;
}
.price-card > * { position: relative; z-index: 1; }
.price-card__flag {
  position: absolute;
  top: 18px; right: -34px;
  transform: rotate(38deg);
  background: var(--grad-saffron);
  color: #fff;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem 2.6rem;
  box-shadow: var(--sh-sm);
  z-index: 2;
}
.price-card__name {
  font-family: var(--f-body);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}
.price-card--featured .price-card__name { color: var(--gold-light); }
.price-card__amt {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.price-card__amt sup { font-size: .42em; top: -.8em; }
.price-card__per { font-size: .82rem; color: var(--muted); letter-spacing: .07em; }
.price-card--featured .price-card__per { color: rgba(253,249,241,.6); }
.price-card ul { margin: var(--sp-3) 0; flex: 1; }
.price-card ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .65rem;
  font-size: .95rem;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-gold);
}

/* Process timeline */
.timeline { position: relative; display: grid; gap: var(--sp-4); }

/* Stepped timeline — the rail draws itself downwards while each step
   slides in one after the other as it reaches the viewport. */
.timeline--stepped::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px;
  width: 2px;
  height: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  box-shadow: 0 0 10px rgba(22, 46, 106, .45);
  transition: height 1.6s var(--ease-out) .15s;
}
.timeline--stepped.is-visible::after { height: calc(100% - 24px); }

.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), transparent);
}
.tl-item { position: relative; padding-left: 82px; }
.tl-item__dot {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-gold);
  box-shadow: 0 8px 20px rgba(201, 162, 39, .34), 0 0 0 6px var(--cream);
  transition: transform var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease);
}
.tl-item:hover .tl-item__dot { transform: scale(1.08); background: var(--grad-saffron); }
.tl-item h4 { margin-bottom: .3rem; }
.tl-item p { color: var(--muted); font-size: .97rem; }

/* Progress bars */
.progress { margin-bottom: var(--sp-3); }
.progress__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .45rem;
  font-size: .9rem;
}
.progress__top b { font-family: var(--f-display); font-size: 1.1rem; color: var(--saffron-deep); }
.progress__bar {
  height: 9px;
  border-radius: var(--r-pill);
  background: var(--sand);
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(201, 162, 39, .5);
  transition: width 1.6s var(--ease-out);
}

/* ==========================================================================
   18. HEALING STORE
   ========================================================================== */
.product {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
  height: 100%;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(201,162,39,.5); }
.product__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--grad-warm);
  overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.product:hover .product__media img { transform: scale(1.06); }
.product__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--grad-saffron);
  color: #fff;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--r-pill);
}
.product__body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 1.18rem; margin-bottom: .3rem; }
.product__body p { font-size: .9rem; color: var(--muted); margin-bottom: .9rem; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.product__price { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--saffron-deep); }
.product__price del { font-size: .7em; color: var(--muted); font-weight: 400; margin-left: .35rem; }

/* ==========================================================================
   19. FORMS
   ========================================================================== */
.form { display: grid; gap: var(--sp-3); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-3); }
.field { display: block; position: relative; }
.field > label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .45rem;
}
.field .req { color: var(--saffron); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .92rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: .98rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; cursor: pointer; background-image: url("../icons/chevron-down.svg"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px; padding-right: 2.6rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .16);
}
.field input::placeholder,
.field textarea::placeholder { color: #9AA0B4; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #cf4b3b; box-shadow: 0 0 0 4px rgba(207, 75, 59, .12); }
.field__err {
  display: none;
  margin-top: .35rem;
  font-size: .82rem;
  color: #cf4b3b;
}
.field.has-error .field__err { display: block; animation: fade-up .3s var(--ease-out) both; }
.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea { border-color: #5ea36c; }

.check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: var(--muted);
  cursor: pointer;
}
.check input { width: 20px; height: 20px; flex: none; accent-color: var(--saffron); margin-top: .18rem; }

.form-note {
  font-size: .85rem;
  color: var(--muted);
}
.form-status {
  display: none;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .93rem;
  border: 1px solid transparent;
}
.form-status.is-shown { display: block; animation: fade-up .45s var(--ease-out) both; }
.form-status--ok { background: rgba(94, 163, 108, .12); border-color: rgba(94, 163, 108, .4); color: #33693f; }
.form-status--err { background: rgba(207, 75, 59, .1); border-color: rgba(207, 75, 59, .35); color: #9c3325; }

/* Contact info tiles */
.info-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
  height: 100%;
}
.info-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.info-tile__ico {
  width: 50px; height: 50px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(140deg, rgba(22, 46, 106, .14), rgba(201, 162, 39, .2));
  color: var(--saffron-deep);
  border: 1px solid rgba(201, 162, 39, .28);
}
.info-tile__ico svg { width: 24px; height: 24px; }
.info-tile h4 { font-size: 1.05rem; margin-bottom: .25rem; }
.info-tile a, .info-tile p { font-size: .95rem; color: var(--muted); display: block; }
.info-tile a:hover { color: var(--saffron-deep); }

/* ==========================================================================
   20. TABLES
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  background: var(--white);
}
table.tbl { width: 100%; border-collapse: collapse; min-width: 640px; }
table.tbl caption {
  caption-side: top;
  text-align: left;
  padding: 1rem 1.2rem;
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
table.tbl th,
table.tbl td { padding: .95rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.tbl thead th {
  background: var(--beige);
  font-family: var(--f-body);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
table.tbl tbody tr { transition: background var(--t-fast) var(--ease); }
table.tbl tbody tr:hover { background: rgba(243, 241, 234, .7); }
table.tbl tbody tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   21. FOOTER
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  color: rgba(252, 250, 245, .82);
  padding-block: var(--sp-6);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-sacred.svg") center/230px;
  opacity: .08;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: var(--sp-3); }

.site-footer {
  position: relative;
  background: #0C1934;
  color: rgba(252, 250, 245, .68);
  padding-block: var(--sp-6) 0;
  overflow: hidden;
  font-size: .94rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-sacred.svg") center/260px;
  opacity: .045;
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer h4 {
  color: var(--gold-light);
  font-family: var(--f-body);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
}
.footer__brand .logo__name { color: var(--cream); }
.footer__brand p { color: rgba(252, 250, 245, .6); margin-top: 1rem; font-size: .93rem; }
.footer__links li { margin-bottom: .55rem; }
.footer__links a {
  position: relative;
  display: inline-block;
  color: rgba(252, 250, 245, .68);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.footer__links a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer__phones a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .48rem .8rem;
  margin-bottom: .5rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 162, 39, .2);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: .04em;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.footer__phones a:hover { background: rgba(201, 162, 39, .16); border-color: var(--gold); transform: translateY(-2px); }
.footer__phones svg { width: 17px; height: 17px; color: var(--saffron); flex: none; }

.newsletter { display: flex; gap: .5rem; margin-top: .8rem; }
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: .75rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(223, 220, 208, .25);
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
}
.newsletter input::placeholder { color: rgba(252, 250, 245, .42); }
.newsletter input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.15); }
.newsletter button {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #0C1934;
  transition: transform var(--t-fast) var(--ease-out);
}
.newsletter button:hover { transform: translateX(3px) scale(1.05); }

.socials { display: flex; gap: .5rem; margin-top: 1.1rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, .28);
  color: rgba(252, 250, 245, .8);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out);
}
.socials a:hover { background: var(--grad-gold); color: #0C1934; transform: translateY(-3px); border-color: transparent; }
.socials svg { width: 18px; height: 18px; }

.footer__emblems {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-block: var(--sp-3);
  border-top: 1px solid rgba(201, 162, 39, .18);
}
.footer__emblem { text-align: center; color: rgba(252, 250, 245, .6); }
.footer__emblem img { width: clamp(74px, 9vw, 104px); margin-inline: auto; opacity: .92; }
.footer__emblem span {
  display: block;
  margin-top: .4rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer__emblem--spin img { animation: spin-slow 40s linear infinite; }

.footer__bar {
  border-top: 1px solid rgba(201, 162, 39, .18);
  padding-block: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(252, 250, 245, .5);
}
.footer__bar nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.footer__bar a:hover { color: var(--gold-light); }

/* ==========================================================================
   22. UTILITIES — progress bar, to-top, loader, floating actions
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(201, 162, 39, .7);
  z-index: 1400;
  transition: width .1s linear;
}

.to-top {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 950;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.85);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out), visibility var(--t-mid);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-4px) scale(1.06); }
.to-top svg { width: 20px; height: 20px; }

/* Floating quick actions (WhatsApp / Call) */
.quick-fab {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 950;
  display: grid;
  gap: .6rem;
}
.quick-fab a {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--sh-md);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease);
  position: relative;
}
.quick-fab a:hover { transform: translateY(-4px) scale(1.06); }
.quick-fab svg { width: 24px; height: 24px; }
.quick-fab .fab-wa { background: linear-gradient(135deg, #4ecf6b, #17994a); }
.quick-fab .fab-call { background: var(--grad-saffron); }
.quick-fab a::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--ink);
  color: var(--cream);
  font-size: .74rem;
  letter-spacing: .08em;
  padding: .3rem .7rem;
  border-radius: var(--r-xs);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out);
}
.quick-fab a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.quick-fab .fab-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(78, 207, 107, .6);
  animation: ring-out 2.4s ease-out infinite;
}

/* Page transition veil */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: var(--grad-cream);
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.page-veil.is-gone { opacity: 0; visibility: hidden; }
.page-veil__mark { width: 96px; height: 96px; animation: spin-slow 5s linear infinite; }
.page-veil__txt {
  margin-top: 1rem;
  font-family: var(--f-display);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--gold-deep);
  text-align: center;
}
.page-veil.is-out { opacity: 0; }

/* Lazy image fade-in */
img.lazy { opacity: 0; transition: opacity .7s var(--ease); }
img.lazy.is-loaded { opacity: 1; }

/* Highlight ribbon */
.ribbon {
  display: inline-block;
  background: var(--grad-saffron);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(22, 46, 106, .3);
}
.ribbon--gold { background: var(--grad-gold); box-shadow: 0 6px 16px rgba(201, 162, 39, .3); }
.ribbon--ghost { background: transparent; border: 1px solid var(--gold); color: var(--gold-deep); box-shadow: none; }

/* Notice strip */
.notice {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: linear-gradient(120deg, rgba(22, 46, 106,.09), rgba(201,162,39,.09));
  border: 1px dashed rgba(201, 162, 39, .55);
  color: var(--ink-soft);
}
.notice svg { width: 24px; height: 24px; color: var(--saffron); flex: none; margin-top: .15rem; }

/* Sloka block */
.sloka {
  text-align: center;
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--grad-warm);
  border: 1px solid rgba(201, 162, 39, .32);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.sloka::before,
.sloka::after {
  content: "";
  position: absolute;
  width: 130px; height: 130px;
  background: url("../images/mandala.svg") center/contain no-repeat;
  opacity: .08;
}
.sloka::before { top: -30px; left: -30px; }
.sloka::after { bottom: -30px; right: -30px; }
.sloka__txt {
  font-family: var(--f-deva);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--maroon);
  line-height: 1.6;
  position: relative;
}
.sloka__tr {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  margin-top: .8rem;
  position: relative;
}
.sloka__ref {
  display: block;
  margin-top: .7rem;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative;
}

/* Blog cards */
.post {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
  height: 100%;
}
.post:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(201,162,39,.5); }
.post__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.07); }
.post__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.post__meta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .6rem;
}
.post__body h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.post__body p { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }
.post__body .link-sweep { margin-top: auto; align-self: flex-start; }

/* Case study card */
.case {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--ink);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.case:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.case img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .9s var(--ease-out), opacity var(--t-mid) var(--ease);
}
.case:hover img { transform: scale(1.07); opacity: .42; }
.case__body { position: relative; z-index: 2; padding: var(--sp-4); color: rgba(252, 250, 245, .85); width: 100%; }
.case__body h3 { color: var(--cream); margin-bottom: .4rem; }
.case__tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0C1934;
  background: var(--grad-gold);
  padding: .22rem .75rem;
  border-radius: var(--r-pill);
  margin-bottom: .7rem;
}
.case__result {
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(201, 162, 39, .3);
  font-size: .9rem;
}
.case__result b { color: var(--gold-light); }

/* Directional compass grid (vastu 16 zones) */
.compass {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 460px);
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #fff 0%, var(--beige) 70%, var(--sand) 100%);
  box-shadow: var(--sh-lg), inset 0 0 0 1px rgba(201, 162, 39, .3);
}
.compass img { width: 92%; animation: spin-slow 120s linear infinite; }

/* Team member */
.member { text-align: center; }
.member__photo {
  width: clamp(130px, 16vw, 178px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--grad-gold) border-box;
  box-shadow: var(--sh-md);
  transition: transform var(--t-mid) var(--ease-out);
}
.member:hover .member__photo { transform: translateY(-6px) scale(1.03); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member h4 { margin-top: 1rem; }
.member span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }

/* ==========================================================================
   22a. VERTICAL PROCESS TIMELINE
   A rail with numbered stops; each stop pairs its copy with an image.
   The rail fills as the reader moves down (--fill is set by JS).
   `--compact` drops the imagery for narrow columns.
   ========================================================================== */
.vtimeline {
  --pad: clamp(46px, 5vw, 66px);
  --dot-left: calc(var(--pad) * -1 + clamp(5px, .8vw, 11px));
  --vgap: clamp(2.4rem, 5vw, 4.5rem);
  position: relative;
  display: grid;
  gap: var(--vgap);
  padding-left: var(--pad);
  /* never stretch to a taller sibling column — the rail would overshoot */
  align-self: start;
}

/* the rail is drawn stop-to-stop, so it can never run past the last one */
.vstep::before {
  content: "";
  position: absolute;
  left: -49px;
  top: 1.6rem;
  bottom: calc((var(--vgap) + .35rem) * -1);
  width: 2px;
  border-radius: 2px;
  background: var(--line);
  transition: background .55s var(--ease-out);
}
.vstep:last-child::before { display: none; }
.vstep.is-reached::before {
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  box-shadow: 0 0 10px rgba(22, 46, 106, .35);
}

.vstep {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: center;
}
.vstep__dot {
  position: absolute;
  left: var(--dot-left);
  top: .35rem;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  transition: background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.vstep.is-reached .vstep__dot {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 6px rgba(22, 46, 106, .14);
  transform: scale(1.12);
}
.vstep__body h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.18;
  margin-bottom: .7rem;
}
.vstep__body h3 i {
  font-style: normal;
  color: var(--brand);
  margin-right: .35rem;
}
.vstep__body p { color: var(--muted); max-width: 46ch; margin: 0; }
.vstep__body .ribbon { margin-top: 1rem; }

.vstep__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
  background: var(--sand);
  margin: 0;
  aspect-ratio: 4 / 3;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.vstep__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.vstep:hover .vstep__media { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.vstep:hover .vstep__media img { transform: scale(1.05); }

/* compact: copy only, for a narrow column beside a gallery */
.vtimeline--compact { gap: var(--sp-4); padding-left: 58px; }
.vtimeline--compact .vstep { grid-template-columns: 1fr; }
.vtimeline--compact .vstep__body h3 { font-size: clamp(1.12rem, 1.5vw, 1.32rem); margin-bottom: .3rem; }
.vtimeline--compact .vstep__body p { font-size: .96rem; max-width: none; }
.vtimeline--compact .vstep__dot { left: -58px; top: .3rem; }

/* ==========================================================================
   22b. SCROLL-DRIVEN HORIZONTAL SLIDER
   Desktop: the block pins and page scroll drives the track sideways.
   Touch / small screens / reduced motion: a plain swipeable scroll-snap rail.
   ========================================================================== */
.hscroll { position: relative; }

.hscroll__sticky { display: flex; flex-direction: column; gap: var(--sp-3); }
.hscroll.is-pinned .hscroll__sticky {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  height: calc(100vh - var(--header-h) - 28px);
  justify-content: center;
}

.hscroll__bar {
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--sand);
  overflow: hidden;
  flex: none;
}
.hscroll__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--grad-brand);
  box-shadow: 0 0 10px rgba(22, 46, 106, .45);
  transition: width .12s linear;
}

.hscroll__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: var(--r-lg);
}
.hscroll__viewport::-webkit-scrollbar { display: none; }
.hscroll.is-pinned .hscroll__viewport {
  overflow: hidden;
  scroll-snap-type: none;
}

.hscroll__track {
  display: flex;
  gap: var(--sp-3);
  width: max-content;
  padding: 4px;
  will-change: transform;
}

/* one step */
.pstep {
  flex: 0 0 clamp(268px, 74vw, 400px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.pstep:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(22, 46, 106, .35);
}
.pstep__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--sand);
}
.pstep__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.pstep:hover .pstep__media img { transform: scale(1.06); }
.pstep__num {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-width: 52px;
  padding: .1rem .7rem;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  box-shadow: 0 8px 20px rgba(22, 46, 106, .38);
}
.pstep__body { padding: 1.25rem 1.35rem 1.45rem; }
.pstep__body h4 { margin-bottom: .35rem; }
.pstep__body p { color: var(--muted); font-size: .96rem; margin: 0; }

.hscroll__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
  flex: none;
}
.hscroll__count {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--muted);
}
.hscroll__count b { font-size: 1.7rem; color: var(--brand); }
.hscroll__hint {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hscroll__nav { display: flex; gap: .5rem; }
.hscroll__nav .slider__btn:disabled { opacity: .38; cursor: default; transform: none; }

/* while pinned the arrows are redundant, scrolling drives it */
.hscroll.is-pinned .hscroll__nav { display: none; }
.hscroll:not(.is-pinned) .hscroll__hint { display: none; }

/* ==========================================================================
   22c. BOOKING FORM CARD
   ========================================================================== */
.bform {
  width: min(100%, 860px);
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: clamp(1.5rem, 3.5vw, 3rem);
}
.bform__title {
  text-align: center;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: .4rem;
}
.bform__sub {
  text-align: center;
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: var(--sp-4);
}

/* softly tinted fields, as in the reference */
.bform .field input,
.bform .field select,
.bform .field textarea {
  background: rgba(233, 237, 247, .5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.bform .field input:focus,
.bform .field select:focus,
.bform .field textarea:focus {
  background: var(--white);
  border-color: var(--brand-soft);
  box-shadow: 0 0 0 4px rgba(22, 46, 106, .12);
}
.bform .field > label {
  color: var(--ink);
  letter-spacing: .1em;
  font-size: .72rem;
}
.bform .form__row--3 { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-3); }

/* file drop zone */
.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  gap: .35rem;
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  border: 2px dashed var(--line);
  border-radius: 18px;
  background: rgba(233, 237, 247, .34);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.dropzone:hover,
.dropzone.is-over { border-color: var(--brand-soft); background: rgba(233, 237, 247, .7); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone__ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 46, 106, .3);
}
.dropzone__ico svg { width: 22px; height: 22px; }
.dropzone__title { font-weight: 600; color: var(--ink); }
.dropzone__hint { font-size: .85rem; color: var(--muted); }
.dropzone__file {
  display: none;
  font-size: .9rem;
  font-weight: 500;
  color: var(--brand);
  word-break: break-all;
}
.dropzone.has-file .dropzone__file { display: block; }
.dropzone.has-file .dropzone__hint { display: none; }

/* full-width pay button with a travelling arrow */
.btn--pay {
  width: 100%;
  justify-content: space-between;
  padding-inline: 1.6rem;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: .01em;
  border-radius: 16px;
}
.btn--pay svg { transition: transform var(--t-mid) var(--ease-out); }
.btn--pay:hover svg { transform: translateX(6px); }

.bform__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .86rem;
  color: var(--muted);
  text-align: center;
}
.bform__secure svg { width: 17px; height: 17px; color: var(--sage); flex: none; }

/* ==========================================================================
   23. OFFER BLOCK — "Vastu check · Vastu corrections · Architectural plans"
   A framed poster beside a stack of service rows and contact chips.
   ========================================================================== */
.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.6rem, 3.4vw, 3.4rem);
  align-items: center;
}

.offer__poster {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(100%, 380px);
  border-radius: var(--r-lg);
  padding: 10px;
  background: var(--grad-gold);
  box-shadow: var(--sh-lg);
  transform: rotate(-1.5deg);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.offer__poster::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: calc(var(--r-lg) - 12px);
  pointer-events: none;
}
.offer__poster:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--sh-gold); }
.offer__poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--r-lg) - 8px);
}

.offer__body h3 {
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 1.2;
}
.offer__body > p { color: var(--muted); max-width: 58ch; }

.offer__list {
  display: grid;
  gap: .75rem;
  margin-top: var(--sp-3);
}
.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.offer__list li:hover {
  transform: translateX(5px);
  border-color: rgba(201, 162, 39, .55);
  box-shadow: var(--sh-sm);
}
.offer__list strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .12rem;
}
.offer__list span > *:last-child { margin-bottom: 0; }
.offer__list li > span:last-child { font-size: .93rem; color: var(--muted); line-height: 1.55; }

.offer__ico {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(22, 46, 106, .14), rgba(201, 162, 39, .22));
  border: 1px solid rgba(201, 162, 39, .32);
  color: var(--saffron-deep);
  transition: background var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
}
.offer__list li:hover .offer__ico { background: var(--grad-saffron); color: #fff; border-color: transparent; }
.offer__ico svg { width: 22px; height: 22px; }

.offer__tagline {
  margin: var(--sp-3) 0 0;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offer__contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: .7rem;
  margin-top: var(--sp-2);
}
.offer__chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .9rem;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  min-width: 0;
}
.offer__chip:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--sh-sm); }
.offer__chip-ico {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: #fff;
}
.offer__chip--wa .offer__chip-ico { background: linear-gradient(135deg, #4ecf6b, #17994a); }
.offer__chip-ico svg { width: 19px; height: 19px; }
.offer__chip-txt {
  display: block;
  min-width: 0;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.offer__chip-txt small {
  display: block;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ==========================================================================
   24. DARK-SECTION SURFACES
   Glass panels lose their contrast on the dark sections, so they get their
   own treatment: a light-on-dark card, a gold heading and cream body copy.
   ========================================================================== */
.vcard {
  position: relative;
  height: 100%;
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  border: 1px solid rgba(201, 162, 39, .34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(252, 250, 245, .86);
  transition: transform var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.vcard:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, .75);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}
.vcard h3 { color: var(--gold-light); margin-bottom: .6rem; }
.vcard p { color: rgba(252, 250, 245, .84); }
.vcard p:last-child { margin-bottom: 0; }
.vcard .deva { color: var(--cream); }
.vcard__ico {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(201, 162, 39, .18);
  border: 1px solid rgba(201, 162, 39, .45);
  color: var(--gold-light);
  margin-bottom: 1rem;
  transition: transform var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease);
}
.vcard:hover .vcard__ico { transform: translateY(-3px) rotate(-6deg); background: rgba(201, 162, 39, .3); }
.vcard__ico svg { width: 26px; height: 26px; }

/* Call tiles — "Register Appointments" */
.call-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: var(--sp-3);
}
.call-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, rgba(201, 162, 39, .18), rgba(255, 255, 255, .05));
  border: 1px solid rgba(201, 162, 39, .4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
  transition: transform var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.call-tile:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--sh-gold); }
.call-tile__ico {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #0C1934;
}
.call-tile__ico svg { width: 22px; height: 22px; }
.call-tile__label {
  display: block;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .15rem;
}
.call-tile__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* Any remaining glass cards sitting on a dark section */
.section--dark .card--glass,
.cta-band .card--glass {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(201, 162, 39, .3);
  color: rgba(252, 250, 245, .85);
}
.section--dark .card--glass h3,
.section--dark .card--glass h4 { color: var(--gold-light); }
.section--dark .card--glass p { color: rgba(252, 250, 245, .84) !important; }

.section--dark .stat {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(201, 162, 39, .3);
}
.section--dark .stat__label { color: rgba(252, 250, 245, .72); }
.section--dark .sloka { border-color: rgba(201, 162, 39, .45); }

/* Print */
@media print {
  .site-header, .drawer, .overlay, .to-top, .quick-fab, .cursor, .cursor-dot,
  .scroll-progress, .marquee, .page-veil { display: none !important; }
  body { background: #fff; color: #000; }
}
/* mobile screen 425px */
@media (max-width: 480px) {
 .vstep::before{
  left:-33px !important;
 }
}