/* ═══════════════════════════════════════════════════════════════════════════
   VEDICA ASTRO — custom.css  (r4 / refined)
   Hero on Akasha · sections alternate Paper / White · Zodiac marquee on Akasha.
   Typography: Playfair 400/700 · Cormorant Italic 300/400/500 · Inter 300/400/500
   Hairlines 0.5px · Caps tracking 0.32–0.40em
   ═══════════════════════════════════════════════════════════════════════════ */


/* ───────────── 01. BRAND TOKENS ─────────────────────────────────────────── */

:root {
  /* Palette */
  --akasha:        #0E1A38;
  --akasha-soft:   #142347;
  --neelam:        #1E3A6F;
  --kanchana:      #C9A96B;
  --kanchana-deep: #A8884D;
  --moti:          #F5F1E8;     /* warm paper */
  --paper-white:   #FFFFFF;     /* true white surface */
  --moti-soft:     #FAF6EE;
  --ink:           #1F1A12;
  --ink-soft:      #4A4337;
  --mist:          #8A8578;
  --line-warm:     #E5E0D5;     /* warm hairline (paper / white sections) */

  /* Hairline alphas (gold on dark) */
  --rule-dark:      rgba(201, 169, 107, 0.30);
  --rule-dark-soft: rgba(201, 169, 107, 0.16);

  /* Hairline alphas (deep-gold on light) */
  --rule-light:      rgba(168, 136, 77, 0.28);
  --rule-light-soft: rgba(168, 136, 77, 0.14);

  /* Moti alphas (text on Akasha) */
  --moti-90: rgba(245, 241, 232, 0.90);
  --moti-78: rgba(245, 241, 232, 0.78);
  --moti-60: rgba(245, 241, 232, 0.60);
  --moti-45: rgba(245, 241, 232, 0.45);
  --moti-30: rgba(245, 241, 232, 0.30);

  /* Ink alphas (text on Moti / White) */
  --ink-78: rgba(31, 26, 18, 0.78);
  --ink-60: rgba(31, 26, 18, 0.60);
  --ink-45: rgba(31, 26, 18, 0.45);

  /* Neelam alpha (sapphire accent on light bg) */
  --neelam-78: rgba(30, 58, 111, 0.85);

  /* Type families */
  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-italic:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --gutter:    32px;
  --gutter-l:  64px;
  --maxw:      1240px;

  /* Z */
  --z-loader:  9999;
  --z-mobile:  80;
  --z-header:  50;

  /* Motion */
  --ease:      cubic-bezier(.7, 0, .3, 1);
}


/* ───────────── 02. BASE / RESET ─────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--akasha);
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: var(--f-sans);
  font-weight: 300;            /* light — luxurious */
  font-size: 17px;
  line-height: 1.7;
  color: var(--moti);
  background: var(--akasha);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { list-style: none; }

strong { font-weight: 500; color: inherit; }
em { font-style: italic; }

::selection { background: var(--kanchana); color: var(--akasha); }

body.is-loading { overflow: hidden; }


/* ───────────── 03. HEADER ───────────────────────────────────────────────── */

.header {
  position: relative;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 48px;
  background: var(--akasha);
  border-bottom: 0.5px solid var(--rule-dark);
}

/* Nav centered between logo and CTA — auto margins distribute slack evenly */
.nav { margin: 0 auto; }

.logo {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.4s var(--ease);
}
.logo:hover { opacity: 0.82; }

.logo__img { display: block; height: 40px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav__link {
  position: relative;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--moti);
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 0.5px;
  background: var(--kanchana);
  transition: right 0.5s var(--ease);
}

.nav__link:hover { color: var(--kanchana); }
.nav__link:hover::after { right: 0; }

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 0.5px;
  background: var(--moti);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }


