/* ==========================================================================
   Srijoni Foundation for Women & Social Equity
   Design system + component styles
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography
   5.  Buttons & badges
   6.  Header / navigation
   7.  Hero
   8.  Cards & pillars
   9.  Stats
   10. Testimonial carousel
   11. Accordion
   12. Split sections
   13. Team grid
   14. Footprint map
   15. Forms
   16. Footer & ticker
   17. Floating WhatsApp widget
   18. Utilities, motion & print
   ========================================================================== */

/* 1. TOKENS ============================================================== */
:root {
  /* Brand ---------------------------------------------------------------- */
  --teal-900: #053e3a;
  --teal-800: #07514c;
  --teal: #0a5c56;
  --teal-600: #107a72;
  --teal-400: #3f9a92;
  --teal-100: #dfeceb;
  --teal-050: #f0f7f6;

  --terracotta-700: #a94b31;
  --terracotta-600: #bd583c;
  --terracotta: #d46a4a;
  --terracotta-300: #e9a68f;
  --terracotta-100: #fae8e0;

  --sand: #f7f4eb;
  --sand-200: #efe9d9;
  --sand-300: #e3dbc6;

  --charcoal: #1e262f;
  --charcoal-80: #414a55;
  --charcoal-60: #626b76;
  --charcoal-40: #929aa3;
  --line: #dfd9c9;

  --white: #ffffff;
  --success: #1f8a4c;
  --whatsapp: #25d366;

  /* Type ----------------------------------------------------------------- */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-bangla: "Noto Sans Bengali", var(--font-body);

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1: clamp(1.18rem, 1.1rem + 0.36vw, 1.4rem);
  --step-2: clamp(1.42rem, 1.28rem + 0.66vw, 1.85rem);
  --step-3: clamp(1.72rem, 1.48rem + 1.1vw, 2.45rem);
  --step-4: clamp(2.05rem, 1.66rem + 1.8vw, 3.2rem);
  --step-5: clamp(2.45rem, 1.8rem + 2.9vw, 4.2rem);

  /* Space ---------------------------------------------------------------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: clamp(3.5rem, 2.2rem + 5vw, 7rem);

  /* Shape & depth -------------------------------------------------------- */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(30, 38, 47, 0.06), 0 2px 6px rgba(30, 38, 47, 0.05);
  --shadow: 0 4px 10px rgba(30, 38, 47, 0.07), 0 14px 34px rgba(30, 38, 47, 0.08);
  --shadow-lg: 0 10px 24px rgba(30, 38, 47, 0.1), 0 30px 60px rgba(10, 92, 86, 0.13);
  --ring: 0 0 0 3px rgba(212, 106, 74, 0.45);

  --container: 1180px;
  --container-narrow: 780px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* Several components set an explicit `display`, which would otherwise beat the
   UA's [hidden] rule. main.js hides the trust badge and participant counter by
   setting `hidden` when no real value is configured — that must actually win. */
[hidden] { display: none !important; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-600); }

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

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

::selection { background: var(--terracotta-100); color: var(--charcoal); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--white); }

/* 3. LAYOUT PRIMITIVES =================================================== */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2.5rem, var(--container-narrow)); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--teal-deep {
  background: linear-gradient(155deg, var(--teal-900), var(--teal) 60%, var(--teal-800));
  color: var(--white);
}
.section--teal h1,
.section--teal h2,
.section--teal h3,
.section--teal-deep h1,
.section--teal-deep h2,
.section--teal-deep h3 { color: var(--white); }
.section--teal a,
.section--teal-deep a { color: var(--terracotta-300); }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }

.section-head {
  max-width: 62ch;
  margin-bottom: var(--sp-7);
}
.section-head--center { margin-inline: auto; text-align: center; }

/* 4. TYPOGRAPHY ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--teal-900);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  flex: none;
}
.section--teal .eyebrow,
.section--teal-deep .eyebrow { color: var(--terracotta-300); }
.section--teal .eyebrow::before,
.section--teal-deep .eyebrow::before { background: var(--terracotta-300); }
.section-head--center .eyebrow::before { display: none; }

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--charcoal-80);
}
.section--teal .lead,
.section--teal-deep .lead { color: rgba(255, 255, 255, 0.86); }

.muted { color: var(--charcoal-60); }
.bangla { font-family: var(--font-bangla); }

blockquote { margin: 0; }

/* 5. BUTTONS & BADGES ==================================================== */
.btn {
  --btn-bg: var(--terracotta);
  --btn-fg: var(--white);
  --btn-bd: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--terracotta); --btn-bd: var(--terracotta); }
