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

:root {
  --green:      #216E4A;
  --green-mid:  #1a5a3c;
  --gold:       #E4B047;
  --dark-grey:  #4D4D4D;
  --light-grey: #E1E1E1;
  --bg:         #F7F5F0;
  --bg-2:       #EDEAE3;
  --text:       #111111;
  --text-muted: #6b6b6b;
  --border:     rgba(0,0,0,0.09);
  --ease-brand: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(33,110,74,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,110,74,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: -1;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--green); }

/* ── SELECTION ── */
::selection { background: var(--green); color: #fff; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  mix-blend-mode: normal;
  background: rgba(247,245,240,0.76);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border-bottom: 1px solid rgba(77,77,77,0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset;
  transition: background 0.4s, padding 0.4s, border-color 0.4s, box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(77,77,77,0.2);
  box-shadow: 0 14px 36px rgba(17,17,17,0.045), 0 1px 0 rgba(255,255,255,0.45) inset;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 3px solid var(--dark-grey);
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(20vw, 26vw, 32vw);
  color: transparent;
  -webkit-text-stroke: 1px rgba(33,110,74,0.07);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-panel {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-panel-green {
  right: 0;
  top: 0;
  width: min(38vw, 520px);
  height: 58vh;
  background: var(--green);
  transform-origin: top;
}

.hero-panel-gold {
  right: min(28vw, 380px);
  bottom: 0;
  width: min(18vw, 240px);
  height: 26vh;
  background: var(--gold);
  transform-origin: bottom;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line span {
  display: block;
}

.hero-headline .accent {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
}

.hero-card {
  position: absolute;
  right: 4rem;
  bottom: 5rem;
  z-index: 2;
  width: min(28vw, 280px);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(247,245,240,0.88);
  border: 1px solid rgba(33,110,74,0.16);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--gold);
}

.hero-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 4px solid var(--dark-grey);
  border-radius: 3px;
}

.hero-card-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero-card > span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--green);
  text-transform: uppercase;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--green);
  padding-bottom: 0.25rem;
  opacity: 0;
  transition: color 0.3s, border-color 0.3s;
}

.cta-link:hover { color: var(--green); }

.cta-link .arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.cta-link:hover .arrow { transform: translateY(4px); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── SECTION SHARED ── */
.section-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-headline em {
  font-style: normal;
  color: var(--gold);
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: block;
}

/* ── ABOUT ── */
#about {
  padding: 10rem 4rem;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  gap: 4rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-label { grid-column: 1; grid-row: 1; }

.about-body {
  grid-column: 2;
  grid-row: 1;
}

.about-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.about-manifesto {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 760px;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-manifesto span {
  flex: 1 1 180px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  padding: 1.2rem 1.2rem 1.2rem 0;
  overflow: hidden;
}

.about-stat-row {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 4rem;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── BRANDS ── */
#brands {
  padding: 10rem 4rem;
  border-top: 1px solid var(--border);
}

.brands-header {
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.brands-intro {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-top: 1.25rem;
}

.brands-list {
  max-width: 1200px;
  margin: 0 auto;
}

.brand-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  cursor: default;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0%, rgba(33,110,74,0.035) 48%, transparent 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  transition: padding-left 0.45s var(--ease-brand), letter-spacing 0.45s var(--ease-brand);
}

.brand-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-accent, var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-brand);
  z-index: 0;
  opacity: 0.07;
}

.brand-row:hover::before { transform: scaleX(1); }
.brand-row:hover { padding-left: 1rem; }

.brand-row > * { position: relative; z-index: 1; }

.brand-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.brand-index {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.brand-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}

.brand-row:hover .brand-info h3 { color: var(--brand-accent, var(--green)); }

.brand-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.brand-domain {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: lowercase;
  transition: color 0.3s;
}

.brand-row:hover .brand-domain { color: var(--gold); }

.brand-symbol {
  width: 9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent, var(--green));
  opacity: 0;
  transform: translateX(18px);
}

/* ── GOVERNANCE ── */
#governance {
  padding: 10rem 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gov-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gov-watermark {
  position: absolute;
  right: -2rem;
  top: -5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(33,110,74,0.08);
  pointer-events: none;
}