/* ───────────── 04. CTA BUTTONS ──────────────────────────────────────────── */

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border: 0.5px solid var(--kanchana);
  background: transparent;
  color: var(--kanchana);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--kanchana);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.cta:hover {
  color: var(--akasha);
  border-color: var(--kanchana);
}
.cta:hover::before { transform: scaleY(1); }

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

.cta__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease);
}

.cta__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta:hover .cta__arrow { transform: translate(3px, -3px); }

.cta--ghost {
  border: 0;
  border-bottom: 0.5px solid var(--kanchana);
  padding: 0 0 8px;
  color: var(--moti);
  letter-spacing: 0.18em;
}
.cta--ghost::before { display: none; }
.cta--ghost:hover { color: var(--kanchana); background: transparent; }
.cta--ghost .cta__arrow { color: var(--kanchana); }

/* CTA on light bg */
.section--paper .cta,
.section--white .cta {
  border-color: var(--kanchana-deep);
  color: var(--kanchana-deep);
}
.section--paper .cta::before,
.section--white .cta::before { background: var(--kanchana-deep); }
.section--paper .cta:hover,
.section--white .cta:hover {
  color: var(--akasha);
  border-color: var(--kanchana-deep);
}

.section--paper .cta--ghost,
.section--white .cta--ghost {
  border-bottom-color: var(--kanchana-deep);
  color: var(--ink);
}
.section--paper .cta--ghost:hover,
.section--white .cta--ghost:hover { color: var(--kanchana-deep); }


/* ───────────── 05. MOBILE NAV ───────────────────────────────────────────── */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile);
  background: var(--akasha);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav__link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--moti);
  border-bottom: 0.5px solid var(--rule-dark);
  transition: color 0.3s var(--ease);
}
.mobile-nav__link:hover { color: var(--kanchana); }

.mobile-nav__num {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--kanchana);
  min-width: 40px;
}

.mobile-nav__cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 0.5px solid var(--kanchana);
  color: var(--kanchana);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  align-self: flex-start;
}


/* ───────────── 06. HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 96px var(--gutter-l) 112px;
  background: var(--akasha);
  overflow: hidden;
}

/* Faint editorial grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--rule-dark-soft) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, var(--rule-dark-soft) 0.5px, transparent 0.5px);
  background-size: 96px 96px;
  background-position: -1px -1px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Stamp — editorial masthead */
.hero__stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 56px;
  padding: 9px 18px;
  border: 0.5px solid var(--rule-dark);
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moti-78);
}

.hero__stamp-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--kanchana);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

.hero__stamp-sep {
  color: var(--rule-dark);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 400;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* H1 */
.hero__h1 {
  margin: 0 0 44px;
  font-weight: 400;
  line-height: 1.04;
}

.hero__h1-bold,
.hero__h1-mid { display: block; }

.hero__h1-bold {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(54px, 7.6vw, 108px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--kanchana);
  line-height: 1.0;
}

.hero__h1-mid {
  font-family: var(--f-italic);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5.4vw, 72px);
  letter-spacing: 0;
  color: var(--moti);
  padding-left: clamp(18px, 2.6vw, 36px);
  margin-top: 14px;
  line-height: 1.1;
}

/* Sub */
.hero__sub {
  max-width: 480px;
  margin: 0 0 52px;
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--moti-78);
}

.hero__sub-mark {
  color: var(--kanchana);
  font-weight: 400;
}

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}


/* ───────────── 07. HERO VISUAL — Vedic chart frame ──────────────────────── */

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  padding: 32px;
  border: 0.5px solid var(--rule-dark);
}

.hero__visual-corner {
  position: absolute;
  font-size: 14px;
  color: var(--kanchana);
  line-height: 1;
}
.hero__visual-corner--tl { top: -8px; left: -8px; }
.hero__visual-corner--tr { top: -8px; right: -8px; }
.hero__visual-corner--bl { bottom: -8px; left: -8px; }
.hero__visual-corner--br { bottom: -8px; right: -8px; }

