/* ============================================================================
   Master Vijay Ram — shared stylesheet
   Warm cream + crimson "Vedic Sage" theme (matches reference design)
   ========================================================================== */

/* ---- Design tokens -------------------------------------------------------- */
:root {
  --cream:      #FCF4F1;   /* page background */
  --cream-2:    #FBEAE4;   /* alternate section bg */
  --blush:      #F7D9D0;   /* soft pink glow */
  --white:      #FFFFFF;

  --ink:        #2A1B18;   /* primary text (warm near-black) */
  --ink-2:      #6E5C56;   /* secondary text */
  --ink-3:      #9A8A84;   /* muted */

  --red:        #C01228;   /* primary crimson (headings/accents) */
  --red-2:      #DA2235;   /* brighter */
  --red-deep:   #8C0A1B;   /* gradient end / deep */
  --red-soft:   rgba(192, 18, 40, 0.08);
  --gold:       #C7912F;   /* brass accent (sparing) */

  --dark:       #190B0B;   /* top bar / marquee / dark cards */
  --dark-2:     #2A1111;
  --maroon:     #3A0E14;   /* divine-promise card */

  --line:       rgba(42, 27, 24, 0.10);
  --line-2:     rgba(42, 27, 24, 0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --deva:  "Noto Sans Devanagari", var(--sans);

  --maxw: 1240px;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow-sm:   0 8px 24px -14px rgba(140, 20, 32, 0.30);
  --shadow:      0 26px 60px -30px rgba(120, 18, 30, 0.34);
  --shadow-card: 0 22px 50px -26px rgba(150, 35, 45, 0.26);
  --glow-pink:   0 0 0 1px rgba(218, 34, 53, 0.06), 0 30px 60px -34px rgba(218, 34, 53, 0.35);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.2s; --t: 0.38s;

  --topbar-h: 42px;
  --header-h: 84px;
}

/* ---- Reset / base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.06rem);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(1100px 600px at 88% -8%, rgba(218, 34, 53, 0.10), transparent 60%),
    radial-gradient(900px 700px at -8% 4%, rgba(218, 34, 53, 0.07), transparent 55%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 600; line-height: 1.08;
  color: var(--ink); margin: 0 0 0.5em; letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.6rem, 1.7rem + 4vw, 5rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem); }
p  { margin: 0 0 1.1em; }
.accent { color: var(--red); }
::selection { background: var(--red); color: #fff; }

/* ---- A11y ----------------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--red-2); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 14px; top: -120px; z-index: 2000; background: var(--red); color: #fff;
  font-weight: 600; padding: 0.6em 1.1em; border-radius: var(--radius-sm); transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- Layout helpers ------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--cream2 { background: var(--cream-2); }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--red); margin: 0 0 1rem; display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow svg { width: 1em; height: 1em; }
.eyebrow--pill {
  background: #fff; padding: 0.55em 1.1em; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.eyebrow--center { justify-content: center; }
.section-head { max-width: 50rem; margin: 0 auto clamp(2.2rem, 1.6rem + 1.6vw, 3.4rem); }
.section-head p { color: var(--ink-2); font-size: 1.08rem; }
.lede { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-2); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 700; font-size: 0.94rem; line-height: 1;
  padding: 0.95em 1.6em; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: linear-gradient(135deg, var(--red-2), var(--red-deep)); color: #fff; box-shadow: 0 14px 30px -12px rgba(192, 18, 40, 0.55); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(192, 18, 40, 0.7); }
.btn-wa { background: linear-gradient(135deg, #2EC36B, #128C51); color: #fff; box-shadow: 0 14px 30px -12px rgba(18, 140, 81, 0.5); }
.btn-wa:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(18, 140, 81, 0.65); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); border-color: var(--line); }
.btn-light:hover { color: var(--red); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--red); border-color: rgba(192,18,40,0.35); }
.btn-outline:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.btn-sm { font-size: 0.84rem; padding: 0.7em 1.2em; }
.btn-wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row--center { justify-content: center; }

/* ---- Top announcement bar ------------------------------------------------- */
.topbar {
  background: var(--dark); color: #f3e7e7; font-size: 0.8rem; height: var(--topbar-h);
  display: flex; align-items: center; position: relative; z-index: 60;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(100% - 2.5rem, var(--maxw)); }
.topbar-list { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.topbar-list li { display: inline-flex; align-items: center; gap: 0.45em; white-space: nowrap; color: #e9d9d9; }
.topbar-list svg { width: 0.95em; height: 0.95em; color: var(--red-2); }
.topbar-phone { display: inline-flex; align-items: center; gap: 0.45em; font-weight: 700; color: #fff; }
.topbar-phone svg { width: 1em; height: 1em; color: var(--red-2); }
.topbar-phone:hover { color: var(--red-2); }

/* ---- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(252, 244, 241, 0.92);
  backdrop-filter: blur(12px) saturate(140%); border-bottom: 1px solid transparent;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.94); box-shadow: 0 10px 40px -26px rgba(120,18,30,0.4); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand__medallion {
  width: 56px; height: 56px; border-radius: 50%; flex: none; overflow: hidden;
  border: 2px solid var(--red); padding: 2px; background: #fff; box-shadow: 0 0 0 3px rgba(192,18,40,0.10);
}
.brand__medallion img { width: 100%; height: 100%; object-fit: contain; object-position: center; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__eyebrow { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__name b { color: var(--red); font-weight: 600; }
.brand__tag { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--ink-3); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav.mobile { display: none; }
.nav-link {
  position: relative; color: var(--ink); font-weight: 600; font-size: 0.95rem; padding: 0.5em 0.95em; border-radius: 10px;
}
.nav-link::after { content: ""; position: absolute; left: 0.95em; right: 0.95em; bottom: 0.18em; height: 2px; background: var(--red); border-radius: 2px; transform: scaleX(0); transition: transform var(--t) var(--ease); }
.nav-link:hover { color: var(--red); }
.nav-link[aria-current="page"] { color: var(--red); }
.nav-link[aria-current="page"]::after, .nav-link:hover::after { transform: scaleX(1); }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 0.35em; background: none; border: 0; font: inherit; font-weight: 600; color: var(--ink); cursor: pointer; padding: 0.5em 0.95em; border-radius: 10px; }
.dropdown-toggle svg { width: 0.8em; height: 0.8em; transition: transform var(--t) var(--ease); }
.has-dropdown[aria-expanded="true"] .dropdown-toggle { color: var(--red); }
.has-dropdown[aria-expanded="true"] .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 460px; max-width: 80vw; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 0.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t); z-index: 1100;
}
.has-dropdown[aria-expanded="true"] .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 0.6em; padding: 0.6em 0.7em; border-radius: 10px; color: var(--ink); font-size: 0.9rem; font-weight: 500; }
.dropdown a:hover { background: var(--red-soft); color: var(--red); }
.dropdown a svg { width: 1.05em; height: 1.05em; color: var(--red); flex: none; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-2); background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; padding: 0; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--red); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease); }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.menu-backdrop { position: fixed; inset: 0; background: rgba(25, 11, 11, 0.45); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t); z-index: 1050; }
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; }

/* ---- Particles (red sparkles) -------------------------------------------- */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--red-2); opacity: 0.25; animation: twinkle 4.5s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.1; transform: scale(0.8); } 50% { opacity: 0.55; transform: scale(1.15); } }

/* ---- HERO ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 22% 40%, rgba(218,34,53,0.10), transparent 70%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }

.hero__eyebrow { transition: opacity var(--t) var(--ease); }
.hero h1 { margin: 0.2em 0 0.3em; color: var(--red); font-weight: 600; }
.hero__sub { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); color: var(--ink-2); max-width: 32rem; margin-bottom: 1.5rem; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.pill { display: inline-flex; align-items: center; gap: 0.5em; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 0.55em 1em; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.pill svg { width: 1.05em; height: 1.05em; color: var(--red); }

.hero__trust { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.6rem; }
.avatars { display: inline-flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--cream); background: linear-gradient(135deg, var(--red-2), var(--red-deep)); margin-left: -10px; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.avatars span:first-child { margin-left: 0; }
.hero__trust p { margin: 0; font-size: 0.88rem; color: var(--ink-2); }
.hero__trust b { color: var(--ink); }

/* Hero image card */
.hero__card-wrap { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow-pink);
  aspect-ratio: 7 / 5; background: #2a1212;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--t) var(--ease); }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,4,4,0.45) 0%, transparent 30%, transparent 55%, rgba(10,4,4,0.85) 100%); }
.hero-badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; display: inline-flex; align-items: center; gap: 0.5em;
  background: rgba(15,7,7,0.75); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 0.5em 0.9em; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d36a; box-shadow: 0 0 8px #34d36a; }
.hero-symbols { position: absolute; top: 1rem; right: 1.1rem; z-index: 3; color: rgba(255,235,200,0.85); display: flex; gap: 0.6rem; align-items: center; }
.hero-symbols svg { width: 22px; height: 22px; }
.hero-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.2rem 1.3rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.hero-overlay .guarantee small { display: block; color: var(--red-2); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-overlay .guarantee strong { color: #fff; font-size: 0.95rem; font-weight: 700; }
.hero-overlay .reviews { text-align: right; color: #fff; }
.hero-overlay .reviews .stars { color: #ffc94d; letter-spacing: 0.05em; font-size: 0.85rem; }
.hero-overlay .reviews small { display: block; font-size: 0.72rem; color: #e7d4d4; }

/* Carousel controls */
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); color: var(--red); display: grid; place-items: center; cursor: pointer; transition: transform var(--t-fast) var(--ease), color var(--t-fast); }
.hero-arrow:hover { color: var(--red-deep); transform: translateY(-50%) scale(1.08); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow.prev { left: -10px; }
.hero-arrow.next { right: -10px; }
.hero-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; position: relative; z-index: 3; }
.hero-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(192,18,40,0.25); cursor: pointer; padding: 0; transition: width var(--t) var(--ease), background var(--t) var(--ease); }
.hero-dots button[aria-selected="true"] { width: 28px; background: var(--red); }

/* ---- Marquee -------------------------------------------------------------- */
.marquee { background: var(--dark); overflow: hidden; padding: 0.85rem 0; position: relative; }
.marquee__track { display: inline-flex; align-items: center; gap: 2.4rem; white-space: nowrap; will-change: transform; animation: marquee 38s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 0.6em; color: #f0e2e2; font-size: 0.86rem; font-weight: 600; }
.marquee__item .coin { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--red-2), var(--red-deep)); display: grid; place-items: center; flex: none; }
.marquee__item .coin svg { width: 12px; height: 12px; color: #fff; }
.marquee__item .plus { color: var(--red-2); margin-left: 2.4rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- About ---------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.8rem, 1rem + 4vw, 4rem); align-items: center; }
.about__media { position: relative; }
.about__media .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow-pink); border: 1px solid var(--line); }
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.exp-badge { position: absolute; top: -18px; left: -18px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 0.9rem 1.2rem; border: 1px solid var(--line); z-index: 2; }
.exp-badge b { font-family: var(--serif); color: var(--red); font-size: 2rem; line-height: 1; display: block; }
.exp-badge span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }
.about__body p { color: var(--ink-2); }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.6rem 0; }
.cred { display: flex; align-items: center; gap: 0.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem 1rem; box-shadow: var(--shadow-sm); }
.cred .ic { width: 42px; height: 42px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--red-2), var(--red-deep)); display: grid; place-items: center; color: #fff; }
.cred .ic svg { width: 20px; height: 20px; }
.cred b { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.cred span { font-size: 0.82rem; color: var(--ink-2); }

/* ---- Services ------------------------------------------------------------- */
.svc-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.4rem; margin-bottom: 1.4rem; }
.svc-featured__right { display: grid; grid-template-rows: 1fr auto; gap: 1.4rem; }