.btn--primary:hover { --btn-bg: var(--terracotta-600); --btn-bd: var(--terracotta-600); }
.btn--teal { --btn-bg: var(--teal); --btn-bd: var(--teal); }
.btn--teal:hover { --btn-bg: var(--teal-800); --btn-bd: var(--teal-800); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--teal); --btn-bd: var(--teal); }
.btn--ghost:hover { --btn-bg: var(--teal); --btn-fg: var(--white); }
.btn--on-dark { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: rgba(255, 255, 255, 0.65); }
.btn--on-dark:hover { --btn-bg: var(--white); --btn-fg: var(--teal-900); --btn-bd: var(--white); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: var(--step-1); }
.btn[disabled],
.btn[aria-busy="true"] { opacity: 0.62; pointer-events: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--teal-100);
  color: var(--teal-900);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--verified {
  background: #e6f4ea;
  color: #14612f;
  border: 1px solid #b7e0c4;
  padding: 0.6rem 1.1rem;
}
.badge--verified svg { flex: none; }
.badge--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--charcoal-80);
}

/* 6. HEADER / NAVIGATION ================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 235, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px rgba(30, 38, 47, 0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--teal-900);
  flex: none;
}
.brand:hover { color: var(--teal-900); }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s var(--ease), background-color 0.16s var(--ease);
}
.nav__link:hover { color: var(--teal); background: var(--teal-050); }
.nav__link[aria-current="page"] { color: var(--teal); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.nav__item { position: relative; }
.nav__item > .nav__link[aria-current="page"] { position: relative; }

button.nav__link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav__caret { transition: transform 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.nav__item.is-open .nav__dropdown,
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.nav__dropdown a:hover { background: var(--teal-050); color: var(--teal); }
.nav__dropdown strong { display: block; font-weight: 600; }
.nav__dropdown span { display: block; font-size: 0.82rem; color: var(--charcoal-60); }

.nav__cta { margin-left: 0.5rem; padding: 0.7rem 1.35rem; }

/* Six primary links plus a CTA is a tight fit just above the drawer breakpoint. */
@media (min-width: 961px) and (max-width: 1150px) {
  .nav__link { padding-inline: 0.55rem; font-size: 0.92rem; }
  .nav__cta { margin-left: 0.35rem; padding: 0.65rem 1.05rem; font-size: 0.92rem; }
  .brand__sub { display: none; }
  .brand__mark { width: 38px; height: 38px; }
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.16s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: block;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: var(--sp-4) 1.25rem var(--sp-6);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--sand-200);
    border-radius: 0;
  }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__item { position: static; }
  .nav__toggle { width: 100%; justify-content: space-between; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }
  .nav__item.is-open .nav__dropdown { display: block; }
  .nav__cta { margin: var(--sp-5) 0 0; width: 100%; }
}

/* 7. HERO ================================================================ */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(92vh, 820px);
  padding-block: var(--sp-9) var(--sp-8);
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.12) contrast(1.06);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(5, 62, 58, 0.93) 0%,
      rgba(6, 72, 67, 0.86) 28%,
      rgba(7, 81, 76, 0.68) 44%,
      rgba(9, 87, 81, 0.4) 57%,
      rgba(10, 92, 86, 0.18) 70%,
      rgba(10, 92, 86, 0.06) 84%,
      rgba(10, 92, 86, 0.02) 100%),
    linear-gradient(to top, rgba(5, 62, 58, 0.5), rgba(5, 62, 58, 0.06) 34%, transparent 55%);
}
/* On narrow screens the crop puts the subjects behind the copy, so the wash
   has to be more even to keep the headline legible. */
@media (max-width: 780px) {
  .hero__media img { object-position: 72% center; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 62, 58, 0.9) 0%, rgba(7, 81, 76, 0.82) 45%, rgba(5, 62, 58, 0.88) 100%);
  }
}
.hero__inner { max-width: 44rem; }
.hero h1 { color: var(--white); margin-bottom: var(--sp-5); }
.hero__sub {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}
.hero__eyebrow { color: var(--terracotta-300); }
.hero__eyebrow::before { background: var(--terracotta-300); }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.78);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta svg { flex: none; color: var(--terracotta-300); }