.hero__chart {
  width: 100%;
  height: 100%;
  display: block;
  animation: chart-breathe 18s ease-in-out infinite;
}

@keyframes chart-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.018); }
}

.hero__visual-cap {
  position: absolute;
  bottom: -36px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moti-45);
}


/* ───────────── 08. MARQUEE 1 — sky-data ticker ─────────────────────────── */

.marquee {
  position: relative;
  background: var(--akasha);
  border-top: 0.5px solid var(--rule-dark);
  border-bottom: 0.5px solid var(--rule-dark);
  padding: 18px 0;
  overflow: hidden;
}

.marquee__track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--moti);
  animation: march 42s linear infinite;
  will-change: transform;
}

.marquee__item { display: inline-block; padding: 0 28px; }

.marquee__mark {
  display: inline-block;
  margin-right: 14px;
  color: var(--kanchana);
  font-size: 13px;
  vertical-align: -1px;
}

.marquee__val { color: var(--kanchana); }

@keyframes march {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }


/* ───────────── 09. ZODIAC MARQUEE — between Por Quê and Sobre ──────────── */

.zmarquee {
  position: relative;
  background: var(--akasha);
  border-top: 0.5px solid var(--rule-dark);
  border-bottom: 0.5px solid var(--rule-dark);
  padding: 32px 0;
  overflow: hidden;
}

.zmarquee::before,
.zmarquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.zmarquee::before {
  left: 0;
  background: linear-gradient(to right, var(--akasha), transparent);
}
.zmarquee::after {
  right: 0;
  background: linear-gradient(to left, var(--akasha), transparent);
}

.zmarquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: march 110s linear infinite;
  will-change: transform;
}

.zmarquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 48px;
  position: relative;
}

.zmarquee__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--kanchana);
  border-radius: 50%;
  opacity: 0.5;
}

.zmarquee__icon {
  display: block;
  width: 36px; height: 36px;
  color: var(--kanchana);
  flex-shrink: 0;
}

.zmarquee__name {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--kanchana);
  letter-spacing: 0;
}

.zmarquee__roman {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moti-60);
  margin-left: 6px;
  padding-left: 16px;
  border-left: 0.5px solid var(--rule-dark);
}

.zmarquee:hover .zmarquee__track { animation-play-state: paused; }


/* ───────────── 10. SECTIONS — base + bg variants ────────────────────────── */

.section {
  position: relative;
  padding: 120px var(--gutter-l) 104px;
  overflow: hidden;
}

.section--paper { background: var(--moti); color: var(--ink); }
.section--white { background: var(--paper-white); color: var(--ink); }

.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

/* Section head — number + label + rule (reference style) */
.section__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 72px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--line-warm);
}

.section__num,
.section__label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  line-height: 1;
}

.section__num { color: var(--kanchana-deep); }
.section__label { color: var(--ink); }

.section__rule {
  flex: 1;
  height: 0.5px;
  background: var(--line-warm);
  align-self: center;
  display: none;  /* using border-bottom on head instead */
}

/* Lead — 2-col title / body */
.section__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: start;
  margin: 0 0 88px;
}

.section__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;                                /* lighter — editorial */
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.08;
}

.section__title span { display: block; }

.section__title em {
  font-family: var(--f-italic);
  font-weight: 400;
  font-style: italic;
  display: block;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25;
  color: var(--neelam);                            /* sapphire italic accent */
  margin-top: 14px;
  letter-spacing: 0;
}

.section__body {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-78);
  max-width: 540px;
}

.section__body p { margin: 0 0 18px; }
.section__body p:last-child { margin: 0; }

.section__body strong { color: var(--ink); font-weight: 500; }

/* Tiny gold divider — reference pattern */
.divider {
  height: 0.5px;
  background: var(--kanchana-deep);
  width: 60px;
  margin: 32px 0;
}
.divider--center { margin: 32px auto; }


