/* Swasa Foundation Trust — CSR-friendly palette: blue, white, yellow & green */

:root {
  --color-bg: #f0f5fb;
  --color-surface: #ffffff;
  --color-ink: #1a2a35;
  --color-ink-muted: #4a5a68;
  --color-accent: #2d6a5c;
  --color-accent-soft: #e3f0ed;
  --color-blue: #2563a8;
  --color-blue-deep: #1e4d7a;
  --color-blue-soft: #d9e8f7;
  --color-sky: #a8c8e8;
  --color-yellow: #f0c23d;
  --color-yellow-soft: #fff6d9;
  --color-border: #c5d4e0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 12px 36px rgba(30, 77, 122, 0.1);
  --shadow-strong: 0 18px 48px rgba(30, 77, 122, 0.14);
  --header-h: 150px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --reveal-duration: 0.01ms;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: linear-gradient(180deg, #f3f8fc 0%, var(--color-bg) 40%, #ecf5f1 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(37, 99, 168, 0.12);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-blue-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 248, 255, 0.95) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 4px 24px rgba(30, 77, 122, 0.05);
  transition: box-shadow 0.35s var(--ease-out-expo), border-color 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(30, 77, 122, 0.1);
  border-bottom-color: rgba(37, 99, 168, 0.18);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  color: var(--color-ink);
  text-decoration: none;
  flex-shrink: 0;
}

.logo--brand {
  line-height: 0;
}

.logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 130px;
  max-width: min(580px, 72vw);
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
  transform: translateZ(0);
}

.logo--brand:hover .logo-img {
  opacity: 0.92;
}

.nav {
  display: none;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-ink);
  border-radius: 1px;
}

.nav-panel {
  display: none;
  flex-direction: column;
  padding: 0 1.25rem 1rem;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(37, 99, 168, 0.12);
  background: linear-gradient(180deg, #fff 0%, var(--color-blue-soft) 100%);
}

.nav-panel:not([hidden]) {
  display: flex;
}

.nav-panel a {
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  padding: 0.5rem 0;
}

.nav-panel .nav-action {
  color: var(--color-blue-deep);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-panel {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0.65rem;
  }

  .nav {
    flex-basis: 100%;
    justify-content: flex-start;
    padding-top: 0.55rem;
    border-top: 1px solid var(--color-border);
  }
}

/* Hero */

@keyframes hero-gradient-shift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.03);
  }
  66% {
    transform: translate(-8px, 10px) scale(0.98);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: min(94vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.75rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 82% 8%, rgba(138, 186, 232, 0.45), transparent 58%),
    radial-gradient(ellipse 70% 55% at 8% 75%, rgba(45, 106, 92, 0.14), transparent 52%),
    radial-gradient(ellipse 50% 40% at 95% 88%, rgba(240, 194, 61, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 40% 20%, rgba(37, 99, 168, 0.06), transparent 50%),
    linear-gradient(168deg, #dceaf8 0%, #eef5fb 38%, #e5f3ec 72%, #eef6f2 100%);
  animation: hero-gradient-shift 14s ease-in-out infinite;
}

.hero-bg__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 168, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  animation: hero-orb-float 18s ease-in-out infinite;
}

.hero-bg__orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(100, 160, 220, 0.55) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-bg__orb--2 {
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  bottom: 5%;
  left: -6%;
  background: radial-gradient(circle, rgba(45, 106, 92, 0.35) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.hero-bg__orb--3 {
  width: min(260px, 35vw);
  height: min(260px, 35vw);
  top: 42%;
  left: 35%;
  background: radial-gradient(circle, rgba(240, 194, 61, 0.28) 0%, transparent 70%);
  animation-delay: -12s;
  animation-duration: 20s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
}

.hero-content.hero-content--carousel-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 52rem;
}

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

@media (min-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 620px);
    gap: 2.75rem 3.25rem;
  }

  .hero-content.hero-content--carousel-only {
    display: flex;
    grid-template-columns: unset;
    max-width: 52rem;
  }

  .hero-content.hero-content--carousel-only .hero-aside {
    position: relative;
    top: auto;
    align-self: center;
    width: 100%;
    max-width: 46rem;
  }
}

.hero-main {
  padding-top: 0.35rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 168, 0.18);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(30, 77, 122, 0.06);
}