.feature-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); min-height: 300px; display: flex; }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,4,4,0.2), rgba(10,4,4,0.55) 60%, rgba(10,4,4,0.9)); }
.feature-card .fc-body { position: relative; z-index: 2; margin-top: auto; padding: 1.6rem; color: #fff; }
.feature-card .fc-eyebrow { color: var(--red-2); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; filter: brightness(1.6); }
.feature-card h3 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); margin: 0.2rem 0 0.4rem; }
.feature-card p { color: rgba(255,255,255,0.88); margin-bottom: 1rem; max-width: 28rem; }
.tag { position: absolute; z-index: 3; top: 1rem; left: 1rem; background: var(--red); color: #fff; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.45em 0.85em; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 0.4em; }
.tag svg { width: 0.9em; height: 0.9em; }
.fav { position: absolute; z-index: 3; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); display: grid; place-items: center; color: #fff; }
.fav svg { width: 18px; height: 18px; }

.promise-card { background: linear-gradient(150deg, var(--maroon), #1c0709); border-radius: var(--radius); padding: 1.6rem; color: #fff; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.promise-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 0%, rgba(218,34,53,0.25), transparent 60%); }
.promise-card .pc-eyebrow { position: relative; color: var(--red-2); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; filter: brightness(1.5); }
.promise-card h3 { position: relative; color: #fff; font-size: 1.6rem; margin: 0.3rem 0 1rem; }
.promise-card h3 .accent { color: var(--red-2); filter: brightness(1.4); }
.promise-stats { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.promise-stats div { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 0.9rem 0.5rem; text-align: center; }
.promise-stats b { display: block; font-family: var(--serif); color: var(--red-2); filter: brightness(1.4); font-size: 1.7rem; line-height: 1; }
.promise-stats span { font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: #e7d4d4; }

/* Service grid cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.svc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,4,4,0.85)); }
.svc-card__cat { position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: var(--red); display: grid; place-items: center; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.svc-card__cat svg { width: 17px; height: 17px; }
.svc-card__title { position: absolute; left: 1rem; right: 1rem; bottom: 0.8rem; z-index: 2; }
.svc-card__title small { display: block; color: var(--red-2); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; filter: brightness(1.7); }
.svc-card__title h3 { color: #fff; font-size: 1.3rem; margin: 0.1rem 0 0; }
.svc-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.svc-card__body p { color: var(--ink-2); margin: 0; font-size: 0.94rem; flex: 1; }
.svc-card__link { color: var(--red); font-weight: 700; font-size: 0.86rem; display: inline-flex; align-items: center; gap: 0.4em; }
.svc-card__link svg { width: 0.9em; height: 0.9em; transition: transform var(--t-fast) var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(3px); }

/* ---- Long-form content pages (SEO / AEO topic pages) --------------------- */
.article { max-width: 64rem; margin-inline: auto; }
.article h2 { margin-top: 1.7em; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 1.3em; font-size: 1.25rem; }
.article p { color: var(--ink); }
.article ul, .article ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.article li { margin-bottom: 0.45em; }
.article a:not(.btn) { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.article a:not(.btn):hover { color: var(--red-deep); }
.article strong { color: var(--ink); font-weight: 700; }

.answer-box { background: var(--red-soft); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; margin: 0 0 1.8rem; }
.answer-box .lbl { display: inline-flex; align-items: center; gap: 0.45em; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.answer-box .lbl svg { width: 1.1em; height: 1.1em; }
.answer-box p { margin: 0; font-size: 1.06rem; line-height: 1.65; }

.keyfacts { display: grid; gap: 0.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); margin: 0 0 1.2rem; list-style: none; }
.keyfacts li { display: flex; gap: 0.6em; align-items: flex-start; margin: 0; color: var(--ink); font-size: 0.96rem; }
.keyfacts li svg { width: 1.1em; height: 1.1em; color: var(--red); flex: none; margin-top: 0.25em; }

.ext-links { list-style: none; padding: 0; margin: 0.4rem 0 0; display: grid; gap: 0.5rem; }
.ext-links li { position: relative; padding-left: 1.4em; font-size: 0.92rem; }
.ext-links li::before { content: "↗"; position: absolute; left: 0; color: var(--red); }

/* ---- Keyword link clouds (multi-keyword SEO + internal linking) ---------- */
.kw-links { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; padding: 0; margin: 0; justify-content: center; }
.kw-links li { margin: 0; }
.kw-links a { display: inline-block; font-size: 0.83rem; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); padding: 0.45em 0.95em; border-radius: var(--radius-pill); transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); text-decoration: none; }
.kw-links a:hover { color: #fff; background: var(--red); border-color: var(--red); transform: translateY(-1px); }

.footer-pop { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; }
.footer-pop h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-2); filter: brightness(1.3); margin: 0 0 0.9rem; }
.footer-pop .pop { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; }
.footer-pop .pop a { color: #c3b1b1; font-size: 0.84rem; }
.footer-pop .pop a:hover { color: #fff; }

/* ---- Service category header --------------------------------------------- */
.cat-head { display: flex; align-items: center; gap: 1rem; margin: clamp(2.2rem, 1.5rem + 1.5vw, 3.2rem) 0 1.5rem; }
.cat-head:first-of-type { margin-top: 0; }
.cat-head h2 { margin: 0; font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); white-space: nowrap; }
.cat-head .num { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--red); background: var(--red-soft); border: 1px solid var(--line); padding: 0.3em 0.7em; border-radius: var(--radius-pill); }
.cat-head::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }

/* ---- "What it helps with" list (services page) ---------------------------- */
.helps { list-style: none; padding: 0; margin: 0 0 0.4rem; display: grid; gap: 0.4rem; }
.helps li { position: relative; padding-left: 1.5em; font-size: 0.9rem; color: var(--ink-2); }
.helps li::before { content: "✦"; position: absolute; left: 0; color: var(--red); font-size: 0.85em; }

/* ---- Process / steps ------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative; }
.step__num { font-family: var(--serif); font-size: 2.4rem; color: var(--red); opacity: 0.45; line-height: 1; margin-bottom: 0.3rem; }
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--ink-2); margin: 0; font-size: 0.94rem; }

/* ---- Testimonials --------------------------------------------------------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.tcard .stars { color: #e8a93a; letter-spacing: 0.12em; margin-bottom: 0.7rem; }
.tcard blockquote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--ink); margin: 0 0 1rem; }
.tcard .by { display: flex; align-items: center; gap: 0.7rem; }
.tcard .by .ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--red-2), var(--red-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; flex: none; }
.tcard .by b { font-size: 0.92rem; color: var(--ink); display: block; }
.tcard .by span { font-size: 0.8rem; color: var(--ink-3); }

/* ---- FAQ ------------------------------------------------------------------ */
.faq { max-width: 52rem; margin-inline: auto; display: grid; gap: 0.85rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .icon::before, .faq__q .icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--red); transform: translate(-50%,-50%); transition: transform var(--t) var(--ease); }
.faq__q .icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__q .icon::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { padding: 0 1.3rem 1.2rem; color: var(--ink-2); }
.faq__a p { margin: 0; }

/* ---- Page banner / breadcrumb -------------------------------------------- */
.page-banner { position: relative; overflow: hidden; padding-block: clamp(3rem, 2rem + 4vw, 5rem); text-align: center; }
.page-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% -10%, rgba(218,34,53,0.12), transparent 70%); }
.page-banner > .container { position: relative; z-index: 1; }
.page-banner p { max-width: 42rem; margin-inline: auto; color: var(--ink-2); }
.breadcrumb { font-size: 0.82rem; color: var(--ink-3); margin-top: 1.1rem; }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { margin: 0 0.5em; }
.breadcrumb span[aria-current] { color: var(--red); font-weight: 600; }

