/* ============================================================
   ADAN INDUSTRIES LIMITED — Core Design System
   Integrated Agro-Industrial Campus · Ikot Ekpene, Akwa Ibom State
   ============================================================ */

:root {
  /* Palette — palm greens + RBD olein gold */
  --forest-950: #051F17;
  --forest-900: #082A1F;
  --forest-800: #0C3627;
  --forest-700: #114A34;
  --forest-600: #176044;
  --forest-500: #1F7A57;
  --gold-600: #C07F21;
  --gold-500: #E29A2E;
  --gold-400: #F0B14C;
  --gold-300: #F7C876;
  --cream-50: #FCF9F2;
  --cream-100: #F6F0E1;
  --sand-200: #EAE0C9;
  --sand-300: #DCCFAF;
  --ink-900: #0E1B14;
  --ink-700: #27362D;
  --ink-500: #57665C;
  --ink-300: #8B978D;
  --line-dark: rgba(252, 249, 242, 0.14);
  --line-light: rgba(14, 27, 20, 0.12);

  /* Type */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(8, 42, 31, 0.08);
  --shadow-lift: 0 18px 50px rgba(8, 42, 31, 0.16);
  --container: 1180px;
  --nav-h: 78px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--gold-400); color: var(--forest-950); }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.015em; }
strong { font-weight: 700; }

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

/* ---------- Layout utilities ---------- */
.container { width: min(var(--container), 100% - 3rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.section--dark { background: var(--forest-900); color: var(--cream-50); }
.section--dark p { color: rgba(252, 249, 242, 0.78); }
.section--sand { background: var(--cream-100); }
.section--forest-deep { background: linear-gradient(180deg, var(--forest-950), var(--forest-900)); color: var(--cream-50); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); }
.section--dark .eyebrow, .page-hero .eyebrow { color: var(--gold-400); }

.display-xl { font-family: var(--font-display); font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 600; }
.display-lg { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
.display-md { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-700); max-width: 62ch; }
.section--dark .lead { color: rgba(252, 249, 242, 0.8); }

.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--forest-950); box-shadow: 0 10px 24px rgba(226, 154, 46, 0.35); }
.btn--gold:hover { box-shadow: 0 14px 30px rgba(226, 154, 46, 0.45); }
.btn--forest { background: var(--forest-800); color: var(--cream-50); box-shadow: var(--shadow-soft); }
.btn--forest:hover { background: var(--forest-700); }
.btn--ghost-light { border-color: rgba(252, 249, 242, 0.4); color: var(--cream-50); }
.btn--ghost-light:hover { border-color: var(--gold-400); color: var(--gold-300); }
.nav--solid .btn--ghost-light { border-color: rgba(14, 27, 20, 0.25); color: var(--ink-900); }
.nav--solid .btn--ghost-light:hover { border-color: var(--forest-600); color: var(--forest-700); }
.btn--ghost-dark { border-color: rgba(14, 27, 20, 0.25); color: var(--ink-900); }
.btn--ghost-dark:hover { border-color: var(--forest-600); color: var(--forest-700); }
.btn--sm { padding: 0.62rem 1.25rem; font-size: 0.87rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--forest-700);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--gold-400); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  color: var(--cream-50);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav--solid {
  background: rgba(252, 249, 242, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--ink-900);
  box-shadow: 0 1px 0 var(--line-light), 0 12px 30px rgba(8, 42, 31, 0.08);
  height: 66px;
}
.nav__logo { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo svg { width: 42px; height: 42px; flex: none; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: 0.02em; }
.nav__logo-sub { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.72; }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav__link {
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em; position: relative; padding: 0.4rem 0;
  opacity: 0.88;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold-500); transition: width 0.25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { opacity: 1; color: var(--gold-400); }
.nav--solid .nav__link.is-active { color: var(--gold-600); }
.nav__cta { display: flex; align-items: center; gap: 0.9rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 0.6rem; }
.nav__burger span { width: 24px; height: 2px; background: currentColor; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
  background: linear-gradient(160deg, var(--forest-950), var(--forest-800));
  color: var(--cream-50);
  display: flex; flex-direction: column; gap: 0.4rem;
  transform: translateY(-102%); transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  padding: 0.8rem 0.2rem; border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a span { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold-400); }
.mobile-menu .btn { margin-top: 1.6rem; }
.mobile-menu__meta { margin-top: auto; font-size: 0.82rem; color: rgba(252, 249, 242, 0.6); line-height: 1.8; }

/* ---------- Home hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: var(--forest-950); color: var(--cream-50);
  padding: calc(var(--nav-h) + 4rem) 0 4rem; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 82% 8%, rgba(226, 154, 46, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(5, 31, 23, 0.82) 0%, rgba(5, 31, 23, 0.55) 45%, rgba(5, 31, 23, 0.94) 100%);
}
.hero__grid-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: 0.35; mix-blend-mode: overlay;
  background-image: linear-gradient(rgba(252,249,242,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,249,242,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid rgba(240, 177, 76, 0.35); border-radius: 999px;
  padding: 0.5rem 1.1rem; margin-bottom: 1.6rem; background: rgba(240, 177, 76, 0.08);
}
.hero__kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(240, 177, 76, 0.2); }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: rgba(252, 249, 242, 0.82); max-width: 62ch; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; backdrop-filter: blur(6px);
}
.hero__stat { background: rgba(8, 42, 31, 0.55); padding: 1.1rem 1.3rem; }
.hero__stat b { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; color: var(--gold-300); }
.hero__stat span { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(252, 249, 242, 0.65); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(226, 154, 46, 0.14), transparent 62%),
    linear-gradient(165deg, var(--forest-950) 0%, var(--forest-900) 58%, var(--forest-800) 100%);
  color: var(--cream-50); overflow: hidden;
}
.page-hero__grid {
  position: absolute; inset: 0; opacity: 0.3;
  background-image: linear-gradient(rgba(252,249,242,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,249,242,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__crumb { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(252,249,242,0.55); margin-bottom: 1.3rem; }
.page-hero__crumb a:hover { color: var(--gold-300); }
.page-hero__crumb .sep { color: var(--gold-500); }
.page-hero h1 { max-width: 20ch; margin-bottom: 1.1rem; }
.page-hero .lead { color: rgba(252, 249, 242, 0.78); }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 0.45rem 1rem;
  color: rgba(252, 249, 242, 0.8); background: rgba(252, 249, 242, 0.04);
}
.meta-chip svg { width: 14px; height: 14px; color: var(--gold-400); }

/* ---------- Trust / compliance strip ---------- */
.trust-strip { background: var(--forest-950); border-top: 1px solid var(--line-dark); padding: 1.3rem 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.8rem 2.4rem; }
.trust-item { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(252, 249, 242, 0.62); }
.trust-item svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-soft);
}
.stat-card b { display: flex; align-items: baseline; gap: 0.2rem; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 600; color: var(--forest-800); }
.stat-card b small { font-size: 0.55em; color: var(--gold-600); font-family: var(--font-body); font-weight: 800; }
.stat-card span { display: block; margin-top: 0.35rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); }