.hero-pill--accent {
  color: #7a5209;
  background: linear-gradient(135deg, rgba(255, 246, 217, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(240, 194, 61, 0.55);
}

.hero-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-blue-deep);
  margin: 0 0 1.1rem;
  opacity: 0.92;
}

.hero-title {
  font-family: var(--font-display);
  margin: 0 0 1.15rem;
  letter-spacing: normal;
  line-height: 1.2;
}

/* “F r e e d o m  T o  B r e a t h e . . .” — bold italic, letter spaces preserved */
.tagline-freedom {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.2rem, 3.4vw, 2.35rem);
  line-height: 1.45;
  white-space: nowrap;
  letter-spacing: normal;
  background: linear-gradient(125deg, var(--color-blue-deep) 0%, var(--color-blue) 42%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.06em;
}

@supports not (background-clip: text) {
  .tagline-freedom:not(.tagline-freedom--footer) {
    color: var(--color-blue-deep);
    background: none;
  }
}

.tagline-freedom--quote {
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  line-height: 1.4;
  vertical-align: baseline;
}

.tagline-freedom--footer {
  font-size: clamp(0.58rem, 1.55vw, 0.78rem);
  line-height: 1.55;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #e6f2fa;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--color-ink-muted);
  margin: 0 0 1.4rem;
  line-height: 1.68;
}

.hero-trustRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0 0 1.85rem;
  max-width: 40rem;
}

@media (min-width: 520px) {
  .hero-trustRow {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.hero-trustItem {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(37, 99, 168, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30, 77, 122, 0.05);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-trustItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 77, 122, 0.09);
  border-color: rgba(45, 106, 92, 0.22);
}

.hero-trustValue {
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}

.hero-trustLabel {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
}

.hero-trustLabel strong {
  color: var(--color-ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-animate > * {
  opacity: 0;
  animation: hero-fade-up 0.85s var(--ease-out-expo) forwards;
}

.hero-animate > *:nth-child(1) {
  animation-delay: 0.08s;
}
.hero-animate > *:nth-child(2) {
  animation-delay: 0.16s;
}
.hero-animate > *:nth-child(3) {
  animation-delay: 0.24s;
}
.hero-animate > *:nth-child(4) {
  animation-delay: 0.32s;
}
.hero-animate > *:nth-child(5) {
  animation-delay: 0.4s;
}
.hero-animate > *:nth-child(6) {
  animation-delay: 0.48s;
}
.hero-animate > *:nth-child(7) {
  animation-delay: 0.56s;
}
.hero-animate > *:nth-child(8) {
  animation-delay: 0.64s;
}

.hero-aside.hero-animate--delayed {
  opacity: 0;
  animation: hero-fade-up 0.95s var(--ease-out-expo) 0.42s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg__mesh {
    animation: none;
  }
  .hero-bg__orb {
    animation: none;
  }
  .hero-animate > *,
  .hero-aside.hero-animate--delayed {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.hero-scrollCue {
  position: relative;
  z-index: 2;
  align-self: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-blue-deep);
  opacity: 0.75;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.hero-scrollCue:hover {
  opacity: 1;
  color: var(--color-accent);
}

.hero-scrollCue-line {
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(180deg, var(--color-blue-deep), transparent);
  animation: hero-scrollCue 2.2s ease-in-out infinite;
}

@media (min-width: 960px) {
  .hero-scrollCue {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scrollCue-line {
    animation: none;
  }
}

/* Hero right: scrollable message carousel */

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.hero-carousel-shell {
  position: relative;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: url("images/hero-carousel-bg.png") center / cover no-repeat;
  border: 1px solid rgba(37, 99, 168, 0.14);
  box-shadow: 0 16px 44px rgba(30, 77, 122, 0.14);
}

.hero-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 40, 0.62) 0%, rgba(15, 28, 40, 0.3) 45%, rgba(15, 28, 40, 0.52) 100%),
    radial-gradient(ellipse 60% 45% at 50% 40%, rgba(255, 255, 255, 0.16), transparent 58%);
  filter: blur(0px);
  pointer-events: none;
}

.hero-carousel-shell > * {
  position: relative;
  z-index: 1;
}

.hero-carousel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-carousel-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  gap: 0;
  border-radius: 14px;
  border: none;
  box-shadow: none;
  background: transparent;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 168, 0.28) transparent;
  min-height: 31rem;
  outline: none;
  scroll-padding-inline: 0.5rem;
}

.hero-carousel-viewport:focus-visible {
  box-shadow: none;
  outline: 2px solid rgba(37, 99, 168, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-viewport {
    scroll-behavior: auto;
  }
}

.hero-carousel-viewport::-webkit-scrollbar {
  height: 5px;
}

.hero-carousel-viewport::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 168, 0.28);
  border-radius: 999px;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 1.05rem 1.1rem 1.25rem;
  box-sizing: border-box;
  min-height: 31rem;
  display: grid;
  grid-template-rows: 2fr auto 6fr auto 2fr;
  align-items: start;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-carousel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  color: #f3fbff;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(0, 0, 0, 0.25);
  padding-top: 0.15rem;
  grid-row: 2;
  align-self: start;
}