/* ---- Contact -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: start; }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-method:last-of-type { border-bottom: 0; }
.contact-method .ci { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--red-2), var(--red-deep)); color: #fff; }
.contact-method .ci svg { width: 22px; height: 22px; }
.contact-method h3 { margin: 0 0 0.15rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.contact-method a, .contact-method p { font-size: 1.05rem; color: var(--ink); margin: 0; }
.contact-method a:hover { color: var(--red); }
/* Allow grid/flex children to shrink and long values (emails) to wrap on narrow screens */
.contact-grid > * { min-width: 0; }
.contact-method, .contact-method > div { min-width: 0; }
.contact-method a, .contact-method p { overflow-wrap: anywhere; }
.note { font-size: 0.86rem; color: var(--ink-2); background: var(--red-soft); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; margin-top: 1.4rem; }

.card-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); box-shadow: var(--shadow-card); }
.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink-2); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 0.8em 1em; width: 100%; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,18,40,0.14); background: #fff; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23C01228' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.6em; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--red); }
.field__error { font-size: 0.78rem; color: var(--red); min-height: 1em; }
.form-success { display: none; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: rgba(46,195,107,0.12); border: 1px solid rgba(18,140,81,0.4); color: var(--ink); margin-bottom: 0.5rem; }
.form-success.show { display: block; }
.form-success strong { color: var(--red); }

