/* ==========================================================================
   RIVON SPORTS — Design System
   High-end minimal activewear manufacturer brand
   Palette: deep navy (brand logo) + burnt orange + warm cream
   Fonts:   Barlow Condensed (display) / Manrope (body)
   ========================================================================== */

:root {
  --green-950: #0a1f3d;
  --green-900: #12356b;
  --green-800: #1b4a85;
  --green-700: #2a5fa0;
  --green-100: #e4ecf7;
  --green-50:  #f1f5fb;
  --orange:    #f27a2f;
  --orange-600:#e2651a;
  --cream:     #f7f5f0;
  --ink:       #18222e;
  --white:     #ffffff;
  --line:      rgba(18, 53, 107, 0.14);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --shadow-soft: 0 24px 60px -30px rgba(11, 31, 23, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 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: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--orange); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--green-950);
  text-wrap: balance;
}

.display {
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.display .accent { color: var(--orange); }

.h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  text-transform: uppercase;
}

.h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  text-transform: uppercase;
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: rgba(22, 33, 28, 0.78);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-600);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.muted { color: rgba(22, 33, 28, 0.62); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn .arrow { transition: transform 0.35s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }

.btn-solid {
  background: var(--green-900);
  color: #fff;
}
.btn-solid:hover { background: var(--orange); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--green-900); }

.btn-outline {
  border: 1.5px solid var(--green-900);
  color: var(--green-900);
  background: transparent;
}
.btn-outline:hover { background: var(--green-900); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--green-900);
}
.btn-light:hover { background: var(--orange); color: #fff; }

.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--green-900); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(247, 245, 240, 0.96);
  box-shadow: 0 10px 30px -24px rgba(10, 31, 61, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
  font-size: 22px;
}
.brand img {
  display: block;
  height: 36px;
  width: auto;
}
.site-footer .brand img { height: 34px; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-900);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--orange-600); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.header-quote {
  padding: 11px 22px;
  font-size: 14px;
  letter-spacing: 0.14em;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 120;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--green-900);
  transition: all 0.35s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  overflow: hidden;
  background: var(--green-950);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 31, 23, 0.92) 0%,
    rgba(11, 31, 23, 0.45) 40%,
    rgba(11, 31, 23, 0.15) 70%,
    rgba(11, 31, 23, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 90px;
}

.hero .eyebrow { color: var(--orange); }
.hero .eyebrow::before { background: var(--orange); }