.hero-carousel-title strong {
  color: #fff1b8;
  font-weight: 900;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(240, 194, 61, 0.22);
}

.hero-carousel-title--freedom {
  color: transparent;
  text-shadow: none;
  line-height: 1.35;
}

.hero-carousel-title--freedom .tagline-freedom.tagline-freedom--quote {
  font-size: clamp(0.88rem, 2.35vw, 1.42rem);
  line-height: 1.45;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff1b8;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(240, 194, 61, 0.22);
}

.hero-carousel-slide.hero-carousel-slide--title-only .hero-carousel-title {
  width: 100%;
}

.hero-carousel-title--nation {
  color: transparent;
  text-shadow: none;
  line-height: 1.35;
}

.hero-carousel-title--nation .tagline-freedom.tagline-freedom--quote {
  font-size: clamp(0.78rem, 2.05vw, 1.28rem);
  line-height: 1.55;
  white-space: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff1b8;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(240, 194, 61, 0.22);
}

/* "Freedom To Breathe..." & "Breathe Free & Build The Nation" per-letter reveal (see script.js) */
.freedom-tagline .freedom-char,
.nation-tagline .nation-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.22em, 0);
}

.freedom-tagline.freedom-tagline--play .freedom-char,
.nation-tagline.nation-tagline--play .nation-char {
  animation: nation-char-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--nation-i, 0) * 0.042s);
}

@keyframes nation-char-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.22em, 0);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .freedom-tagline .freedom-char,
  .nation-tagline .nation-char {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.hero-carousel-body {
  margin: 0;
  padding-top: 0;
  width: 100%;
  max-width: 30rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.25rem;
  grid-row: 4;
  align-self: end;
  transform: translateY(2cm);
}

.hero-carousel-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.58;
  color: rgba(243, 251, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-carousel-body .hero-carousel-text + .hero-carousel-meta {
  margin-top: 0.85rem;
}

.hero-carousel-meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 251, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-carousel-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: #f3fbff;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(0, 0, 0, 0.25);
}

.hero-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  max-width: 100%;
}

.hero-carousel-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 168, 0.28);
  border-radius: 999px;
  background: rgba(238, 245, 251, 0.55);
  color: var(--color-blue-deep);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-carousel-nav:hover {
  background: rgba(240, 194, 61, 0.28);
  border-color: rgba(37, 99, 168, 0.4);
  color: var(--color-blue-deep);
}

.hero-carousel-nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel-dot[aria-selected="true"] {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-accent) 100%);
  transform: scale(1.15);
}

.hero-carousel-dot:hover {
  background: var(--color-ink-muted);
}

.hero-carousel-dot:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (min-width: 960px) {
  .hero-aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding-left: 0;
    align-self: start;
  }

  .hero-carousel {
    max-width: min(100%, 46rem);
    margin-left: auto;
    margin-right: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:active {
    transform: none;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(30, 77, 122, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #163d5c 0%, var(--color-blue-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(30, 77, 122, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--color-blue-deep);
  border-color: var(--color-blue);
}

.btn-ghost:hover {
  background: var(--color-blue-soft);
  box-shadow: 0 4px 16px rgba(37, 99, 168, 0.12);
}

/* Impact, CSR & photo archive */

.section-impact {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, var(--color-blue-soft) 45%, var(--color-yellow-soft) 100%);
  border-top: 1px solid rgba(37, 99, 168, 0.12);
  border-bottom: 1px solid rgba(37, 99, 168, 0.1);
}

.csr-panel {
  max-width: 52rem;
  margin: 0 auto 3rem;
  padding: 2rem 1.75rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 168, 0.15);
  box-shadow: var(--shadow);
  text-align: center;
}