/* ───────────── 11. POR QUÊ — questions, bridge, benefits, closer ────────── */

/* Questions — italic blockquotes from buscador's voice */
.questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  margin: 0 0 80px;
  padding: 56px 0;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
  list-style: none;
}

.questions__item {
  margin: 0;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--neelam-78);
  position: relative;
  padding-left: 28px;
  letter-spacing: 0;
}

.questions__item::before {
  content: '\2014';                                /* em-dash */
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--kanchana-deep);
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1;
}

/* Bridge — display pull-quote */
.section__bridge {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 48px 32px;
  text-align: center;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.section__bridge p {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.section__bridge strong {
  color: var(--kanchana-deep);
  font-weight: 400;
  font-style: italic;
}

/* Benefits grid — six concrete domains, hairline cells */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 80px;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.benefit {
  position: relative;
  padding: 40px 32px 36px;
  border-right: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
  transition: background 0.4s var(--ease);
}

.benefit:nth-child(3n) { border-right: 0; }
.benefit:nth-last-child(-n+3) { border-bottom: 0; }

.section--paper .benefit:hover { background: var(--moti-soft); }
.section--white .benefit:hover { background: var(--moti); }

.benefit__num {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
  margin-bottom: 20px;
}

.benefit__title {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.benefit__text {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-78);
  margin: 0;
}

/* Closer */
.section__closer {
  text-align: center;
  padding: 32px 0 0;
}

.section__closer p {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--neelam);
  margin: 0 0 36px;
  letter-spacing: 0;
}


/* ───────────── 12. SOBRE — feature card on white ─────────────────────────── */

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 80px 0 0;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.stat {
  padding: 44px 28px;
  border-right: 0.5px solid var(--line-warm);
}
.stat:last-child { border-right: 0; }

.stat__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1;
  color: var(--kanchana-deep);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.stat__plus {
  display: inline-block;
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--kanchana-deep);
  font-weight: 400;
}

.stat__label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Feature card — hierarchy treatment from reference */
.feature-card {
  margin: 80px 0 0;
  padding: 64px;
  background: var(--moti);
  border: 0.5px solid var(--line-warm);
}

.section--paper .feature-card { background: var(--paper-white); }
.section--white .feature-card { background: var(--moti); }

.feature-card__eyebrow {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
}

.feature-card__title {
  margin: 24px 0 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.018em;
}

.feature-card__tag {
  margin: 20px 0 0;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.4;
  color: var(--neelam);
}

.feature-card__body {
  margin: 32px 0 0;
  max-width: 640px;
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-78);
}

.feature-card__body p { margin: 0 0 14px; }
.feature-card__body p:last-child { margin: 0; }
.feature-card__body strong { color: var(--ink); font-weight: 500; }

.feature-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 40px 0 0;
  padding: 32px 0 0;
  border-top: 0.5px solid var(--line-warm);
}

.feature-card__meta-label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
  margin-bottom: 8px;
}

.feature-card__meta-value {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.005em;
}


/* ───────────── 13. MÉTODO — vertical timeline + spec card ───────────────── */

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 96px;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.process__step {
  position: relative;
  padding: 48px 32px 40px;
  border-right: 0.5px solid var(--line-warm);
}
.process__step:last-child { border-right: 0; }

.process__num {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--kanchana-deep);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.process__name {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.process__text {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-78);
  margin: 0;
}

.process__time {
  display: block;
  margin-top: 24px;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--neelam);
}

/* Manuscript spec block (now a feature card variant) */
.manuscript {
  padding: 48px 56px;
  background: var(--moti);
  border: 0.5px solid var(--line-warm);
}

.section--paper .manuscript { background: var(--paper-white); }
.section--white .manuscript { background: var(--moti); }

.manuscript__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--line-warm);
}

.manuscript__mark {
  font-size: 14px;
  color: var(--kanchana-deep);
  line-height: 1;
}

