/* ====== base/vars ====== */
:root {
  --teal: #146782;
  --ink: #0d2530;
  --muted: #6a7a85;
  --bg: #f6f8f9;

  /* NAV exact specs */
  --nav-bg: #146782;
  --nav-text: #ffffff;
  --nav-hover: #0e5162;
  --nav-accent: #ffffff;
  --container-max: 1200px;
  --nav-height: 92px;
  /* whole bar */
  --nav-pad-y: 10px;
  /* Figma top/bottom */
  --menu-item-h: 48px;
  /* Figma item height */
  --menu-gap: 24px;
  /* Figma gap */
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg)
}

a {
  color: var(--teal);
  text-decoration: none
}

/* utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px
}

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

/* make the header container full-bleed and flush left */
.site-header .container {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  /* flush to left edge */
  padding-right: 40px;
  /* space so right menu doesn’t hug edge */
}

/* ====== header/nav ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nav-bg);
  color: var(--nav-text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.nav-inner {
  min-height: var(--nav-height);
  padding-block: var(--nav-pad-y);
  padding-left: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* brand */
.brand {
  display: flex;
  margin-left: 20px;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none
}

.brand-icon {
  display: inline-flex;
  line-height: 0
}

.brand-title {
  display: block;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 24px;
  /* reduced so the menu fits */
  line-height: 1.05;
}

.brand-tagline {
  display: block;
  color: #e7f5f9;
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.2
}

@media (max-width:960px) {
  .brand-tagline {
    display: none
  }
}

/* menu (desktop) */
.primary-nav {
  margin-left: auto;
  padding-block: 6px;
}

/* air above/below items */
.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: var(--menu-gap);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  /* vertical inner padding */
}

.primary-nav .menu>li {
  display: flex;
}

.primary-nav .menu>li>a {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: var(--menu-item-h);
  padding: 0 8px;
  border-radius: 8px;
  font-size: 18px;
}

/* Hover/active outline for normal items (not the donate pill) */
.primary-nav .menu>li:not(.btn-donate).current-menu-item>a,
.primary-nav .menu>li:not(.btn-donate)>a:hover {
  outline: 2px solid var(--nav-accent);
  outline-offset: -2px;
}

/* dropdowns */
.primary-nav .menu-item-has-children {
  position: relative;
}

.primary-nav .menu-item-has-children>a::after {
  content: "▾";
  margin-left: 8px;
  font-size: .8em;
  opacity: .9;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--nav-hover);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
  display: none;

  /* remove bullets and default spacing */
  list-style: none;
  margin: -7px;
}

.primary-nav .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .sub-menu li::marker {
  content: "";
}

/* bullet kill */
.primary-nav .sub-menu a {
  height: auto;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  /* white text */
  display: block;
  border-radius: 8px;
}

.primary-nav .sub-menu a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.primary-nav .menu-item-has-children:hover>.sub-menu {
  display: block;
}

/* ===== Donate Now (exact Figma specs with teal "air" around it) ===== */
.primary-nav .menu>li.btn-donate>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  /* internal gap */
  height: 32px;
  /* exact height */
  min-width: 100px;
  /* “Hug (136px)” */
  padding: 12px 24px;
  /* 12/24 */
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .14);
  /* 1px border */
  border-radius: 10px;
  /* 10px radius */
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  text-decoration: none;
}


/* no global outline on donate pill */
.primary-nav .menu>li.btn-donate>a:hover,
.primary-nav .menu>li.btn-donate>a {
  border-bottom: 0 !important;
  outline: 0 !important;
}

/* Hover/Focus */
.primary-nav .menu>li.btn-donate>a:hover {
  background: #f8fafc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.primary-nav .menu>li.btn-donate>a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* mobile */
.menu-toggle {
  display: none;
  margin-left: auto;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer
}



/* ====== handy bits you already had ====== */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  overflow: hidden
}