.csr-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.85rem;
  color: var(--color-blue-deep);
}

.csr-panel-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-ink-muted);
}

.activity-archive {
  position: relative;
  margin-top: 0;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 168, 0.14);
  box-shadow: 0 8px 32px rgba(30, 77, 122, 0.1);
}

.activity-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(248, 250, 252, 0.78) 40%,
      rgba(255, 255, 255, 0.88) 100%
    ),
    url("images/activities-through-years-bg.jpg") center / cover no-repeat;
}

.activity-archive > * {
  position: relative;
  z-index: 1;
}

.activity-archive-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0 0 0.75rem;
  color: var(--color-blue-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.activity-archive-intro {
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
  max-width: 48rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.inline-code {
  font-size: 0.88em;
  background: rgba(37, 99, 168, 0.08);
  padding: 0.12em 0.35em;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
}

.activity-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .activity-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .activity-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.activity-photo-card {
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 4px 14px rgba(30, 77, 122, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.activity-photo-num {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 2;
  min-width: 1.85rem;
  min-height: 1.85rem;
  padding: 0 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-accent) 100%);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.activity-gallery--no-numbers .activity-photo-num {
  display: none;
}

.activity-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 77, 122, 0.12);
}

.activity-photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--color-blue-soft);
  cursor: zoom-in;
}

.activity-photo-caption {
  font-size: 0.72rem;
  line-height: 1.35;
  padding: 0.45rem 0.5rem 0.55rem;
  color: var(--color-ink-muted);
  border-top: 1px solid rgba(45, 106, 92, 0.12);
  background: linear-gradient(180deg, #fff 0%, var(--color-accent-soft) 100%);
}

.btn-csr {
  background: linear-gradient(135deg, var(--color-yellow-soft) 0%, #fff 100%);
  color: var(--color-blue-deep);
  border: 2px solid var(--color-yellow);
  box-shadow: 0 4px 14px rgba(240, 194, 61, 0.25);
}

.btn-csr:hover {
  background: var(--color-yellow);
  color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(240, 194, 61, 0.4);
}

/* Sections */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container.narrow {
  max-width: 720px;
}

.section {
  padding: 4rem 0;
}

/* Scroll-in sections: hidden only when JS runs (html.js) */
html.js .reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--reveal-duration) var(--ease-out-expo),
    transform var(--reveal-duration) var(--ease-out-expo);
  will-change: opacity, transform;
}

html.js .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 1.15rem;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.65rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-yellow) 55%, var(--color-blue-soft) 100%);
  opacity: 0.95;
}

.section-intro {
  color: var(--color-ink-muted);
  max-width: 42rem;
  margin: 0 0 2rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-ink-muted);
  margin: 0 0 1.25rem;
}

.lead-follow {
  margin-bottom: 1.5rem;
}

.about-slogan {
  font-size: 1.05rem;
  color: var(--color-ink);
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  line-height: 1.55;
}

.about-slogan strong {
  color: var(--color-accent);
}

/* About pillars */

.section-about {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.pillar {
  padding: 1.5rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--color-accent);
}

.pillar p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
}

html.js .reveal-section .pillar {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo),
    box-shadow 0.3s ease;
}

html.js .reveal-section.is-visible .pillar {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal-section.is-visible .pillar:nth-child(1) {
  transition-delay: 0.06s;
}
html.js .reveal-section.is-visible .pillar:nth-child(2) {
  transition-delay: 0.12s;
}
html.js .reveal-section.is-visible .pillar:nth-child(3) {
  transition-delay: 0.18s;
}
html.js .reveal-section.is-visible .pillar:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal-section .pillar {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-founding-trustees {
  border-bottom: 1px solid var(--color-border);
}

.trustees-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .trustees-layout {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2.5rem;
  }
}

.trustee-card {
  text-align: center;
}

.trustee-photo {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 77, 122, 0.14), 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
}

