/* ============================================================
   Cool Ocean Impex — Brand Stylesheet
   "Heritage Modernist" — deep forest green, editorial, premium
   Single source of truth for all colors, type, and components.
   Edit the variables in :root to re-theme the whole site.
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand ramp — BEEF RED (var names kept as *-green-* / *-mint-* for
     backward compatibility; they hold the red/orange brand ramp now). */
  --green-900: #3a0c0c;   /* darkest maroon — footer / dark sections */
  --green-800: #6d141a;   /* deep beef — headings */
  --green-700: #b01e24;   /* PRIMARY — rich beef red */
  --green-600: #b3301c;   /* accent text / links (accessible red-orange) */
  --mint-300:  #ffb38f;   /* warm light accent on dark backgrounds */
  --mint-100:  #fce0d7;   /* soft warm container */
  --gold:      #c5a059;   /* premium gold accent (pairs with red) */

  /* Surfaces & ink (warm-neutral so the red pops) */
  --cream:     #f7f6f4;   /* page background — clean near-white */
  --surface:   #ffffff;   /* cards */
  --surface-2: #f5efec;   /* subtle section */
  --surface-3: #efe5e1;   /* deeper section */
  --ink:       #211613;   /* primary text */
  --ink-muted: #5e504b;   /* secondary text */
  --line:      rgba(176, 30, 36, 0.12);
  --line-strong: rgba(176, 30, 36, 0.20);

  /* Semantic */
  --primary: var(--green-700);
  --on-primary: #ffffff;

  /* Type */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(45, 12, 12, 0.07);
  --shadow-md: 0 14px 40px rgba(45, 12, 12, 0.12);
  --shadow-lg: 0 28px 70px rgba(45, 12, 12, 0.18);
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; color: var(--green-800); }
section { scroll-margin-top: calc(var(--header-h) + 12px); }

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

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section-sm { padding-block: clamp(40px, 5vw, 64px); }
.bg-surface-2 { background: var(--surface-2); }
.bg-surface-3 { background: var(--surface-3); }
.bg-primary { background: var(--green-700); color: #fff; }
.bg-dark { background: var(--green-900); color: #fff; }
.text-center { text-align: center; }
.center-narrow { max-width: 720px; margin-inline: auto; }

/* Eyebrow + section heads */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}
.bg-primary .eyebrow, .bg-dark .eyebrow { color: var(--mint-300); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--green-800);
}
.bg-primary .section-title, .bg-dark .section-title, .bg-primary h2, .bg-primary h3, .bg-dark h2 { color: #fff; }
.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-muted);
  max-width: 60ch;
  margin-top: 16px;
}
.bg-primary .section-lead, .bg-dark .section-lead { color: rgba(255,255,255,0.8); }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  transition: transform 0.15s var(--ease), background-color 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); filter: brightness(1.06); }
.btn-light { background: #fff; color: var(--green-700); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--mint-100); }
.btn-ghost { background: transparent; color: var(--green-800); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--green-700);
  transition: gap 0.2s var(--ease);
}
.arrow-link:hover { gap: 14px; }
.arrow-link svg { width: 18px; height: 18px; }

/* ---------- 5. Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint-100); color: var(--green-800);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.pill-gold { background: rgba(197,160,89,0.18); color: #6b5320; }
.pill-glass { background: rgba(255,255,255,0.16); color:#fff; backdrop-filter: blur(8px); }

/* ---------- 5b. Halal tag + brand stamp on food imagery ---------- */
/* Any image wrapper with .has-tags gets relative positioning for overlays. */
.has-tags { position: relative; }
.halal-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.96);
  color: var(--green-700);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px 6px 9px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.halal-tag svg { width: 15px; height: 15px; flex: none; }
.brand-stamp {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center;
  background: rgba(58,12,12,0.78); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(197,160,89,0.55);
}
.brand-stamp .acc { color: var(--gold); }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(248, 250, 244, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-size: 1.35rem; font-weight: 900; letter-spacing: -0.04em;
  color: var(--green-800); text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.brand span { color: var(--green-600); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(25,29,25,0.6); white-space: nowrap;
  padding: 6px 0; position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--green-700); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--green-800); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green-800); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-size: 0.85rem; font-weight: 700; color: var(--green-800); white-space: nowrap; }