.manuscript__label {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.manuscript__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 36px;
}

.manuscript__list li {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-78);
  position: relative;
  padding-left: 22px;
}

.manuscript__list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--kanchana-deep);
  font-family: var(--f-display);
  font-size: 14px;
}

.manuscript__list strong {
  color: var(--ink);
  font-weight: 500;
}


/* ───────────── 14. GRAHAS — two-column glossary ─────────────────────────── */

.grahas {
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
  margin: 0 0 80px;
}

.graha {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: 80px;
  padding: 56px 32px;
  border-bottom: 0.5px solid var(--line-warm);
  align-items: start;
  transition: background 0.5s var(--ease);
}

.graha:last-child { border-bottom: 0; }

.section--white .graha:hover { background: var(--moti); }
.section--paper .graha:hover { background: var(--moti-soft); }

.graha__head { position: relative; }

.graha__num {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--kanchana-deep);
  margin-bottom: 22px;
}

.graha__name {
  margin: 0 0 10px;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.008em;
}

.graha__sanskrit {
  display: block;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--kanchana-deep);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: 0;
}

.graha__caption {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.graha__body {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-78);
}

.graha__body p { margin: 0; }

.graha__body em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--neelam);
}


/* ───────────── 15. COMPARAÇÃO — editorial table ─────────────────────────── */

.comparison-wrap {
  margin: 0 0 80px;
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 32px; bottom: 0;
  background: linear-gradient(to left, var(--moti) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section--white .comparison-wrap::after {
  background: linear-gradient(to left, var(--paper-white) 0%, transparent 100%);
}

.comparison {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.comparison th,
.comparison td {
  padding: 26px 22px;
  border-right: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
  vertical-align: top;
  text-align: left;
}

.comparison th:last-child,
.comparison td:last-child { border-right: 0; }

.comparison tbody tr:last-child td,
.comparison tbody tr:last-child th { border-bottom: 0; }

/* Top-left empty corner */
.comparison thead th:first-child {
  background: transparent;
}

/* Header method cells — caps Inter */
.comparison thead th {
  padding: 32px 22px 26px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: transparent;
}

/* Vedic header cell — display Cormorant + ✦ + caption + gold tint */
.comparison thead .is-vedic {
  background: rgba(201, 169, 107, 0.12);
  padding: 28px 22px 24px;
}

.comparison .vedic-mark {
  display: block;
  color: var(--kanchana-deep);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
}

.comparison .vedic-name {
  display: block;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
  line-height: 1;
  margin-bottom: 6px;
}

.comparison .vedic-sub {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
}

/* Row-label cell (first column of each tbody row) */
.comparison tbody th {
  padding: 26px 22px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: left;
  background: transparent;
}

/* Body cells */
.comparison tbody td {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-78);
}

.comparison tbody td.is-vedic {
  background: rgba(201, 169, 107, 0.12);
  color: var(--ink);
  font-weight: 500;
}

/* Visual hint when scrollable on mobile */
@media (max-width: 880px) {
  .comparison-wrap::after { opacity: 1; }
}


/* Argumentos editoriais — Por que védica */

.argumentos {
  margin: 96px 0 80px;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.argumentos__head {
  text-align: center;
  padding: 48px 24px 56px;
  border-bottom: 0.5px solid var(--line-warm);
}

.argumentos__label {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
  margin-bottom: 22px;
}

.argumentos__h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.argumento {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(0, 3fr);
  gap: 64px;
  padding: 56px 32px;
  border-bottom: 0.5px solid var(--line-warm);
  align-items: start;
  transition: background 0.5s var(--ease);
}

.argumento:last-of-type { border-bottom: 0; }

.section--paper .argumento:hover { background: var(--moti-soft); }
.section--white .argumento:hover { background: var(--moti); }

.argumento__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 60px;
  color: var(--kanchana-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  align-self: start;
}

.argumento__body {
  max-width: 720px;
}

.argumento__heading {
  margin: 0 0 18px;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.008em;
}

.argumento__text {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-78);
  margin: 0;
}

.argumento__text em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--neelam);
}