.trustee-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trustee-photo:hover img {
  transform: scale(1.03);
}

.trustee-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--color-ink);
}

.trustee-role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0;
  letter-spacing: 0.02em;
}

.trustees-center {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--color-blue-soft) 100%);
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(30, 77, 122, 0.06);
}

.trustees-message {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 1.25rem;
}

.trustees-others {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-ink-muted);
  margin: 0;
}

/* Activities */

.section-activities {
  background: linear-gradient(180deg, #eef5f2 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.activities-list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--color-ink-muted);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.activities-list li {
  padding-left: 0.35rem;
  line-height: 1.65;
}

.activities-list strong {
  color: var(--color-ink);
}

.activities-list--support {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.activities-list--support li {
  position: relative;
  padding: 1rem 1.15rem 1rem 1.35rem;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 106, 92, 0.12);
  box-shadow: 0 2px 12px rgba(30, 77, 122, 0.04);
}

.activities-list--support li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 1.15rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-blue));
}

/* Disease grid */

.section-focus {
  background: linear-gradient(180deg, var(--color-bg) 0%, #eef5f2 100%);
}

.disease-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .disease-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .disease-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.disease-grid li {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.disease-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(45, 106, 92, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .disease-grid li:hover {
    transform: none;
  }
}

.disease-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-ink);
}

.disease-hint {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

/* Pollution */

.section-pollution {
  position: relative;
  isolation: isolate;
  border-top: 1px solid rgba(30, 77, 122, 0.15);
  overflow: hidden;
  background: #d0e8f4;
}

.section-pollution::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(10, 40, 65, 0.38) 0%,
      rgba(10, 40, 65, 0.32) 45%,
      rgba(8, 35, 58, 0.42) 100%
    ),
    url("images/pollution-sky-birds-bg.jpg") center / cover no-repeat;
}

.section-pollution > .container {
  position: relative;
  z-index: 1;
}

.pollution-layout {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
  width: 100%;
  align-items: stretch;
}

.pollution-lungs-column {
  order: 2;
  align-self: center;
  width: 100%;
  max-width: 320px;
}

.pollution-text-column {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 3vw, 1.75rem);
  border-radius: 18px;
  background: rgba(10, 32, 52, 0.42);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pollution-heading {
  margin: 0;
}

@media (min-width: 800px) {
  .pollution-layout {
    display: grid;
    grid-template-columns: minmax(220px, min(30vw, 300px)) minmax(0, 1fr);
    column-gap: clamp(1.75rem, 4.5vw, 2.75rem);
    row-gap: 0;
    align-items: start;
  }

  .pollution-lungs-column {
    grid-column: 1;
    grid-row: 1;
    order: unset;
    align-self: start;
    justify-self: start;
    width: auto;
    max-width: none;
  }

  .pollution-text-column {
    grid-column: 2;
    grid-row: 1;
    order: unset;
    align-self: start;
  }
}

.section-pollution .pollution-text-column .pollution-heading,
.section-pollution .pollution-text-column .section-title {
  font-size: clamp(1.65rem, 3.6vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 2px 14px rgba(0, 0, 0, 0.35);
}

.section-pollution .pollution-text-column .pollution-body-block p {
  color: #ffffff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 2px 12px rgba(0, 0, 0, 0.3);
}

.pollution-body-block {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  margin: 0;
  min-width: 0;
  padding: 0;
}

.section-pollution .pollution-text-column .pollution-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.85vw, 1.1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.85;
  letter-spacing: 0.015em;
  color: #ffffff;
}

.section-pollution .pollution-text-column .pollution-body strong {
  color: #ffe566;
  font-weight: 800;
  font-style: italic;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.25);
}

.section-pollution .pollution-text-column .pollution-body em {
  color: #e8f4ff;
  font-style: italic;
  font-weight: 700;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
  html.js .section-pollution .pollution-body-block .pollution-body {
    opacity: 0;
    transform: translateY(14px);
  }

  html.js .section-pollution.is-visible .pollution-body-block .pollution-body:nth-child(1) {
    animation: pollution-line-reveal 0.75s ease 0s forwards;
  }

  html.js .section-pollution.is-visible .pollution-body-block .pollution-body:nth-child(2) {
    animation: pollution-line-reveal 0.75s ease 3s forwards;
  }

  html.js .section-pollution.is-visible .pollution-body-block .pollution-body:nth-child(3) {
    animation: pollution-line-reveal 0.75s ease 6s forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .section-pollution .pollution-body-block .pollution-body {
    opacity: 1;
    transform: none;
  }
}

@keyframes pollution-line-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split-text p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 1.05rem;
}