.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  color: var(--green-800);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--cream);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.4rem; font-weight: 800; color: var(--green-800);
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 820px);
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(35,8,8,0.55) 0%, rgba(35,8,8,0.18) 30%, rgba(35,8,8,0.45) 100%),
    linear-gradient(100deg, rgba(40,8,10,0.94) 0%, rgba(80,16,18,0.80) 50%, rgba(120,24,26,0.52) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; padding-block: 60px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 900; line-height: 1.02; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--mint-300); }
.hero p { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,0.86); max-width: 56ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Compact hero (interior pages) */
.hero-sm { min-height: clamp(380px, 52vh, 520px); }
.hero-sm h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ---------- 8. Trust strip / stats ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface-2); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.trust-grid .stat-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--green-700); line-height: 1; }
.trust-grid .stat-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-top: 8px; }

/* ---------- 9. Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Category cards (image w/ overlay) */
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 360px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(35,8,8,0.88) 5%, rgba(35,8,8,0.12) 55%, transparent); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-body { position: relative; z-index: 1; padding: 28px; color: #fff; }
.cat-card h3 { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.cat-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.cat-card.tall { min-height: 420px; }
.cat-card.wide { min-height: 300px; }

/* Product cards */
.product-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s var(--ease); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-media .tag { position: absolute; top: 16px; left: 16px; }
.product-body { padding: 22px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.product-sku { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; color: var(--green-700); text-transform: uppercase; }
.product-state { font-size: 0.78rem; color: var(--ink-muted); }
.product-card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--green-800); }
.product-card .desc { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 18px; }

/* Feature / icon rows */
.feature { display: flex; gap: 18px; }
.feature .ic {
  flex: none; width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center;
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h4 { font-size: 1.15rem; margin-bottom: 6px; color: var(--green-800); }
.feature p { color: var(--ink-muted); font-size: 0.95rem; }
.bg-primary .feature .ic, .bg-dark .feature .ic { background: rgba(255,255,255,0.12); }
.bg-primary .feature h4, .bg-dark .feature h4 { color: #fff; }
.bg-primary .feature p, .bg-dark .feature p { color: rgba(255,255,255,0.78); }

/* Feature card — boxed variant for grids alongside .segment-card */
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; text-align: center;
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card .ic { margin-inline: auto; }

/* Segment cards (who we serve) */
.segment-card {
  padding: 36px 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.segment-card:hover { background: var(--green-700); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.segment-card .seg-ic { width: 56px; height: 56px; color: var(--green-700); margin-bottom: 22px; }
.segment-card:hover .seg-ic, .segment-card:hover h3, .segment-card:hover p, .segment-card:hover li { color: #fff; }
.segment-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.segment-card p { color: var(--ink-muted); }
.segment-card ul { margin-top: 18px; display: grid; gap: 10px; }
.segment-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-muted); }
.segment-card li svg { flex: none; width: 18px; height: 18px; color: var(--green-600); margin-top: 3px; }
.segment-card:hover li svg { color: var(--mint-300); }

/* Supplier cards */
.supplier-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: box-shadow 0.3s, transform 0.3s var(--ease); }
.supplier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.supplier-card .sup-name { font-size: 1.3rem; font-weight: 900; color: var(--green-800); letter-spacing: -0.01em; }
.supplier-card .sup-tag { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-top: 4px; margin-bottom: 16px; }
.supplier-card p { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: 18px; }
.supplier-card .chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* Team cards */
.team-card { text-align: left; }
.team-card .team-photo { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 0.5s; }
.team-card:hover .team-photo img { filter: grayscale(0); }
.team-card h4 { font-size: 1.25rem; margin-bottom: 2px; }
.team-card .role { color: var(--green-600); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { color: var(--ink-muted); font-size: 0.92rem; }

/* Partner logos (text-based, credible placeholder) */
.partner-row { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: center; justify-content: center; }
.partner-name { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 900; letter-spacing: -0.02em; color: var(--green-800); opacity: 0.45; transition: opacity 0.3s; }
.partner-name:hover { opacity: 0.85; }

/* Logo wall — compact uniform cards; drop real logo files into each .logo-card */
.logo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 860px; margin-inline: auto; }
.logo-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 92px; display: flex; align-items: center; justify-content: center;
  padding: 16px 20px; text-align: center;
  transition: box-shadow 0.25s, transform 0.25s var(--ease);
}
.logo-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.logo-card img { max-height: 46px; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: 0.78; transition: filter 0.25s, opacity 0.25s; }
.logo-card:hover img { filter: none; opacity: 1; }
.logo-card .wordmark { font-weight: 900; letter-spacing: -0.01em; color: var(--green-800); font-size: clamp(0.95rem, 2vw, 1.15rem); line-height: 1.15; }
@media (max-width: 640px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 10. Split / editorial blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.lean-left { grid-template-columns: 5fr 7fr; }
.split.lean-right { grid-template-columns: 7fr 5fr; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.media-figure { position: relative; }
.float-stat {
  position: absolute; bottom: -28px; left: -28px;
  background: #fff; padding: 26px 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.float-stat .n { font-size: 2.4rem; font-weight: 900; color: var(--green-700); line-height: 1; }
.float-stat .l { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); margin-top: 6px; }

/* ---------- 10b. MontPak-style product rows ---------- */
.product-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.product-row-media img {
  width: 100%;
  height: clamp(340px, 40vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.product-row-body .section-title { margin-top: 4px; }
.row-sub {
  color: var(--green-600);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 14px 0 18px;
}
.product-row-body > p:not(.row-sub) { color: var(--ink-muted); font-size: 1.02rem; }
.cut-list { display: grid; gap: 2px; margin: 24px 0 30px; }
.cut-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-weight: 600; color: var(--green-800);
}
.cut-list li:first-child { border-top: 1px solid var(--line); }
.cut-list .sku {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--green-600); text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 860px) {
  .product-row { grid-template-columns: 1fr; }
}

/* ---------- 11. Stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-block .n { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; color: var(--green-700); line-height: 1; }
.bg-primary .stat-block .n, .bg-dark .stat-block .n { color: var(--mint-300); }
.stat-block .u { font-size: 1.1rem; font-weight: 700; color: var(--green-600); }
.stat-block h4 { margin-top: 12px; font-size: 1.05rem; color: var(--green-800); }
.stat-block p { color: var(--ink-muted); font-size: 0.9rem; margin-top: 4px; }
.bg-primary .stat-block h4, .bg-dark .stat-block h4 { color: #fff; }
.bg-primary .stat-block p, .bg-dark .stat-block p { color: rgba(255,255,255,0.75); }

/* ---------- 12. Certification grid ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; text-align: center; }
.cert-item svg { width: 48px; height: 48px; color: var(--green-700); margin-bottom: 16px; }
.cert-item h4 { color: var(--green-800); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1rem; margin-bottom: 8px; }
.cert-item p { color: var(--ink-muted); font-size: 0.88rem; }

/* ---------- 13. CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: var(--radius-lg);
  min-height: clamp(280px, 26vw, 380px);
  padding: clamp(48px, 6vw, 80px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.14), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 14. Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface-2); border: 1.5px solid transparent; border-radius: var(--radius);
  padding: 14px 16px; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(71,80,72,0.45); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(176,30,36,0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.82rem; color: var(--ink-muted); margin-top: 14px; }
.form-success {
  display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius);
  background: var(--mint-100); color: var(--green-800); font-weight: 600;
}
.form-success.show { display: block; }

/* Contact info card */
.info-card { background: var(--green-700); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); }
.info-card h3 { color: #fff; margin-bottom: 24px; }
.info-row { display: flex; gap: 16px; margin-bottom: 22px; }
.info-row svg { flex: none; width: 24px; height: 24px; color: var(--mint-300); margin-top: 2px; }
.info-row .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.info-row .val { font-size: 1.05rem; font-weight: 700; }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--green-900); color: #fff; padding-block: 64px 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 34ch; }
.footer-col h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.92rem; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint-300); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
}

/* ---------- 16. Tabs (products filter) ---------- */
.tabs { position: sticky; top: var(--header-h); z-index: 40; background: rgba(248,250,244,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.tabs-inner { display: flex; gap: 32px; overflow-x: auto; padding-block: 18px; scrollbar-width: none; }
.tabs-inner::-webkit-scrollbar { display: none; }
.tabs a { white-space: nowrap; font-weight: 700; color: var(--ink-muted); padding-bottom: 4px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.tabs a:hover { color: var(--green-700); }

/* ---------- 17. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  /* Collapse primary nav into the mobile menu */
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta > .btn { display: none; }
}
@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .split, .split.lean-left, .split.lean-right { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .float-stat { position: static; margin-top: 18px; box-shadow: var(--shadow-md); }
  .order-mobile-first { order: -1; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid, .stat-band { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- 19. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