.grid {
  display: grid;
  gap: 24px
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.section {
  padding: 64px 0
}

.text-muted {
  color: var(--muted)
}


/* ===== Footer background — per Figma ===== */
.site-footer {
  background: #146782;
  /* color */
  color: #fff;
  /* safe default for when we add content */
}

/* Inner frame that follows the Figma dimensions */
.footer-inner {
  /* Figma width is 1440; keep it responsive but cap at 1440 */
  /* width:min(1440px, 100%); */
  margin: 0 auto;

  /* Figma padding */
  /* padding:47px 64px 80px 64px; */
  padding: 47px 80px 64px 64px;

  /* Figma height */
  min-height: 300px;

  /* Figma vertical gap between groups (we'll use this later) */
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ===== Footer background & frame ===== */
:root {
  /* tweak this to move the brand a bit right from the left edge */
  --footer-brand-offset: 24px;
  /* small nudge */
}

.site-footer {
  background: #146782;
  color: #fff;
}



/* ===== Footer background & frame ===== */
:root {
  /* tweak this to move the brand a bit right from the left edge */
  --footer-brand-offset: 24px;
  /* small nudge */
}

.site-footer {
  background: #146782;
  color: #fff;
}



/* ===== Footer brand row (with slight right offset) ===== */
.footer-brand {
  width: 800px;
  /* Figma */
  height: 50px;
  /* Figma */
  display: flex;
  align-items: center;
  column-gap: 32px;
  /* gap between logo and text */
  /* margin-left:var(--footer-brand-offset); ← nudge right */
}

.footer-logo svg {
  width: 75.18px;
  height: 70.28px;
  display: block;
}

.footer-brand-text {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 797px;
}

.footer-site-title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 32px;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-site-tagline {
  margin: 0;
  color: #d9eef5;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

/* keep it safe on narrower screens */
@media (max-width: 980px) {
  .footer-brand {
    width: min(865px, 100% - var(--footer-brand-offset) - 64px);
  }
}

/* Keep footer base from earlier steps */
:root {
  --footer-brand-offset: 24px;
}

.site-footer {
  background: #146782;
  color: #fff;
}

.footer-logo svg {
  width: 75.18px;
  height: 70.28px;
  display: block;
}

.footer-brand-text {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 797px;
}

.footer-site-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-site-tagline {
  margin: 0;
  color: #d9eef5;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

/* ===== Contact block under brand ===== */
.footer-left {
  /* margin-left:var(--footer-brand-offset); */
  width: min(856px, 100% - var(--footer-brand-offset) - 64px);
  /* 856px target */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-mini-hd {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: #e9f6fb;
  font-size: 16px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin: 6px 0;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-list .ico {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfe3ea;
}

.footer-list .ico svg {
  width: 20px;
  height: 20px;
}

/* Social row */
.footer-social {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: .92;
  transition: opacity .15s ease, transform .15s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Narrow screens safeguard */
@media (max-width: 980px) {
  .footer-brand {
    width: min(865px, 100% - var(--footer-brand-offset) - 64px);
  }

  .footer-left {
    width: min(856px, 100% - var(--footer-brand-offset) - 64px);
  }
}

/* Base/footer frame from earlier */
:root {
  --footer-brand-offset: 24px;
}

.site-footer {
  background: #146782;
  color: #fff;
}


/* ===== Top row ===== */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Brand (865 × 80), slight left offset */
.footer-brand {
  width: 865px;
  height: 80px;
  display: flex;
  align-items: center;
  column-gap: 32px;
  /* margin-left:var(--footer-brand-offset); */
}

.footer-logo svg {
  width: 75.18px;
  height: 70.28px;
  display: block;
}

.footer-brand-text {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 797px;
}

.footer-site-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-site-tagline {
  margin: 0;
  color: #d9eef5;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

/* Donate pill (Hug 99 × 48, radius 10, border 1, padding 12/24) */
.footer-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 24px;
  min-width: 99px;
  background: #fff;
  color: #111;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  text-decoration: none;
}

.footer-donate:hover {
  background: #f8fafc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* ===== Body row ===== */
.footer-body {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left column (contact, address, social) — aligned with brand left */

.footer-mini-hd {
  margin: 0 0 8px;
  font-weight: 700;
  color: #e9f6fb;
  font-size: 16px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin: 6px 0;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-list .ico {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfe3ea;
}

.footer-list .ico svg {
  width: 20px;
  height: 20px;
}

.footer-social {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: .92;
  transition: opacity .15s, transform .15s;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 22pxpx;
  height: 22px;
  display: block;
}

/* Right column links grid (Fill 384 × Hug 185, gap 24) */
.footer-links {
  width: 384px;
  min-height: 185px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== Bottom legal row (Fill 1312 × Hug 21, space-between) ===== */
.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 21px;
  /* width:calc(100% - 128px);               1440 - 64 - 64 = 1312 */
  /* margin-left:64px; */
  /* margin-right:64px;    match inner padding to achieve exact 1312 fill */
  color: #cfe3ea;
  font-size: 13.5px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: #cfe3ea;
  text-decoration: none;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 980px) {
  .footer-brand {
    width: min(865px, 100% - var(--footer-brand-offset) - 64px);
  }

  .footer-left {
    width: min(856px, 100% - var(--footer-brand-offset) - 64px);
  }

  .footer-body {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    width: 100%;
    margin: 0;
    padding: 0 16px;
  }
}

/* ======== HERO (full-bleed, headline centered in TV) ======== */
.home-hero {
  /* darken top just a bit so white type pops; adjust as needed */
  --overlay: linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .00) 75%);
  background-image: var(--overlay), var(--hero-bg);
  background-size: cover;
  background-position: center 22%;
  /* keeps the TV centered vertically */
  position: relative;
  min-height: clamp(560px, 92vh, 1100px);
  /* fills the viewport like your ref */
}

/* The text block that sits inside the TV area */
.home-hero__screen {
  position: absolute;
  left: 50%;
  top: 52%;                       /* ✅ TRUE vertical center */
  transform: translate(-50%, -105%);
  width: min(720px, 78vw);
  text-align: center;

  /* 🔑 moves content INTO the TV screen area */
  padding-top: 6%;
}

/* Figma typography: Roboto 700 / 48 / 120% / centered / white */
.home-hero__title {
  margin: 0 0 18px 0;
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

/* CTAs: smaller/tighter pills, centered */
.home-hero__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* tight gap like the ref */
}

/* Base pill */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  /* Figma: 48 */
  padding: 10px 18px;
  /* slightly smaller overall feel */
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .14);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  /* a touch smaller */
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

/* Watch our videos — "Hug 171px" */
.btn-hero--light {
  min-width: 139px;
  background: #fff;
  color: #111;
}

/* Donate Now — "Hug 136px" + color #363636 at 40% */
.btn-hero--dark {
  min-width: 136px;
  background: rgba(54, 54, 54, 0.40);
  /* #363636 @ 40% */
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

@media (max-width: 768px) {
	.btn-hero--light {
  		min-width: 136px;
  		background: rgba(54, 54, 54, 0.70);
  		color: #fff;
  		border-color: rgba(255, 255, 255, .35);
	}
	.btn-hero--dark {
  		min-width: 136px;
  		background: rgba(54, 54, 54, 0.70);
  		color: #fff;
  		border-color: rgba(255, 255, 255, .35);
	}
	
}

.btn-hero--light:hover {
  background: #f8fafc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.btn-hero--dark:hover {
  background: rgba(54, 54, 54, 0.55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}


/* ===== center dip & arrow ===== */
.home-hero__cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 140px;
  display: block;
  pointer-events: none;
}

/* 56×56 arrow centered in dip */
.home-hero__arrow {
  position: absolute;
  left: 50%;
  bottom: 0px;
  /* nudge +/– if you want it higher/lower */
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
}

.home-hero__arrow svg {
  display: block;
  width: 56px;
  height: 56px;
}

/* ===== partners (exact sizes) ===== */
.partners {
  background: #F6F8F9;
  padding: 22px 0 36px;
}

.partners__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.partners__eyebrow {
  margin: 0 0 14px 0;
  color: #3a5561;
  font-weight: 700;
  font-size: 14.5px;
}

.partners__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners__logos li {
  list-style: none;
}

/* fixed boxes so the logos always render correctly */
.pl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl--la36 {
  width: 144px;
  height: 144px;
}

.pl--cards {
  width: 135px;
  height: 111px;
}

.pl--winwin {
  width: 144px;
  height: 144px;
}

.pl>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

/* ===== Who We Are strip ===== */
:root {
  --who-bg: #146782;
  /* same teal as nav */
  --who-text: #ffffff;
}

.who-strip {
  background: var(--who-bg);
  color: var(--who-text);
}

.who-strip .who-inner {
  /* Height feel ~338px using paddings (works responsively) */
  padding: 40px 20px 48px;
  min-height: 338px;

  display: flex;
  align-items: center;
  /* gap: 80px;                Figma: gap 80px */
}

/* Left column */
.who-strip .who-copy {
  flex: 0 0 550px;
  /* Figma: Fill (550px) */
  max-width: 550px;
}

.who-strip .who-title {
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 32px;
  /* visually matches your “Who we are” */
  line-height: 1.2;
  color: #fff;
}

.who-strip .who-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #eaf5f9;
}

/* Right stats block */
.who-strip .who-stats {
  /* Figma shows ~682px total width for the two stats area */
  flex: 0 0 682px;
  max-width: 682px;

  display: flex;
  align-items: center;
  gap: 48px;
  /* Figma: gap 48px */
}

.who-strip .stat {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.who-strip .stat-num {
  font-size: 96px;
  /* Figma: 96px */
  line-height: 120%;
  /* Figma: 120% */
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

.who-strip .stat-label {
  font-size: 20px;
  /* Figma: 20px */
  line-height: 140%;
  /* Figma: 140% */
  font-weight: 700;
  /* Figma: 700 */
  color: #dff3f8;
  white-space: normal;
}

/* Center divider between stats */
.who-strip .stat-divider {
  width: 1px;
  height: 140px;
  background: rgba(255, 255, 255, .8);
  display: inline-block;
  border-radius: 1px;
}

/* ----- Responsive tweaks ----- */
@media (max-width: 1100px) {
  .who-strip .who-inner {
    gap: 48px;
  }

  .who-strip .who-stats {
    flex-basis: 560px;
    max-width: 560px;
  }

  .who-strip .stat-num {
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  .who-strip .who-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .who-strip .who-copy,
  .who-strip .who-stats {
    flex-basis: auto;
    max-width: none;
  }

  .who-strip .who-stats {
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .who-strip .stat-num {
    font-size: 64px;
  }

  .who-strip .stat-label {
    font-size: 18px;
  }

  .who-strip .stat-divider {
    height: 100px;
  }
}

/* ===============================
   What We Focus On…
   =============================== */

/* ===========================
   WHAT WE FOCUS ON — Section
   =========================== */
/* ===========================
   WHAT WE FOCUS ON — Section
   =========================== */
:root {
  /* new background color */
  --focus-bg: #FAF9F5;
}

.focus {
  background: var(--focus-bg);
}

.container--focus {
  max-width: 1440px;
  margin: 0 auto;
  /* Figma paddings: Top/Right/Bottom/Left */
  padding: 112px 64px 60px 64px;
}

/* HEADER — now centers title/deck over the cards.
   Illustration is absolutely positioned so it doesn't shift the center. */
.focus__header {
  position: relative;
  min-height: 180px;
  /* keeps room for the illustration */
  padding-bottom: 24px;
}

/* Illustration pinned to the left edge *inside* the container */
.focus__illus {
  position: absolute;
  left: 0;
  /* aligns with container’s left padding */
  top: -6px;
  width: 220px;
  height: auto;
}

/* Title block centered to the container (and therefore to the cards) */
.focus__titlewrap {
  width: min(768px, 100%);
  margin: 0 auto;
  /* centers horizontally */
  text-align: center;
}

.focus__title {
  margin: 0 0 16px 0;
  color: var(--teal);
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
}

.focus__deck {
  margin: 0;
  color: var(--ink);
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

/* CARDS GRID */
.focus__cards {
  margin-top: 112px;
  /* space between header and cards */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.focus-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .12);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  /* remove link underline */
  color: inherit;
  /* inherit text color */
  cursor: pointer;
}

.focus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(16, 24, 40, .16);
}

.focus-card__media img {
  width: 100%;
  height: 268px;
  object-fit: cover;
  display: block;
}

.focus-card__body {
  padding: 24px;
  text-align: center;
}

.focus-card__title {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
}

.focus-card__text {
  margin: 0;
  color: var(--ink);
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

/* Responsive */
@media (max-width: 1200px) {
  .focus__illus {
    display: none;
  }

  /* hides art to keep center perfect on narrow */
  .focus__titlewrap {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .container--focus {
    padding: 72px 24px;
  }

  .focus__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .focus-card__media img {
    height: 240px;
  }
}


/* ===============================
   SUPPORT (How you can support us)
   =============================== */

/* Support section */
/* ========= Support section ========= */
.support {
  background: #FAF9F5;
  /* same light blend */
  padding: 140px 64px 60px;
  /* top/right/bottom/left from your Figma */
}

.support__inner {
  max-width: 1312px;
  /* matches your other sections */
  margin: 0 auto;
}

.support__title {
  font: 700 48px/120% Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #146782;
  text-align: center;
  margin: 0 0 80px;
}

.support__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  /* column gap from Figma */
  align-items: stretch;
  /* make all columns equal height */
}

/* Each column acts like a tiny grid so the CTA can sit on the last row */
.support-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  /* icon / heading / (grows) copy / CTA */
  justify-items: center;
  text-align: center;
  min-height: 354px;
  /* ensures the final row lines up across columns */
}

.support-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.support-card__hd {
  font: 700 28px/130% Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #0c2d36;
  margin: 0 0 16px;
}

.support-card__copy {
  max-width: 405px;
  /* matches the Figma column text width */
  margin: 0 auto 24px;
  font: 400 16px/150% Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #0c2d36;
}

/* The secret sauce: push CTA to the bottom row and keep all three aligned */
.support-card__cta {
  margin-top: auto;
  /* occupies the last row; aligns all CTAs in one line */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 16px/150% Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.support-card__cta span {
  transform: translateX(0);
  transition: transform .15s ease;
}

.support-card__cta:hover span {
  transform: translateX(2px);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .support__row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support-card {
    min-height: 0;
  }

  /* natural height on mobile */
}

/* ---------- Testimonials (1440 outer / 1312 inner) ---------- */
.t-section {
  position: relative;
  background: #FAF9F5;
  width: 100%;
}

.t-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 64px;
  /* top 80, right 64, bottom 80, left 64 */
  box-sizing: border-box;
}

.t-viewport {
  overflow: hidden;
  max-width: 1312px;
  margin: 0 auto;
}

.t-track {
  display: flex;
  transition: transform .4s ease;
  will-change: transform;
}

.t-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 420px;
  /* “Hug” feel while staying roomy */
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  text-align: center;
  gap: 32px;
  padding-bottom: 16px;
}

.t-quote p {
  font: 700 20px/150% "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #0A2E35;
  max-width: 820px;
  margin: 0 auto;
}

.t-author {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.t-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #EFEFEF;
  display: grid;
  place-items: center;
}

.t-author-meta {
  display: grid;
  gap: 2px;
  text-align: center;
}

.t-name {
  font: 700 18px/1.4 "Roboto", system-ui;
  color: #0A2E35;
}

.t-role,
.t-org {
  font: 400 14px/1.4 "Roboto", system-ui;
  color: #3E4C52;
}

/* illustration bottom-right */
.t-illo {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(8px);
  max-width: 42vw;
  pointer-events: none;
}

/* arrows (48 × 48) */
.t-arrow {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #146782;
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  top: calc(80px + 24px);
  /* keep near top of content */
  transition: opacity .2s ease, transform .2s ease;
}

.t-arrow:hover {
  transform: scale(1.06);
}

.t-arrow--prev {
  left: 16px;
}

.t-arrow--next {
  right: 16px;
}

/* dots */
.t-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  /* ensure vertical alignment */
  gap: 8px;
  margin-top: 20px;
}

.t-dot {
  width: 12px;
  /* make them slightly bigger */
  height: 12px;
  /* equal width & height ensures circle */
  border-radius: 50%;
  /* makes it circular */
  background: #B9C8CC;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  /* prevents flexbox from squishing them */
}

.t-dot.is-active {
  background: #146782;
}

/* bottom wave */
.t-wave {
  width: 100%;
}

.t-wave svg {
  display: block;
  width: 100%;
  height: 64px;
}

/* utility */
.sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


.wave-divider {
  width: 1440px;
  /* fixed width like your design */
  margin: 0 auto;
  /* center align */
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}


/* Alternative CSS-only approach using pseudo-elements */
.custom-wavy-border-css {
  width: 1480px;
  height: 3px;
  position: relative;
  background: transparent;
}

.custom-wavy-border-css::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background:
    repeating-radial-gradient(circle at 0 0, transparent 0, transparent 20px, #4C75F2 20px, #4C75F2 21px, transparent 21px, transparent 40px) 0 -10px,
    repeating-radial-gradient(circle at 20px 0, transparent 0, transparent 20px, #4C75F2 20px, #4C75F2 21px, transparent 21px, transparent 40px) 0 10px;
  background-size: 40px 20px;
}

/* ========== Over 5 Years (timeline split) ========== */
/* ========== Over 5 Years (timeline split) ========== */
:root {
  --teal: #146782;
  --ink: #0C2E33;
  --bg-cream: #FAF9F5;
}

.over5 {
  background: var(--bg-cream);
}

.over5__inner {
  max-width: 1312px;
  margin: 0 auto;
  padding: 112px 64px;
  display: grid;
  grid-template-columns: 1fr 16px 576px;
  column-gap: 64px;
  align-items: start;
}

/* Left column */
.over5__left {
  max-width: 592px;
}

.over5__title {
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--teal);
  margin: 0 0 16px;
}

.over5__copy {
  display: grid;
  gap: 16px;
  color: var(--ink);
  margin-bottom: 40px;
}

.over5__copy p {
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}

.over5__art {
  margin: 0;
}

.over5__art img {
  width: 100%;
  height: auto;
  max-width: 491px;
  display: block;
}

/* Timeline SVG */
.over5__timeline {
  width: 16px;
  height: 750px;
  margin: 0 auto;
}

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

/* Right column - fixed spacing to prevent overlap */
.over5__right {
  display: flex;
  flex-direction: column;
  width: 576px;
  padding-top: 0;
}

.over5__yearblock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.over5__yearblock:last-child {
  margin-bottom: 0;
}

.over5__year {
  color: var(--teal);
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin: 0;
}

.over5__hd {
  color: var(--ink);
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  margin: 0;
}

.over5__yearblock p {
  color: var(--ink);
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}

.over5__yearblock p+p {
  margin-top: 16px;
}

/* Responsive: stack while preserving layout */
@media (max-width: 980px) {
  .over5__inner {
    grid-template-columns: 1fr;
    row-gap: 48px;
    padding: 64px 32px;
  }

  .over5__left {
    max-width: 100%;
  }

  .over5__timeline {
    display: none;
  }

  .over5__right {
    width: 100%;
  }

  .over5__title {
    font-size: 36px;
  }

  .over5__year {
    font-size: 32px;
  }

  .over5__hd {
    font-size: 24px;
  }
}

.hr-line {
  width: 1912px;
  /* exact width */
  max-width: 100%;
  /* keep responsive on smaller screens */
  height: 1px;
  /* thickness */
  background-color: #e6f1f5;
  /* light teal/grey line (adjust as needed) */
  margin: 0 auto;
  /* center horizontally */
  border: none;
  /* remove default <hr> border if used */
}


/* =====================================
   FOOTER — MOBILE ONLY (SAFE & LOCKED)
   DOES NOT AFFECT DESKTOP
===================================== */
@media (max-width: 768px) {

  /* Prevent horizontal scroll only */
  html, body {
    overflow-x: hidden;
  }

  /* Footer base */
  .site-footer {
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 24px;
  }

  .site-footer * {
    box-sizing: border-box;
    max-width: 100%;
  }

  .footer-inner {
    width: 100%;
    padding: 0 16px;
  }

  /* ===============================
     LOCKED TOP GROUP
     Logo + Title + Tagline + Donate
  =============================== */
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px; /* 🔑 MOVE ENTIRE GROUP UP/DOWN HERE */
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 8px; /* logo position */
  }

  /* ===============================
     TITLE — BIG TEXT
  =============================== */
  .footer-site-title {
    font-size: 30px;   /* YOU CONTROL THIS */
    font-weight: 700;
    line-height: 1.25;
    margin-top: 20px;
    text-align: center;

    /* prevent overflow */
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ===============================
     TAGLINE — SMALL TEXT
  =============================== */
  .footer-site-tagline {
    font-size: 18px;   /* YOU CONTROL THIS */
    font-weight: 400;
    line-height: 1.4;
    margin-top: 6px;
    text-align: center;
  }

  /* ===============================
     DONATE BUTTON
  =============================== */
  .footer-donate {
    margin-top: 144px; /* MOVE DONATE DOWN FROM HERE */
    display: flex;
    justify-content: center;
  }

  .footer-donate a,
  .footer-donate button {
    min-width: 140px;
    height: 42px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* ===============================
     BODY CONTENT
  =============================== */
  .footer-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    width: 100%;
  }

  .footer-left {
    text-align: center;
    width: 100%;
  }

  .footer-list {
    align-items: center;
  }

  .footer-list li {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
    width: 100%;
  }

  .footer-links-col {
    align-items: center;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: 20px;
  }
}

/* =========================================================
   TESTIMONIALS — MOBILE VIEW (FINAL & SAFE)
========================================================= */
@media (max-width: 768px) {

  /* Section spacing */
  .t-section {
    padding: 0;
  }

  .t-inner {
    padding: 48px 16px;
  }

  /* Viewport safety */
  .t-viewport {
    overflow: hidden;
    width: 100%;
  }

  .t-track {
    display: flex;
    will-change: transform;
  }

  /* ---------------------------------------------------------
     SLIDE LAYOUT
  --------------------------------------------------------- */
  .t-slide {
    flex: 0 0 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 0 24px;
    text-align: center;
    position: relative;
  }

  /* ---------------------------------------------------------
     REMOVE ILLUSTRATION (girl image) — MOBILE ONLY
  --------------------------------------------------------- */
  .t-slide .t-illo {
    display: none !important;
  }

  /* ---------------------------------------------------------
     QUOTE
  --------------------------------------------------------- */
  .t-quote p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
  }

  /* ---------------------------------------------------------
     AUTHOR BLOCK (LOCKED TO SAME SLIDE)
  --------------------------------------------------------- */
  .t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* Avatar smaller */
  .t-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    background: #EFEFEF;
    display: grid;
    place-items: center;
  }

  .t-avatar img,
  .t-avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Author meta text */
  .t-author-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
    max-width: calc(100% - 70px);
  }

  .t-name {
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
  }

  .t-role,
  .t-org {
    font-size: 14px;
    line-height: 1.3;
  }

  /* ---------------------------------------------------------
     ARROWS — MOBILE FRIENDLY
  --------------------------------------------------------- */
  .t-arrow {
    width: 40px;
    height: 40px;
    top: 20px;
  }

  .t-arrow--prev {
    left: 8px;
  }

  .t-arrow--next {
    right: 8px;
  }

  /* ---------------------------------------------------------
     DOTS
  --------------------------------------------------------- */
  .t-dots {
    margin-top: 16px;
    gap: 8px;
  }

  .t-dot {
    width: 10px;
    height: 10px;
  }

  /* ---------------------------------------------------------
     HARD SAFETY — NO SCROLL / NO JUMP
  --------------------------------------------------------- */
  .t-track,
  .t-slide,
  .t-author,
  .t-author-meta {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* =========================================================
   TESTIMONIALS — TABLET VIEW (SAFE & CONSISTENT)
   Applies only to tablets
========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Section spacing */
  .t-inner {
    padding: 64px 32px;
  }

  .t-viewport {
    overflow: hidden;
    max-width: 100%;
  }

  /* ---------------------------------------------------------
     SLIDE LAYOUT
  --------------------------------------------------------- */
  .t-slide {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    padding-bottom: 32px;
    position: relative;
  }

  /* ---------------------------------------------------------
     REMOVE ILLUSTRATION (girl image) — TABLET ONLY
  --------------------------------------------------------- */
  .t-slide .t-illo {
    display: none !important;
  }

  /* ---------------------------------------------------------
     QUOTE
  --------------------------------------------------------- */
  .t-quote p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 760px;
    margin: 0 auto;
  }

  /* ---------------------------------------------------------
     AUTHOR BLOCK (LOCKED)
  --------------------------------------------------------- */
  .t-author {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  /* Avatar — slightly bigger than mobile */
  .t-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }

  .t-avatar img,
  .t-avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Author text */
  .t-author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    max-width: calc(100% - 90px);
  }

  .t-name {
    font-size: 18px;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
  }

  .t-role,
  .t-org {
    font-size: 15px;
    line-height: 1.35;
  }

  /* ---------------------------------------------------------
     ARROWS — TABLET POSITIONING
  --------------------------------------------------------- */
  .t-arrow {
    width: 44px;
    height: 44px;
    top: 32px;
  }

  .t-arrow--prev {
    left: 16px;
  }

  .t-arrow--next {
    right: 16px;
  }

  /* ---------------------------------------------------------
     DOTS
  --------------------------------------------------------- */
  .t-dots {
    margin-top: 24px;
    gap: 10px;
  }

  .t-dot {
    width: 11px;
    height: 11px;
  }

  /* ---------------------------------------------------------
     SAFETY — NO OVERFLOW / NO JUMP
  --------------------------------------------------------- */
  .t-track,
  .t-slide,
  .t-author,
  .t-author-meta {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* =========================================================
   TESTIMONIALS — TABLET LANDSCAPE (HORIZONTAL)
   Hide illustration explicitly
========================================================= */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {

  /* Remove illustration in horizontal tablet */
  .t-slide .t-illo {
    display: none !important;
  }

  /* Slight spacing tune for horizontal view */
  .t-slide {
    gap: 24px;
    padding-bottom: 24px;
  }
}

/* =========================================================
   TESTIMONIALS — HIDE ILLUSTRATION ON ALL NON-DESKTOP
   (Mobile + Tablet Portrait + Tablet Landscape)
========================================================= */
@media (max-width: 1200px) {

  .t-slide .t-illo {
    display: none !important;
  }
}

@media (max-width: 960px) {

  /* Show hamburger on mobile */
  .menu-toggle {
    display: flex;
  }

  /* -------------------------------
     MOBILE NAV (BELOW HEADER)
     ------------------------------- */
  .primary-nav {
    position: absolute;        /* critical: NOT fixed */
    top: 100%;                 /* sits right under header */
    left: 0;
    right: 0;

    background: var(--nav-bg);

    /* hidden state */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;

    transition: opacity .25s ease, transform .25s ease;
  }

  /* Open state */
  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Menu stack */
  .primary-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 20px;
	box-sizing: border-box;
  }

  /* Menu links */
  .primary-nav .menu > li > a {
    font-size: 16px;
    white-space: nowrap;
  }

  /* -------------------------------
     SUB-MENUS (MOBILE)
     ------------------------------- */
  .primary-nav .sub-menu {
    position: static;
    display: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 12px;
  }

  .primary-nav
    .menu-item-has-children.open
    > .sub-menu {
    display: block;
  }
}


/* =========================================
   STEP 2 — LOCK HAMBURGER BUTTON SIZE
   ========================================= */
@media (max-width: 960px) {
  .menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}

/* =========================================
   STEP 3 — MENU DROPDOWN MUST NOT PUSH HEADER
   ========================================= */
@media (max-width: 960px) {
  .site-header {
    position: relative;
	contain: layout;
  }
}

/* =====================================================
   GLOBAL SCROLL TO TOP BUTTON – MOBILE ONLY (ANIMATED)
===================================================== */

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #146782;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);

  /* animation */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Visible state (JS will toggle this class) */
#scrollToTopBtn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hide on desktop */
@media (min-width: 769px) {
  #scrollToTopBtn {
    display: none !important;
  }
}

@media (max-width: 600px) {

  .who-strip .who-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .who-strip .stat-divider {
    display: none;
  }

  .who-strip .stat-num {
    font-size: 64px;
    line-height: 1.15;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {

  /* Center "Who we are" section */
  .who-strip .who-inner {
    text-align: center;
  }

  .who-strip .who-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .who-strip .who-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .who-strip .who-lead {
    text-align: center;
  }
}


@media (max-width: 768px) {

  .home-hero {
    min-height: 75svh; /* Android-safe viewport */
  }

  .home-hero__screen {
    top: 85%;                       /* center properly */
    width: calc(100vw - 32px);      /* 16px padding on both sides */
    padding: 0 8px;                 /* extra safety */
  }

  .home-hero__title {
    font-size: 30px;                /* better mobile scale */
    line-height: 1.15;
  }

  .home-hero__cta {
    flex-direction: column;         /* stack buttons */
    gap: 12px;
  }
}

@media (max-width: 960px) {

  /* MAIN NAV CONTAINER */
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-bg);
  }

  /* STACK MENU ITEMS */
  .primary-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 20px;
  }

  /* MAIN LINKS */
  .primary-nav .menu > li > a {
    width: 100%;
    font-size: 16px;
    padding: 10px 8px;
  }

  /* SUBMENU — HIDDEN BY DEFAULT */
  .primary-nav .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 20px; /* 🔑 INDENTATION */
    margin-top: 4px;
  }

  /* SHOW SUBMENU ONLY WHEN OPEN */
  .primary-nav .menu-item-has-children.open > .sub-menu {
    display: block;
  }

  /* SUBMENU LINKS */
  .primary-nav .sub-menu a {
    font-size: 15px;
    padding: 8px 0;
    display: block;
  }
}