.page-hero {
  position: relative;
  padding-block: calc(var(--sp-8) + 1rem) var(--sp-8);
  background: linear-gradient(150deg, var(--teal-900), var(--teal) 70%);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -40%;
  width: 52vw;
  height: 130%;
  background: radial-gradient(circle at center, rgba(212, 106, 74, 0.32), transparent 62%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lead { max-width: 58ch; color: rgba(255, 255, 255, 0.87); }
.page-hero__inner { position: relative; }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.5; }

/* 8. CARDS & PILLARS ===================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card--flat { box-shadow: none; }
.card--sand { background: var(--sand); }

.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--teal-100);
  color: inherit;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-050);
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--sp-2);
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.pillar__icon svg { display: block; }
.pillar:hover .pillar__icon { background: var(--teal); color: var(--white); }
.pillar h3 { font-size: var(--step-1); margin-bottom: 0; }
.pillar p { color: var(--charcoal-60); font-size: 0.97rem; }
.pillar__link {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pillar:hover .pillar__link { color: var(--terracotta-600); }
.pillar:hover .pillar__link .arrow { transform: translateX(4px); }
.arrow { transition: transform 0.22s var(--ease); }

.mission-card {
  background: var(--white);
  border-left: 5px solid var(--terracotta);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2.4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.mission-card p {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.45;
  color: var(--teal-900);
}

/* 9. STATS =============================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--teal);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem) var(--sp-5);
  text-align: center;
}
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat__label {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.stats--light { background: var(--line); }
.stats--light .stat { background: var(--white); }
.stats--light .stat__value { color: var(--teal); }
.stats--light .stat__label { color: var(--charcoal-60); }

/* 10. TESTIMONIAL CAROUSEL =============================================== */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2px;
}
.quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.2rem + 2.6vw, 3rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--terracotta-300);
  display: block;
  margin-bottom: var(--sp-3);
}
.quote__text {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.5;
  color: var(--teal-900);
  margin-bottom: var(--sp-5);
}
.quote__who { display: flex; align-items: center; gap: var(--sp-4); }
.quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}
.quote__name { font-weight: 600; display: block; }
.quote__role { font-size: var(--step--1); color: var(--charcoal-60); }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.carousel__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--teal);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.carousel__btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sand-300);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), width 0.2s var(--ease);
}
.carousel__dot[aria-selected="true"] { background: var(--terracotta); width: 26px; border-radius: var(--radius-pill); }

/* 11. ACCORDION ========================================================== */
.accordion { display: grid; gap: var(--sp-5); }
.acc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
.acc.is-open { box-shadow: var(--shadow); border-color: var(--teal-100); }
.acc__header { margin: 0; }
.acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: clamp(1.1rem, 0.8rem + 1.2vw, 1.75rem);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.acc__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--terracotta);
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-100);
}
.acc__titles { flex: 1 1 auto; min-width: 0; }
.acc__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--teal-900);
  display: block;
  line-height: 1.2;
}
.acc__sub {
  display: block;
  font-size: var(--step--1);
  color: var(--charcoal-60);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}
.acc__icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: transform 0.26s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.acc.is-open .acc__icon { transform: rotate(180deg); background: var(--teal); color: var(--white); border-color: var(--teal); }
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s var(--ease);
}
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 0.9rem + 2vw, 2.5rem);
  padding: 0 clamp(1.1rem, 0.8rem + 1.2vw, 1.75rem) clamp(1.5rem, 1rem + 1.6vw, 2rem);
}
@media (max-width: 800px) {
  .acc__body { grid-template-columns: 1fr; }
}
.acc__figure { margin: 0; }
.acc__figure img { border-radius: var(--radius); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
@media (min-width: 801px) {
  /* Match the prose column's height rather than leaving a tall gap beside it. */
  .acc__body > .acc__figure {
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .acc__body > .acc__figure img {
    flex: 1 1 auto;
    aspect-ratio: auto;
    min-height: 280px;
  }
}
.acc__figure figcaption { font-size: 0.83rem; color: var(--charcoal-40); margin-top: 0.5rem; }

.fact-list { list-style: none; margin: var(--sp-4) 0 0; padding: 0; display: grid; gap: 0.65rem; }
/* Absolute bullet rather than a flex child: list items often lead with a bold
   label, and a flex row would strand that label in its own narrow column. */
.fact-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.97rem;
}
.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}
.fact-list li b,
.fact-list li strong { color: var(--teal-900); }