.pollution-lungs-wrap {
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.pollution-lungs-frame {
  display: inline-block;
  line-height: 0;
  padding: 3px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(240, 194, 61, 0.15) 100%
  );
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.pollution-lungs-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 29px;
  transform-origin: 50% 55%;
  animation: pollution-lung-breathe 4.8s ease-in-out infinite;
  /* Feather edges into the forest background */
  -webkit-mask-image: radial-gradient(ellipse 92% 90% at 50% 48%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 90% at 50% 48%, #000 58%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

@media (prefers-reduced-motion: reduce) {
  .pollution-lungs-img {
    animation: none;
  }
}

@keyframes pollution-lung-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.inline-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.4;
}

/* Vision quotes */

.section-vision {
  background: var(--color-bg);
}

.vision-intro {
  margin-bottom: 2.5rem;
}

.quote-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vision-social-block {
  margin: 0;
  padding: 1.65rem 1.4rem 1.75rem;
  background: linear-gradient(165deg, rgba(227, 240, 237, 0.5) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(217, 232, 247, 0.35) 100%);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(45, 106, 92, 0.16);
  box-shadow: 0 10px 36px rgba(30, 77, 122, 0.08);
}

.vision-social-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-blue-deep);
  letter-spacing: -0.02em;
}

.vision-social-heading::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-yellow));
}

.vision-social-lead {
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
  line-height: 1.62;
  max-width: 42rem;
}

.vision-social-block .activities-list--support {
  gap: 1rem;
}

.vision-social-block .activities-list--support li {
  background: rgba(255, 255, 255, 0.75);
}

.quote-block {
  margin: 0;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

@media (min-width: 700px) {
  .quote-block {
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 0;
  }

  .quote-block--lungs,
  .quote-block--nation {
    grid-template-columns: minmax(260px, 400px) 1fr;
  }

  .quote-block--right .quote-photo {
    order: 2;
  }

  .quote-block--right .quote-body {
    order: 1;
  }
}

.quote-photo {
  background: linear-gradient(160deg, #dfece8 0%, var(--color-sky) 100%);
  aspect-ratio: 4 / 5;
  min-height: 220px;
  position: relative;
}

.quote-photo--cover {
  aspect-ratio: 1 / 1.05;
  min-height: 195px;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 700px) {
  .quote-block--right {
    grid-template-columns: 1fr minmax(150px, 210px);
  }
}

/* Lung illustration */

.quote-visual--lungs {
  background: linear-gradient(165deg, #e8f0ed 0%, #dce8e4 100%);
  padding: 1rem 0.75rem 2.25rem;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lung-pair-svg,
.lung-pair-media {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

.lung-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 340px;
  margin: 0.5rem 0 0;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.lungs-mission-subtitle {
  margin: 0.85rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-blue-deep);
  text-align: center;
}

.lungs-mission-arrow {
  width: 100%;
  max-width: 360px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0 0.25rem;
}

.lungs-mission-arrow__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--color-ink-muted);
  white-space: nowrap;
}

.lungs-mission-arrow__label--from {
  color: #6b5c52;
}

.lungs-mission-arrow__label--to {
  color: var(--color-accent);
}

.lungs-mission-arrow__line {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(107, 92, 82, 0.6) 0%, rgba(37, 99, 168, 0.35) 45%, rgba(45, 106, 92, 0.7) 100%);
}

.lungs-mission-arrow__line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-left: 8px solid rgba(45, 106, 92, 0.85);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.lung-label--nature {
  color: var(--color-accent);
}

.lung-label--pollution {
  color: #8b4513;
}

/* Nation quote — photo on left */

/* --- Nation banner (Breathe free & build the nation) --- */

.nation-banner {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
  box-shadow: 0 12px 48px rgba(10, 30, 60, 0.22), 0 2px 8px rgba(0,0,0,0.10);
}

.nation-banner-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) {
  .nation-banner-images {
    grid-template-columns: 2fr 3fr;
  }
}