.gov-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4rem 6rem;
  margin-bottom: 4rem;
}

.gov-label { padding-top: 0.15rem; }

.gov-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.gov-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.gov-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem 6rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
}

.gov-step-line {
  position: absolute;
  left: 0;
  top: -1px;
  height: 1px;
  width: 0;
  background: var(--gold);
  z-index: 1;
}

.gov-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--green);
  padding-top: 0.2rem;
}

.gov-step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.gov-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.gov-step-desc code {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--green-mid);
  background: rgba(33,110,74,0.08);
  padding: 0.1em 0.4em;
  border-radius: 2px;
  word-break: break-all;
}

.gov-body p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.gov-links {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.gov-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  transition: color 0.3s;
}

.gov-link:hover { color: var(--green); }

.gov-link .ext {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.gov-link:hover .ext { color: var(--gold); }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  background: var(--bg-2);
}

.marquee-scroller {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-scroller span {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── CONTACT ── */
#contact {
  padding: 10rem 4rem;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4rem 6rem;
  margin-bottom: 4rem;
}

.contact-label { padding-top: 0.15rem; }

.contact-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.contact-link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s;
}

.contact-link-row:hover { color: var(--green); }

.contact-link-label {
  font-size: 1rem;
}

.contact-link-url {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-link-row:hover .contact-link-url { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
}

.footer-logo-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  max-width: 220px;
  line-height: 1.6;
  margin-top: 0.25rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */

/* burger — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s cubic-bezier(0.76,0,0.24,1), opacity 0.2s;
  transform-origin: center;
}

.nav-burger.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 2rem 3rem;
  gap: 0;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 10vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  transition: color 0.25s;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--green); }

@media (max-width: 768px) {
  /* nav */
  #nav { padding: 1.25rem 1.5rem; }
  #nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* sections padding */
  #hero      { padding: 0 1.5rem; }
  #about     { padding: 5rem 1.5rem; }
  #brands    { padding: 5rem 1.5rem; }
  #governance{ padding: 5rem 1.5rem; }
  #contact   { padding: 5rem 1.5rem; }

  /* hero */
  .hero-headline { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-panel-green { width: 44vw; height: 34vh; opacity: 0.72; }
  .hero-panel-gold { right: 20vw; width: 24vw; height: 16vh; opacity: 0.9; }
  .hero-card {
    right: 1.5rem;
    bottom: 5.5rem;
    width: 160px;
    min-height: 138px;
    padding: 1rem;
  }
  .hero-card-logo {
    width: 48px;
    height: 48px;
    border-width: 3px;
  }
  .hero-card-logo img {
    width: 30px;
    height: 30px;
  }
  .hero-card > span:last-child { font-size: 1.05rem; }

  /* about */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-label    { grid-column: 1; grid-row: 1; }
  .about-body     { grid-column: 1; grid-row: 2; }
  .about-stat-row { grid-column: 1; grid-row: 3; gap: 2rem; flex-wrap: wrap; }
  .about-body p   { font-size: 0.95rem; }
  .about-manifesto { flex-direction: column; }
  .about-manifesto span { flex-basis: auto; }

  /* brands */
  .brands-header { margin-bottom: 2.5rem; }
  .brand-row { grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.75rem 0; }
  .brand-domain,
  .brand-symbol { display: none; }
  .brand-info h3 { font-size: clamp(1.3rem, 6vw, 2rem); }

  /* governance */
  .gov-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .gov-step { grid-template-columns: 40px 1fr; gap: 1rem; }
  .gov-watermark { right: 0; top: -3rem; }

  /* contact */
  .contact-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .contact-sub { font-size: 0.95rem; }

  /* footer */
  .footer-inner { padding: 0 1.5rem; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 0 3rem;
  }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 480px) {
  #nav { padding: 1rem 1.25rem; }
  #nav.scrolled { padding: 0.875rem 1.25rem; }

  #hero, #about, #brands, #governance, #contact { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer-inner { padding: 0 1.25rem; }

  .hero-headline { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .section-headline { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .about-stat-row { gap: 1.5rem; }
  .stat-num { font-size: 2.4rem; }

  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
}