.callout {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  border-radius: var(--radius);
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal);
}
.callout--warm { background: var(--terracotta-100); border-color: #f2cdbe; border-left-color: var(--terracotta); }
.callout h4 { margin-bottom: 0.4rem; font-size: var(--step-1); }
.callout p { font-size: 0.95rem; color: var(--charcoal-80); }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--sp-4); }
.tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--sand-200);
  color: var(--charcoal-80);
}

/* 12. SPLIT SECTIONS ===================================================== */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(1.75rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.split--top { align-items: start; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 46%;
  height: 46%;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split--reverse .split__media { order: -1; }
@media (max-width: 700px) {
  .split--reverse .split__media { order: 0; }
}
/* Story columns run much longer than their image; letting the image travel
   keeps the pairing readable instead of stranding it above dead space. */
@media (min-width: 900px) {
  .split--top .split__media {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

.timeline { list-style: none; margin: var(--sp-6) 0 0; padding: 0 0 0 var(--sp-6); border-left: 2px solid var(--sand-300); display: grid; gap: var(--sp-5); }
.timeline li { position: relative; }
.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-6) - 7px);
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--sand);
}
.timeline b { display: block; font-family: var(--font-display); color: var(--teal-900); font-size: var(--step-1); }
.timeline span { color: var(--charcoal-60); font-size: 0.95rem; }

/* 13. TEAM GRID ========================================================== */
.person {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.person__photo { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; background: var(--sand-200); }
.person__body { padding: var(--sp-5); }
.person__name { font-family: var(--font-display); font-size: var(--step-1); color: var(--teal-900); margin: 0 0 0.2rem; }
.person__role { color: var(--terracotta-600); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; margin: 0 0 var(--sp-3); }
.person__bio { font-size: 0.93rem; color: var(--charcoal-60); margin: 0; }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5) var(--sp-7);
  padding: var(--sp-5) 0;
}
.logo-strip span {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.2rem);
  font-weight: 600;
  color: var(--charcoal-40);
  letter-spacing: 0.01em;
}

/* 14. FOOTPRINT MAP ====================================================== */
.footprint {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) { .footprint { grid-template-columns: 1fr; } }

.map {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 0.6rem + 2vw, 2rem);
}
.map svg { width: 100%; height: auto; overflow: visible; }
.map__pin circle.pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.8s var(--ease) infinite; }
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.85; }
  70% { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}
.map__label { font-family: var(--font-body); font-size: 11px; font-weight: 600; fill: rgba(255, 255, 255, 0.9); letter-spacing: 0.04em; }
.map__arc { fill: none; stroke: rgba(212, 106, 74, 0.75); stroke-width: 1.5; stroke-dasharray: 5 6; animation: dash 22s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -220; } }

.office-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
.office {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.office__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); margin-top: 0.5rem; flex: none; }
.office__dot--hq { background: var(--white); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2); }
.office b { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.05rem; }
.office span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }

/* 15. FORMS ============================================================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 1rem + 3vw, 3rem);
  border: 1px solid var(--line);
}
.form-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.field { display: grid; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--charcoal-80); }
.field .req { color: var(--terracotta-600); }
.field__hint { font-size: 0.82rem; color: var(--charcoal-40); }

.input,
.select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--sand-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23626b76' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.input:focus,
.select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 92, 86, 0.14);
}
.input[aria-invalid="true"],
.select[aria-invalid="true"] { border-color: #c0392b; }
.field__error { font-size: 0.82rem; color: #c0392b; min-height: 0; }
.field__error:empty { display: none; }

/* Wide enough that "+880 Bangladesh" is not clipped in the closed select. */
.phone-group { display: grid; grid-template-columns: 196px 1fr; gap: 0.5rem; }
.phone-group .select { padding-inline: 0.75rem 2rem; background-position: right 0.7rem center; }
@media (max-width: 430px) {
  .phone-group { grid-template-columns: 1fr; }
}

.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--charcoal-80);
  line-height: 1.5;
}
.checkbox input { margin-top: 0.28rem; width: 18px; height: 18px; accent-color: var(--teal); flex: none; }

.form-note {
  font-size: 0.86rem;
  color: var(--charcoal-60);
  line-height: 1.6;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  border: 1px solid var(--sand-200);
}

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #e6f4ea; color: #14612f; border: 1px solid #b7e0c4; }
.form-status--err { background: #fdecea; color: #9b2c1e; border: 1px solid #f5c6c0; }
.form-status--info { background: var(--teal-050); color: var(--teal-900); border: 1px solid var(--teal-100); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-5);
}