/* ───────────── 16. CONTATO — minimal centered ───────────────────────────── */

.contato-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.contato-lead .section__title {
  text-align: center;
}

.contato-lead .section__body {
  margin: 32px auto 0;
  max-width: 580px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 56px;
}

.contact__option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border: 0.5px solid var(--line-warm);
  background: var(--moti);
  color: var(--ink);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}

.section--white .contact__option { background: var(--moti); }
.section--paper .contact__option { background: var(--paper-white); }

.contact__option:hover {
  border-color: var(--kanchana-deep);
  transform: translateY(-2px);
}

.contact__option-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--kanchana-deep);
  line-height: 1;
}

.contact__option-name {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.contact__option-text {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-78);
  margin: 0;
}

.contact__option-phone {
  margin: 14px 0 0;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--kanchana-deep);
  line-height: 1;
}

/* When .contact__option is rendered as <button> (E-mail card), reset native button styling */
button.contact__option {
  border: 0.5px solid var(--rule);
  background: var(--moti-soft);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  width: 100%;
}

.contact__option-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--kanchana-deep);
  transition: transform 0.4s var(--ease);
}

.contact__option-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact__option:hover .contact__option-arrow { transform: translate(3px, -3px); }

.contact__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 24px;
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: center;
  flex-wrap: wrap;
}

.contact__mark {
  color: var(--kanchana-deep);
  font-size: 14px;
}


/* ───────────── 15. FOOTER ───────────────────────────────────────────────── */

.footer {
  background: var(--akasha);
  color: var(--moti-78);
  padding: 44px var(--gutter-l);
  border-top: 0.5px solid var(--rule-dark);
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer__lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__logo-img {
  display: block;
  height: 28px;
  width: auto;
  transition: opacity 0.3s var(--ease);
}
.footer__logo-img:hover { opacity: 0.85; }

.footer__cap {
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--moti-45);
  padding-left: 14px;
  border-left: 0.5px solid var(--rule-dark);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer__links a {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--moti);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--kanchana); }

.footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--moti-45);
}

.footer__sep {
  color: var(--rule-dark);
  font-family: var(--f-display);
  font-size: 12px;
}


/* ───────────── 16. MAIN ─────────────────────────────────────────────────── */

.va-main { display: block; }


/* ───────────── FAQ (section 06) ─────────────────────────────────────────── */

.faq {
  max-width: 920px;
  margin: 24px auto 0;
  border-top: 0.5px solid var(--rule);
}

.faq__item {
  border-bottom: 0.5px solid var(--rule);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 26px 4px;
  outline: none;
  transition: color 0.3s var(--ease);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ''; }

.faq__q-num {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--kanchana-deep);
  letter-spacing: 0.02em;
  line-height: 1;
}

.faq__q-text {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.faq__q-mark {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 22px;
  color: var(--kanchana-deep);
  line-height: 1;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  justify-self: end;
}

.faq__item[open] .faq__q-mark {
  transform: rotate(45deg);
  color: var(--kanchana);
}

.faq__item summary:hover .faq__q-text { color: var(--kanchana-deep); }
.faq__item summary:hover .faq__q-mark { color: var(--kanchana); }

.faq__a {
  padding: 0 4px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.faq__a::before { content: ''; }    /* matches .faq__q-num column */
.faq__a::after  { content: ''; }    /* matches .faq__q-mark column */

.faq__a p {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-78);
  max-width: 64ch;
}

.faq__a p em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}


/* ───────────── 17. CONTACT MODAL ─────────────────────────────────────────── */

/* Modal — the WHOLE popup scrolls. Background page is locked via JS. */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 107, 0.4) transparent;
}