/* ---- CTA band ------------------------------------------------------------- */
.cta-band .panel { position: relative; overflow: hidden; text-align: center; background: linear-gradient(140deg, var(--red-2), var(--red-deep)); color: #fff; border-radius: calc(var(--radius) + 6px); padding: clamp(2.4rem, 1.8rem + 3vw, 4.4rem) clamp(1.5rem, 1rem + 3vw, 4rem); box-shadow: var(--shadow); }
.cta-band .panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(255,255,255,0.16), transparent 60%); }
.cta-band .panel > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 40rem; margin-inline: auto; }
.cta-band .btn-light { color: var(--red); }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-outline:hover { background: #fff; color: var(--red); }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--dark); color: #d9c9c9; margin-top: clamp(3rem, 2rem + 3vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(2.6rem, 2rem + 2vw, 4rem); }
.footer-grid h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-2); filter: brightness(1.3); margin-bottom: 1.1rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: var(--red-2); filter: brightness(1.3); }
.footer-brand .brand__eyebrow { color: var(--red-2); filter: brightness(1.3); }
.footer-brand .brand__tag { color: #b8a4a4; }
.footer-brand p { color: #c3b1b1; font-size: 0.92rem; max-width: 30ch; margin-top: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: #c9b8b8; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
/* Let footer columns shrink so long content wraps instead of widening the page on small phones */
.footer-grid > * { min-width: 0; }
.footer-links a, .footer-col p, .footer-brand p { overflow-wrap: anywhere; }
.footer-col p { color: #c3b1b1; font-size: 0.92rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.14); color: #e0cfcf; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.82rem; color: #b8a4a4; }
.disclaimer { font-size: 0.76rem; color: #a18d8d; line-height: 1.55; max-width: 72ch; margin-top: 0.4rem; }

/* ---- Floating buttons ----------------------------------------------------- */
.float-btns { position: fixed; inset: auto 0 0 0; z-index: 900; pointer-events: none; }
.fab { position: fixed; bottom: clamp(14px, 3vw, 26px); width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; pointer-events: auto; transition: transform var(--t) var(--ease); }
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: scale(1.08); color: #fff; }
.fab.call { left: clamp(14px, 3vw, 26px); background: linear-gradient(145deg, var(--red-2), var(--red-deep)); box-shadow: 0 14px 34px -10px rgba(192,18,40,0.6); }
.fab.wa { right: clamp(14px, 3vw, 26px); background: linear-gradient(145deg, #2EC36B, #128C51); box-shadow: 0 14px 34px -10px rgba(18,140,81,0.6); }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: ring 2.6s var(--ease) infinite; }
.fab.call::after { box-shadow: 0 0 0 0 rgba(218,34,53,0.5); }
.fab.wa::after { box-shadow: 0 0 0 0 rgba(46,195,107,0.5); }
@keyframes ring { 70% { box-shadow: 0 0 0 16px rgba(0,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }

/* ---- Reunion-story testimonials ------------------------------------------ */
.stories { display: grid; gap: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 1rem + 3vw, 3.5rem); align-items: center; }
.story--rev .story__media { order: 2; }
.story__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow-pink); aspect-ratio: 5 / 4; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__badge { position: absolute; top: 1rem; left: 1rem; background: rgba(15,7,7,0.74); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; padding: 0.5em 0.95em; border-radius: var(--radius-pill); backdrop-filter: blur(6px); display: inline-flex; align-items: center; gap: 0.4em; }
.story__badge svg { width: 0.95em; height: 0.95em; color: var(--red-2); }
.story__quote .stars { color: #e8a93a; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.story__quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem); line-height: 1.4; color: var(--ink); margin: 0 0 1.1rem; }
.story__quote .who { font-weight: 700; color: var(--ink); margin-bottom: 1.1rem; }
.story__quote .who span { color: var(--ink-3); font-weight: 500; }

/* ---- Stat strip ----------------------------------------------------------- */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.statbar .s { background: linear-gradient(160deg, #fff, var(--cream-2)); padding: 1.8rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.statbar .s .ic { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red-2), var(--red-deep)); display: grid; place-items: center; color: #fff; }
.statbar .s .ic svg { width: 22px; height: 22px; }
.statbar .s b { font-family: var(--serif); color: var(--red); font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.5rem); line-height: 1; }
.statbar .s span { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }

/* ---- Dark section + Sadhana cards ---------------------------------------- */
.section--dark { background: var(--dark); color: #e8d9d9; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-head p { color: #c9b8b8; }
.section--dark .eyebrow { color: var(--red-2); filter: brightness(1.35); }
.sadhana-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.sadhana-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px; display: flex; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 24px 50px -28px #000; }
.sadhana-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: transform 0.6s var(--ease), opacity var(--t) var(--ease); }
.sadhana-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,8,8,0.35), rgba(20,8,8,0.94)); }
.sadhana-card:hover img { transform: scale(1.06); opacity: 0.65; }
.sadhana-card .body { position: relative; z-index: 2; margin-top: auto; padding: 1.5rem; }
.sadhana-card .ic { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--red-2), var(--red-deep)); display: grid; place-items: center; color: #fff; margin-bottom: 0.9rem; }
.sadhana-card .ic svg { width: 22px; height: 22px; }
.sadhana-card h3 { color: #fff; margin: 0 0 0.3rem; font-size: 1.35rem; }
.sadhana-card p { color: rgba(255,255,255,0.82); margin: 0; font-size: 0.92rem; }

/* ---- Speak / form split --------------------------------------------------- */
.speak__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: stretch; }
.speak__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow-pink); min-height: 440px; }
.speak__media img { width: 100%; height: 100%; object-fit: cover; }
.speak__media .tagline { position: absolute; left: 1.2rem; bottom: 1.2rem; right: 1.2rem; color: #fff; font-family: var(--serif); font-style: italic; font-size: 1.3rem; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.speak__form { background: linear-gradient(160deg, var(--maroon), #190709); border-radius: var(--radius); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); color: #fff; box-shadow: var(--shadow-card); }
.speak__form .eyebrow { color: var(--red-2); filter: brightness(1.4); }
.speak__form h2 { color: #fff; }
.speak__form p.muted { color: #d8c2c2; }
.speak__form .field label { color: #e6d2d2; }
.speak__form .field input, .speak__form .field select, .speak__form .field textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: #fff; }
.speak__form .field input::placeholder, .speak__form .field textarea::placeholder { color: rgba(255,255,255,0.5); }
.speak__form .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23ffffff' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); }
.speak__form .field input:focus, .speak__form .field select:focus, .speak__form .field textarea:focus { background: rgba(255,255,255,0.1); border-color: var(--red-2); box-shadow: 0 0 0 3px rgba(218,34,53,0.25); }
.speak__form .field select option { color: #2a1b18; }

/* ---- Review cards (Voices of Gratitude) ----------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.review-card .rc-top { display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1.1rem; background: linear-gradient(135deg, #20c065, #0e8a4f); color: #fff; }
.review-card .rc-top .ava { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.25); display: grid; place-items: center; font-weight: 700; flex: none; }
.review-card .rc-top b { display: block; font-size: 0.92rem; }
.review-card .rc-top span { font-size: 0.72rem; opacity: 0.9; }
.review-card .rc-top .wa { margin-left: auto; opacity: 0.9; }
.review-card .rc-top .wa svg { width: 22px; height: 22px; }
.review-card .rc-body { padding: 1.2rem; }
.review-card .rc-body .stars { color: #e8a93a; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.review-card .rc-body p { color: var(--ink-2); font-size: 0.95rem; margin: 0 0 0.7rem; }
.review-card .rc-body .date { font-size: 0.74rem; color: var(--ink-3); display: flex; align-items: center; gap: 0.4em; }
.review-card .rc-body .date svg { width: 0.95em; height: 0.95em; color: #20c065; }

/* ---- FAQ split (with side image) ----------------------------------------- */
.faq-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: start; }
.faq-split .faq { margin: 0; max-width: none; }
.faq-aside { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow-pink); }
.faq-aside img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.faq-aside .ask { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; background: rgba(255,255,255,0.96); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; text-align: center; box-shadow: var(--shadow); }
.faq-aside .ask h3 { font-size: 1.2rem; margin: 0 0 0.6rem; }
.faq-aside .ask .btn { width: 100%; }

/* ---- Scroll-reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card-wrap { order: -1; }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .topbar-list li:nth-child(n+3) { display: none; }
}
@media (max-width: 1000px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn.wa-keep { display: inline-flex; }
  /* Closed drawer is display:none so it never sits off-canvas and creates horizontal scroll.
     Open state slides in via keyframe (preserves the animation without breaking page width or the sticky header). */
  .nav.mobile { display: none; flex-direction: column; align-items: stretch; gap: 0.1rem; position: fixed; top: 0; right: 0; bottom: 0; width: min(84vw, 350px);
    background: linear-gradient(180deg, #fff, var(--cream)); z-index: 1100; padding: 1.5rem 1.4rem 2rem; border-left: 1px solid var(--line); box-shadow: -30px 0 60px -30px rgba(0,0,0,0.4); overflow-y: auto; }
  body.menu-open .nav.mobile { display: flex; animation: drawer-in var(--t) var(--ease); }
  @keyframes drawer-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav.mobile .nav-link, .nav.mobile .dropdown-toggle { font-size: 1.1rem; padding: 0.85em 0.4em; border-bottom: 1px solid var(--line); border-radius: 0; width: 100%; justify-content: space-between; }
  .nav.mobile .nav-link::after { display: none; }
  .nav.mobile .mobile-cta { display: grid; gap: 0.6rem; margin-top: 1.4rem; }
  .nav.mobile .dropdown { position: static; transform: none; width: auto; max-width: none; box-shadow: none; border: 0; opacity: 1; visibility: visible; display: grid; grid-template-columns: 1fr; padding: 0.2rem 0 0.6rem; }
  .nav.mobile .has-dropdown:not([aria-expanded="true"]) .dropdown { display: none; }
}
@media (max-width: 620px) {
  .svc-grid, .steps, .cred-grid, .footer-grid { grid-template-columns: 1fr; }
  .promise-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-arrow { display: none; }
  .btn-row .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar-phone { font-size: 0.8rem; }
  .topbar-list { display: none; }
  .topbar .container { justify-content: center; }
  /* Category headings can't stay on one line on the narrowest phones — allow wrapping */
  .cat-head { flex-wrap: wrap; }
  .cat-head h2 { white-space: normal; }
}

/* ---- Reduced motion ------------------------------------------------------- */
/* ---- Mega menu (categorised services + locations) ------------------------ */
.dropdown.mega { display: grid; grid-template-columns: repeat(3, minmax(190px, 230px)); width: max-content; max-width: calc(100vw - 2rem); gap: 0.1rem 1.6rem; padding: 1.4rem 1.6rem; text-align: left; }
.has-dropdown--right .dropdown { left: auto; right: 0; transform: translateX(0) translateY(8px); }
.has-dropdown--right[aria-expanded="true"] .dropdown { transform: translateX(0) translateY(0); }
.dropdown.mega .mega-col { display: flex; flex-direction: column; min-width: 0; }
.dropdown.mega h4 { font-family: var(--sans); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin: 0.8rem 0.7em 0.3rem; }
.dropdown.mega .mega-col > h4:first-child { margin-top: 0; }
.dropdown.mega a { font-size: 0.85rem; padding: 0.36em 0.7em; }
.dropdown.mega .mega-all { color: var(--red); font-weight: 700; margin-top: 0.15rem; }
@media (max-width: 1000px) {
  .nav.mobile .dropdown.mega { grid-template-columns: 1fr; width: auto; max-width: none; padding: 0.2rem 0 0.6rem; }
  .nav.mobile .dropdown.mega .mega-col { min-width: 0; max-width: none; }
  .nav.mobile .dropdown.mega h4 { margin: 0.8rem 0 0.2rem; }
  .nav.mobile .dropdown.mega a { font-size: 1rem; padding: 0.55em 0.4em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .particle { animation: none !important; }
  .fab::after { animation: none !important; }
}