.counter-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  margin-bottom: var(--sp-5);
  font-size: 0.95rem;
}
.counter-strip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
  flex: none;
}
.counter-strip__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2.4s var(--ease) infinite;
}
.counter-strip b { font-family: var(--font-display); font-size: 1.3rem; color: var(--teal-900); }

/* 15b. RESEARCH HUB & CAREERS COMPONENTS ================================= */

/* Announcement ribbon (careers "we are hiring") */
.ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(100deg, var(--terracotta-600), var(--terracotta) 45%, #e2a052);
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
}
.ribbon svg { flex: none; }
.ribbon a { color: var(--white); font-weight: 700; text-underline-offset: 3px; }
.ribbon a:hover { color: var(--white); }

/* Partner institution cards — text wordmarks, never third-party logo files */
.uni-card { display: flex; flex-direction: column; gap: 0.7rem; }
.uni-card__mark {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: var(--sand);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--teal-900);
  text-align: center;
}
.uni-card__place {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal-40);
}
.uni-card h3 { font-size: var(--step-1); margin-bottom: 0.2rem; }
.uni-card p { font-size: 0.93rem; color: var(--charcoal-60); }

/* Secure data repository block (sits on a dark section) */
.vault { display: flex; gap: var(--sp-5); align-items: flex-start; }
.vault__icon {
  width: 74px;
  height: 74px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}
@media (max-width: 620px) { .vault { flex-direction: column; } }

/* Role specification list (careers) */
.spec { display: grid; gap: 0.6rem; margin: var(--sp-4) 0 0; }
.spec > div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 0.85rem;
  font-size: 0.95rem;
}
.spec dt { font-weight: 600; color: var(--teal-900); }
.spec dd { margin: 0; color: var(--charcoal-80); }
@media (max-width: 560px) {
  .spec > div { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* Long-form inputs */
.textarea { min-height: 148px; resize: vertical; line-height: 1.6; }

/* CV upload */
.file-drop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1.5px dashed var(--sand-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.16s var(--ease), background-color 0.16s var(--ease);
}
.file-drop:hover,
.file-drop:focus-within { border-color: var(--teal); background: var(--teal-050); }
.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-drop__icon { color: var(--teal); flex: none; }
.file-drop__text { font-size: 0.88rem; color: var(--charcoal-60); line-height: 1.45; }
.file-drop__text b { display: block; color: var(--charcoal); font-weight: 600; font-size: 0.94rem; }
.file-drop[data-has-file="true"] { border-style: solid; border-color: var(--teal); background: var(--teal-050); }

/* 16. FOOTER & TICKER ==================================================== */
.ticker {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.92);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
.ticker__label {
  flex: none;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.85rem 1.1rem;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.ticker__viewport { overflow: hidden; flex: 1 1 auto; }
.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  padding: 0.85rem 0 0.85rem 1.5rem;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.6rem; }
.ticker__item::before { content: "◆"; color: var(--terracotta-300); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: 0.94rem;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.site-footer a:hover { color: var(--terracotta-300); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--sp-6) var(--sp-5);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__sub { color: rgba(255, 255, 255, 0.5); }
.footer-brand p { margin-top: var(--sp-4); max-width: 34ch; }
.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.social-row { display: flex; gap: 0.6rem; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.social-row a:hover { background: var(--teal); border-color: var(--teal); }

/* 17. FLOATING WHATSAPP WIDGET =========================================== */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 0.6rem + 1.4vw, 1.75rem);
  bottom: clamp(1rem, 0.6rem + 1.4vw, 1.75rem);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}
.wa-fab__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4);
  border: 0;
  cursor: pointer;
  flex: none;
  transition: transform 0.2s var(--ease);
}
.wa-fab__btn:hover { transform: scale(1.06); color: var(--white); }
.wa-fab__card {
  width: min(78vw, 268px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--sp-4);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--charcoal-80);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.wa-fab.is-open .wa-fab__card { opacity: 1; visibility: visible; transform: translateX(0); }
.wa-fab__card b { display: block; color: var(--teal-900); font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.2rem; }
.wa-fab__card .btn { margin-top: var(--sp-3); padding: 0.55rem 1rem; font-size: 0.85rem; width: 100%; }
.wa-fab__close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: none;
  color: var(--charcoal-40);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.wa-fab__card { position: relative; }

/* 18. UTILITIES, MOTION & PRINT ========================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }
.full-bleed-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

@media print {
  .site-header, .wa-fab, .ticker, .carousel__controls { display: none !important; }
  body { background: #fff; color: #000; }
  .hero::after { display: none; }
}