.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal::-webkit-scrollbar { width: 8px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 107, 0.4);
  border-radius: 0;
}
.modal::-webkit-scrollbar-thumb:hover { background: var(--kanchana); }

/* Backdrop — fixed to viewport, doesn't scroll with modal contents */
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 56, 0.86);
  cursor: pointer;
  z-index: 0;
}

/* Close button — fixed to viewport top-right, always visible during scroll */
.modal__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: 0.5px solid var(--rule);
  background: var(--moti);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.modal__close:hover {
  color: var(--kanchana-deep);
  border-color: var(--kanchana-deep);
}

.modal__close svg { width: 14px; height: 14px; }

/* Panel — plain box. Vertically centers via margin:auto when content fits,
   sticks to top of modal padding when taller (modal scrolls). */
.modal__panel {
  position: relative;
  background: var(--moti);
  max-width: 680px;
  width: 100%;
  margin: auto 0;
  padding: 38px 48px 32px;
  border: 0.5px solid var(--rule);
  transform: translateY(24px);
  transition: transform 0.5s var(--ease);
  z-index: 1;
}

.modal[aria-hidden="false"] .modal__panel { transform: translateY(0); }

/* Head */
.modal__head {
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 0.5px solid var(--rule);
}

.modal__eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
  margin-bottom: 14px;
}

.modal__title {
  margin: 0 0 10px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.modal__sub {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-78);
}

.modal__sub strong {
  font-weight: 500;
  color: var(--ink);
}

/* Form — 2-col grid */
.modal__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

/* Section eyebrow — spans both cols */
.field-section {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 0.5px solid var(--rule);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--kanchana-deep);
}

.field-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.field-section__mark { font-size: 10px; color: var(--kanchana); line-height: 1; }
.field-section__text { line-height: 1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0;
}

.field__opt {
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: none;
  color: var(--mist);
  font-style: italic;
  font-size: 11.5px;
  margin-left: 4px;
}

.field__hint {
  margin-top: 4px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 12.5px;
  color: var(--mist);
  letter-spacing: 0;
  line-height: 1.45;
}

/* Framed inputs */
.field input,
.field textarea {
  width: 100%;
  border: 0.5px solid var(--rule);
  background: var(--paper-white);
  padding: 12px 14px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--mist);
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
}

.field input:hover,
.field textarea:hover { border-color: rgba(168, 136, 77, 0.55); }

.field input:focus,
.field textarea:focus {
  border-color: var(--kanchana-deep);
  background: var(--moti-soft);
}

.field input:invalid:not(:placeholder-shown):not(:focus) { border-color: #B85040; }

.field textarea {
  resize: vertical;
  min-height: 64px;
  line-height: 1.55;
}

/* Submit */
.cta--submit {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.cta--submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal__note {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-78);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal__mark {
  color: var(--kanchana-deep);
  font-style: normal;
  font-size: 11px;
  flex: 0 0 auto;
  line-height: 1.65;
}

/* Success state */
.modal__success {
  text-align: center;
  padding: 24px 0 8px;
}

.modal__success-mark {
  display: block;
  color: var(--kanchana-deep);
  font-size: 22px;
  margin-bottom: 22px;
}

.modal__success-title {
  margin: 0 0 12px;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.008em;
}

.modal__success-text {
  margin: 0 0 28px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-78);
}

.cta--close-success { display: inline-flex; }

/* Body scroll lock — applied via JS using position:fixed on body.
   The .modal-open class is set in tandem for any extra styling. */
body.modal-open {
  overflow: hidden;
  /* Note: position:fixed + top:-<scrollY>px is applied inline via JS */
}


/* ───────────── 18. ACCESSIBILITY / MOTION ───────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track,
  .zmarquee__track,
  .hero__stamp-dot,
  .hero__chart { animation: none; }
}

:focus-visible {
  outline: 0.5px solid var(--kanchana);
  outline-offset: 3px;
}