.nation-banner-photo,
.nation-banner-flag {
  position: relative;
  overflow: hidden;
}

.nation-banner-photo {
  min-height: 280px;
}

.nation-banner-photo img,
.nation-banner-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nation-banner-photo img {
  object-position: top center;
}

.nation-banner-flag img {
  object-position: center;
}

.nation-banner-text {
  margin: 0;
  padding: 2rem 2rem 2.25rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(13,33,55,0.0) 0%, rgba(13,33,55,0.95) 100%),
              linear-gradient(160deg, #0d2137 0%, #1a3a5c 100%);
}

.nation-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.nation-banner-context {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  margin: 0 auto 1rem;
  max-width: 600px;
  color: rgba(255,255,255,0.82);
}

.nation-banner-cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

@media (min-width: 700px) {
  .nation-banner-text {
    padding: 2.5rem 3rem 2.75rem;
  }
}

.nation-layers {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 320px;
  border-radius: 0;
  overflow: hidden;
  background: #0d1f1a;
}

.nation-people {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.02);
}

.nation-flag-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 153, 51, 0.28) 0%,
    rgba(255, 153, 51, 0.28) 33%,
    rgba(255, 255, 255, 0.22) 33%,
    rgba(255, 255, 255, 0.22) 66%,
    rgba(19, 136, 8, 0.28) 66%,
    rgba(19, 136, 8, 0.28) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.nation-doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 260px);
  max-width: 280px;
  z-index: 2;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.nation-doctor img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-6px 4px 20px rgba(0, 0, 0, 0.35));
}

.nation-doctor-caption {
  margin: 0;
  padding: 0 0.15rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.02em;
  color: #eef6f3;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(0, 0, 0, 0.45);
}

.quote-body {
  margin: 0;
  padding: 1.75rem 1.5rem;
}

@media (min-width: 700px) {
  .quote-body {
    padding: 2rem 2.25rem;
  }
}

.quote-body .quote-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  line-height: 1.35;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.quote-body .quote-context {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--color-ink-muted);
  font-weight: 400;
}

.quote-cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-ink-muted);
}

/* Collaborate / contribute / cooperate */

.section-involve {
  background: linear-gradient(180deg, #eef5f2 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.involve-intro {
  max-width: 40rem;
}

.involve-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .involve-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    align-items: stretch;
  }
}

.involve-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.involve-card:hover,
html.js .reveal-section.is-visible .involve-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(37, 99, 168, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .involve-card:hover,
  html.js .reveal-section.is-visible .involve-card:hover {
    transform: none;
  }
}

html.js .reveal-section .involve-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

html.js .reveal-section.is-visible .involve-card {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal-section.is-visible .involve-card:nth-child(1) {
  transition-delay: 0.05s;
}
html.js .reveal-section.is-visible .involve-card:nth-child(2) {
  transition-delay: 0.12s;
}
html.js .reveal-section.is-visible .involve-card:nth-child(3) {
  transition-delay: 0.19s;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal-section .involve-card {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
  }
}

.involve-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--color-accent);
}

.involve-card p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
  flex: 1 1 auto;
}

.involve-card-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Contact */

.section-contact {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.contact-lead {
  margin: 0 0 1.75rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.contact-address {
  margin: 0;
  font-style: normal;
  line-height: 1.85;
  color: var(--color-ink-muted);
  padding: 1.25rem 1.35rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 106, 92, 0.15);
}

.contact-org {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--color-ink);
  font-size: 1.05rem;
}

.contact-channels {
  padding: 0.25rem 0;
}

.contact-line {
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  line-height: 1.5;
}

.contact-line:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: inline-block;
  min-width: 4.5rem;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-blue-deep);
}

.contact-line a {
  font-weight: 600;
  word-break: break-word;
}

/* Media coverage (press clippings) */

.section-media {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #faf9f5 0%, #f0f4f8 50%, var(--color-accent-soft) 100%);
  border-top: 1px solid rgba(45, 106, 92, 0.15);
  border-bottom: 1px solid rgba(37, 99, 168, 0.08);
}