.hero-title {
  color: #fff;
  margin: 18px 0 26px;
  max-width: 15ch;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin-bottom: 40px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(11,31,23,0.55);
  backdrop-filter: blur(10px);
}
.hero-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-strip li {
  padding: 22px 26px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-strip li:last-child { border-right: none; }
.hero-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-strip strong i { font-style: normal; color: var(--orange); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  background: var(--green-950);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 90px solid rgba(242, 122, 47, 0.14);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--orange); }
.page-hero .eyebrow::before { background: var(--orange); }
.page-hero h1 {
  color: #fff;
  margin: 16px 0 18px;
  max-width: 16ch;
}
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 60ch; }

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ---------- Sections ---------- */
.section { padding: clamp(84px, 10vw, 140px) 0; }
.section-tight { padding: clamp(60px, 7vw, 100px) 0; }
.section-dark { background: var(--green-950); color: #fff; }
.section-green { background: var(--green-900); color: #fff; }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section-head .lead { margin-top: 18px; max-width: 54ch; }
.section-dark .h2, .section-green .h2 { color: #fff; }
.section-dark .lead, .section-green .lead { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: var(--orange); }
.section-dark .eyebrow::before, .section-green .eyebrow::before { background: var(--orange); }

/* ---------- Value pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: pillar;
}

.pillar {
  position: relative;
  padding: 40px 34px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.pillar .num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
}
.pillar h3 { margin: 16px 0 12px; font-size: 26px; }
.pillar p { color: rgba(22,33,28,0.7); font-size: 15.5px; }
.pillar .icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  background: var(--green-50);
  color: var(--green-900);
  border-radius: 50%;
  margin-bottom: 20px;
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.product-card .media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--green-50);
}
.product-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .media img { transform: scale(1.05); }

.product-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 14px;
  background: rgba(247,245,240,0.94);
  color: var(--green-900);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-card .body {
  padding: 26px 26px 30px;
}
.product-card .body h3 { font-size: 25px; margin-bottom: 8px; }
.product-card .body p {
  font-size: 14.5px;
  color: rgba(22,33,28,0.66);
  margin-bottom: 18px;
}
.product-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.product-card .link .arrow { transition: transform 0.3s var(--ease); }
.product-card:hover .link .arrow { transform: translateX(6px); }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat .num i { font-style: normal; color: var(--orange); }
.stat .label {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.split .media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}

.split .check-list { margin-top: 30px; display: grid; gap: 14px; }
.split .check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
}
.split .check-list .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 3px;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  counter-reset: step;
}

.step {
  position: relative;
  padding: 34px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.step:hover { background: rgba(255,255,255,0.09); border-color: var(--orange); }

.step .snum {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  opacity: 0.9;
}
.step h3 {
  color: #fff;
  font-size: 22px;
  margin: 18px 0 10px;
}
.step p { color: rgba(255,255,255,0.65); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  padding: clamp(70px, 8vw, 110px) 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -140px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,0.12);
}
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--green-950); font-size: clamp(40px, 5.4vw, 68px); max-width: 18ch; }
.cta-band p { color: rgba(11,31,23,0.78); margin-top: 14px; max-width: 52ch; font-size: 16.5px; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Table / data ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.data-table th {
  background: var(--green-900);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 22px;
  font-weight: 600;
}
.data-table td {
  padding: 16px 22px;
  font-size: 15px;
  border-top: 1px solid var(--line);
  color: rgba(22,33,28,0.8);
}
.data-table tr:nth-child(even) td { background: var(--green-50); }
.data-table td:first-child { font-weight: 600; color: var(--green-900); }

/* ---------- Quality steps ---------- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.quality-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.quality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.quality-card .ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}
.quality-card h3 { font-size: 21px; margin-bottom: 8px; }
.quality-card p { font-size: 14.5px; color: rgba(22,33,28,0.68); }

/* ---------- Certification ---------- */
.certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.cert {
  text-align: center;
  padding: 34px 20px;
  border: 1px dashed rgba(255,255,255,0.28);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.cert:hover { border-color: var(--orange); background: rgba(255,255,255,0.05); }
.cert .mono {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.cert .mono i { color: var(--orange); font-style: normal; }
.cert p { margin-top: 8px; color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 48px);
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-900);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(39, 96, 76, 0.15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-note {
  font-size: 13px;
  color: rgba(22,33,28,0.55);
  margin-top: 14px;
}

.contact-info { display: grid; gap: 26px; align-content: start; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-item .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-item h4 { font-size: 18px; margin-bottom: 4px; }
.contact-item p { font-size: 14.5px; color: rgba(22,33,28,0.68); }
.contact-item a { color: var(--green-800); font-weight: 600; }
.contact-item a:hover { color: var(--orange-600); }

.promise {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background: var(--green-50);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
}
.promise p { font-size: 15px; color: var(--green-800); }

/* ---------- Values / about ---------- */
.value-list { display: grid; gap: 18px; }
.value-row {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.value-row .vn {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  min-width: 90px;
}
.value-row h3 { font-size: 24px; margin-bottom: 8px; }
.value-row p { color: rgba(22,33,28,0.68); font-size: 15.5px; max-width: 60ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.7);
  padding: clamp(60px, 7vw, 90px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.footer-brand .brand { color: #fff; font-size: 32px; }
.footer-brand p { margin: 18px 0 24px; font-size: 14.5px; max-width: 34ch; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: var(--orange); padding-left: 6px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.62);
}
.footer-contact .ic { color: var(--orange); flex: none; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.62); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---------- Form honeypot ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pillars, .product-grid, .process, .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .certs { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-strip ul { grid-template-columns: repeat(2, 1fr); }
  .hero-strip li:nth-child(2) { border-right: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--green-950);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 110;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: #fff; font-size: 22px; }
  .nav-links a::after { background: var(--orange); }
  .nav-cta .header-quote { display: none; }

  .pillars, .product-grid, .process, .quality-grid, .certs,
  .contact-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }

  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding-bottom: 70px; }
  .hero-actions .btn { width: 100%; }
  .page-hero { padding: 150px 0 70px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