/* ---------- Generic cards & grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

.card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(226, 154, 46, 0.4); }
.card__num {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--gold-600);
  letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.card__num::after { content: ""; height: 1px; width: 34px; background: var(--gold-500); }
.card h3 { font-size: 1.18rem; margin-bottom: 0.75rem; color: var(--forest-800); }
.card p { font-size: 0.96rem; color: var(--ink-700); }
.card .link-arrow { margin-top: 1.2rem; }

.card--icon svg { width: 40px; height: 40px; color: var(--forest-600); margin-bottom: 1.1rem; }
.card--dark { background: rgba(252, 249, 242, 0.04); border-color: var(--line-dark); box-shadow: none; }
.card--dark h3 { color: var(--cream-50); }
.card--dark p { color: rgba(252, 249, 242, 0.72); }
.card--dark:hover { border-color: rgba(240, 177, 76, 0.45); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35); }

/* ---------- Split (media + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.2rem, 5vw, 4.2rem); align-items: center; }
.split--rev { grid-template-columns: 1fr 1.05fr; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); border: 1px solid var(--line-light); }
.split__media .media-tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: rgba(5, 31, 23, 0.82); backdrop-filter: blur(6px);
  color: var(--cream-50); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.55rem 0.95rem; border-radius: 999px; border: 1px solid rgba(240, 177, 76, 0.4);
  display: inline-flex; gap: 0.5rem; align-items: center;
}
.split__media .media-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); }
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p + p { margin-top: 1rem; }
.split__body .btn, .split__body .link-arrow { margin-top: 1.6rem; }

.tick-list { display: grid; gap: 0.8rem; margin-top: 1.4rem; }
.tick-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.97rem; color: var(--ink-700); }
.tick-list li svg { width: 19px; height: 19px; color: var(--forest-600); flex: none; margin-top: 0.2rem; }
.tick-list li b { color: var(--ink-900); }

/* ---------- Quote blocks (mission / vision) ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.quote-card {
  position: relative; border-radius: var(--radius-lg); padding: clamp(1.9rem, 4vw, 2.6rem);
  overflow: hidden;
}
.quote-card--mission { background: linear-gradient(150deg, var(--forest-800), var(--forest-600)); color: var(--cream-50); }
.quote-card--vision { background: linear-gradient(150deg, var(--gold-600), var(--gold-400)); color: var(--forest-950); }
.quote-card__label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.85; margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.6rem; }
.quote-card__label svg { width: 16px; height: 16px; }
.quote-card p { font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; font-weight: 500; }
.quote-card--vision p { color: var(--forest-950); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--forest-900), var(--forest-700)); color: var(--cream-50); border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 4rem); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(240, 177, 76, 0.22), transparent 65%),
    radial-gradient(500px 260px at 5% 90%, rgba(31, 122, 87, 0.5), transparent 60%);
}
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { max-width: 22ch; }
.cta-band p { margin-top: 0.8rem; color: rgba(252, 249, 242, 0.78); max-width: 52ch; }
.cta-band__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--forest-950); color: rgba(252, 249, 242, 0.72); padding: clamp(3.2rem, 6vw, 4.6rem) 0 0; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer__brand .nav__logo { margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.92rem; max-width: 34ch; }
.footer h4 { color: var(--cream-50); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; font-family: var(--font-body); }
.footer__links { display: grid; gap: 0.65rem; }
.footer__links a { font-size: 0.92rem; transition: color 0.2s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__links a::before { content: "→"; color: var(--gold-500); font-size: 0.8rem; }
.footer__links a:hover { color: var(--gold-300); }
.footer__contact { display: grid; gap: 0.9rem; font-size: 0.92rem; }
.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-500); flex: none; margin-top: 0.2rem; }
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(252, 249, 242, 0.5);
}
.footer__bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-300); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; } .reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive: global ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions .btn { width: 100%; }
  .nav__cta .btn--ghost-light { display: none; }
}