.media-intro {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.media-coverage-hero {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 168, 0.15);
  box-shadow: var(--shadow-soft);
  background: #f0f2f5;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .media-gallery {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.25rem;
  }
}

.media-clipping-card {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 168, 0.1);
  box-shadow: 0 2px 10px rgba(30, 77, 122, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.media-clipping-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 77, 122, 0.13);
}

.media-clipping-img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: linear-gradient(180deg, #f5f3ed 0%, #e8ecf2 100%);
  cursor: zoom-in;
}

/* Full-size image lightbox (activities + media coverage) */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.image-lightbox-open {
  overflow: hidden;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 38, 0.92);
  backdrop-filter: blur(4px);
}

.image-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1400px);
  max-height: min(92vh, 1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.image-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(30, 77, 122, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}

.image-lightbox__close:hover {
  background: var(--color-accent);
  color: var(--color-ink);
  transform: scale(1.05);
}

.image-lightbox__close:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

.image-lightbox__img {
  display: block;
  max-width: min(96vw, 1400px);
  max-height: min(calc(92vh - 5rem), 1100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  background: #0d1820;
}

.image-lightbox__caption {
  margin: 0;
  max-width: 52rem;
  padding: 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #e8eef4;
  text-align: center;
}

.image-lightbox__caption:empty {
  display: none;
}

.media-clipping-caption {
  font-family: var(--font-body);
  font-size: 0.74rem;
  line-height: 1.4;
  margin: 0;
  padding: 0.45rem 0.5rem 0.55rem;
  color: var(--color-ink-muted);
  border-top: 1px solid rgba(37, 99, 168, 0.1);
  background: linear-gradient(180deg, #fff 0%, rgba(248, 250, 252, 0.95) 100%);
  text-align: center;
}

/* Footer */

.site-footer {
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, #1a3d32 55%, #152a22 100%);
  color: #d4e5f0;
  padding: 2.5rem 1.25rem;
  border-top: 3px solid var(--color-yellow);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 0.35rem;
}

.footer-tag {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.footer-contact-line {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
}

.footer-contact-line a {
  color: #b8d4e8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact-line a:hover {
  color: #fff;
}

.footer-sep {
  opacity: 0.55;
  user-select: none;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ---------- Phones & small tablets — fast load, comfortable tap targets ---------- */

@media (max-width: 767px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: clip;
  }

  .header-inner {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
    padding-top: max(0.65rem, env(safe-area-inset-top, 0px));
  }

  .nav-panel {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  .nav-panel a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding: 0.35rem 0;
  }

  .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .section {
    padding-top: 2.65rem;
    padding-bottom: 2.65rem;
  }

  .hero {
    min-height: unset;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-top: max(1.25rem, env(safe-area-inset-top, 0px));
    padding-bottom: 2.75rem;
  }

  .hero-content {
    gap: 1.65rem;
  }

  .hero-bg__orb {
    filter: blur(40px);
    opacity: 0.45;
  }

  .hero-carousel-viewport {
    min-height: 26rem;
  }

  .hero-carousel-slide {
    min-height: 26rem;
    padding: 1.05rem 1.1rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .hero-scrollCue {
    margin-top: 0.5rem;
  }

  .pollution-lungs-wrap {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .involve-grid {
    gap: 1rem;
  }

  .csr-panel {
    padding: 1.5rem 1.15rem;
  }

  .activity-gallery {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 0.75rem;
  }

  .media-gallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .site-footer {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .footer-contact-line {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-sep {
    display: none;
  }

  .quote-block,
  .quote-rows {
    min-width: 0;
  }

  .btn,
  .hero-carousel-nav {
    min-height: 2.75rem;
    touch-action: manipulation;
  }
}

/* ── WhatsApp floating button ── */

.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.15rem 0.7rem 0.75rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 3px 10px rgba(0,0,0,0.15);
}

.whatsapp-fab:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-fab__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-fab__label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-fab {
    padding: 0.75rem;
    border-radius: 50%;
    bottom: 5.5rem;
  }

  .whatsapp-fab__label {
    display: none;
  }

  .whatsapp-fab__icon {
    width: 32px;
    height: 32px;
  }
}

/* ── Back to top button ── */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-blue-deep);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 77, 122, 0.3), 0 2px 6px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
