/* =================================================================
   Cremona Logistics Services — Design System
   B2B Fresh Produce Importer
   ================================================================= */

:root {
  /* Palette */
  --pine:   #0e2f25;
  --forest: #1c5a41;
  --leaf:   #4a9d6f;
  --leaf-soft: #e7f1ea;
  --citrus: #e2872a;
  --citrus-soft: #fbeede;
  --gold:   #c9a24b;
  --ink:    #15241d;
  --muted:  #5d6e65;
  --line:   #e6e0d3;
  --cream:  #f6f3ea;
  --paper:  #fbfaf5;
  --white:  #ffffff;
  --ocean:  #14506b;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 40, 30, .06), 0 2px 8px rgba(15, 40, 30, .05);
  --shadow:    0 8px 30px rgba(15, 40, 30, .10);
  --shadow-lg: 0 20px 60px rgba(15, 40, 30, .16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--pine); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 700; letter-spacing: -.01em; }
p { color: var(--ink); }
.lead { font-size: 1.2rem; color: var(--muted); line-height: 1.6; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--citrus);
  display: inline-block;
}
.eyebrow.light { color: rgba(255,255,255,.8); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.bg-cream { background: var(--cream); }
.bg-pine  { background: var(--pine); color: #e9efe9; }
.bg-pine h1, .bg-pine h2, .bg-pine h3 { color: #fff; }
.bg-pine p { color: rgba(255,255,255,.82); }
.bg-forest { background: var(--forest); color: #eaf2ec; }
.bg-forest h2, .bg-forest h3 { color: #fff; }

.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 14px 0 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--citrus); color: #fff; }
.btn-primary:hover { background: #c9741e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--pine); color: #fff; }
.btn-dark:hover { background: var(--forest); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }

.link-arrow {
  font-weight: 600; color: var(--forest); display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: .7rem; }
.link-arrow::after { content: "→"; }

/* ===============================================================
   HEADER
   =============================================================== */
.topbar {
  background: var(--pine); color: rgba(255,255,255,.7);
  font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 18px; }
.topbar a { color: rgba(255,255,255,.78); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,245,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { line-height: 1.05; }
.logo-text strong { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--pine); display: block; letter-spacing: -.01em; }
.logo-text span { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--citrus); font-weight: 700; }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem .85rem; font-size: .95rem; font-weight: 500; color: var(--ink);
  border-radius: var(--radius); transition: color .2s, background .2s;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--forest); }
.nav-link .caret { width: 12px; height: 12px; transition: transform .25s; opacity: .6; }
.nav-item:hover .nav-link .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 256px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s var(--ease); z-index: 50;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; flex-direction: column; gap: 1px; padding: .6rem .75rem; border-radius: var(--radius);
  transition: background .18s;
}
.dropdown a:hover { background: var(--leaf-soft); }
.dropdown a strong { font-size: .92rem; font-weight: 600; color: var(--pine); }
.dropdown a small { font-size: .78rem; color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--pine); }

/* ===============================================================
   HERO
   =============================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #0a241b 0%, #103a2b 48%, #1c5a41 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 26px 26px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 96px 0 104px; max-width: 760px; }
.hero h1 { color: #fff; margin: 20px 0 22px; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.22rem; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 60px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--serif); font-size: 2.4rem; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: .82rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; z-index: 1; }
.hero-glow.a { width: 460px; height: 460px; background: #2c7a55; top: -120px; right: -80px; }
.hero-glow.b { width: 360px; height: 360px; background: var(--citrus); bottom: -160px; right: 18%; opacity: .25; }

/* Page hero (interior) */
.page-hero {
  background: linear-gradient(120deg, #0c2a20 0%, #163f2e 100%);
  color: #fff; padding: 70px 0 64px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 24px 24px;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; max-width: 760px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.12rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; gap: .5rem; align-items: center; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ===============================================================
   CARDS & COMPONENTS
   =============================================================== */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--leaf-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--forest);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--citrus-soft); color: var(--citrus);
}
.feature-icon svg { width: 28px; height: 28px; }

/* Product / category card with image band */
.cat-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card .band { height: 150px; position: relative; overflow: hidden; }
.cat-card .band svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cat-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cat-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.cat-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-size: .76rem; font-weight: 600; padding: .25rem .65rem; border-radius: 100px;
  background: var(--leaf-soft); color: var(--forest);
}
.tag.citrus { background: var(--citrus-soft); color: #b3661a; }

/* Stat band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.statband .item { padding: 34px 26px; border-right: 1px solid var(--line); }
.statband .item:last-child { border-right: none; }
.statband .num { font-family: var(--serif); font-size: 2.6rem; color: var(--forest); line-height: 1; }
.statband .lbl { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* Split section (text + visual) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; position: relative;
  box-shadow: var(--shadow);
}
.split-media svg { width: 100%; height: 100%; display: block; }

/* Checklist */
.checklist li { display: flex; gap: .8rem; align-items: flex-start; padding: .55rem 0; color: var(--ink); }
.checklist li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--leaf-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231c5a41' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  margin-top: 3px;
}
.checklist.light li { color: rgba(255,255,255,.9); }

/* Process / timeline steps */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .no {
  counter-increment: step; width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--forest); color: var(--forest); font-family: var(--serif);
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
}
.step .no::before { content: "0" counter(step); }
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .96rem; }

/* Cold chain temperature pills */
.temp-row { display: flex; flex-wrap: wrap; gap: 12px; }
.temp-pill {
  border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem;
  font-size: .9rem; display: flex; align-items: center; gap: .5rem; background: #fff;
}
.temp-pill .dot { width: 10px; height: 10px; border-radius: 50%; }

/* Logos / partners strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; }
.logo-chip {
  flex: 1 1 160px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; background: #fff; display: flex; flex-direction: column; gap: 6px;
}
.logo-chip strong { font-family: var(--serif); color: var(--pine); font-size: 1.1rem; }
.logo-chip small { color: var(--muted); font-size: .8rem; }

/* Quote / testimonial */
.quote {
  background: var(--white); border-left: 4px solid var(--citrus); border-radius: var(--radius-lg);
  padding: 34px 38px; box-shadow: var(--shadow-sm);
}
.quote blockquote { font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; color: var(--pine); }
.quote .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--leaf-soft); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--forest); }
.quote .who strong { display: block; font-size: .95rem; }
.quote .who small { color: var(--muted); }

/* Map of origins */
.origin-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.origin-list .o { background: #fff; padding: 18px 20px; }
.origin-list .o .flag { font-size: 1.4rem; }
.origin-list .o strong { display: block; font-size: 1rem; color: var(--pine); margin: 4px 0 2px; }
.origin-list .o small { color: var(--muted); font-size: .82rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--forest), var(--pine));
  border-radius: var(--radius-lg); padding: 64px 56px; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  border-radius: 50%; background: rgba(226,135,42,.18); filter: blur(40px);
}
.cta-band h2 { color: #fff; max-width: 600px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 540px; margin: 14px 0 28px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }

/* Accordion (FAQ) */
.accordion { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:last-child { border-bottom: none; }
.acc-head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--pine);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc-head .ic { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s; color: var(--forest); }
.acc-item.open .acc-head .ic { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-body p { padding: 0 26px 24px; color: var(--muted); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--pine); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .98rem; padding: .8rem .95rem;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); }
.field textarea { resize: vertical; min-height: 130px; }

/* Info rows (contact) */
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .feature-icon { width: 46px; height: 46px; }
.info-row .feature-icon svg { width: 22px; height: 22px; }
.info-row h4 { margin-bottom: 3px; }
.info-row p { color: var(--muted); font-size: .95rem; }

/* News cards */
.post {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .band { height: 168px; position: relative; }
.post .band svg { width: 100%; height: 100%; }
.post .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; display: flex; gap: 10px; }
.post .meta .cat { color: var(--citrus); font-weight: 700; }
.post h3 { font-size: 1.25rem; margin-bottom: 10px; }
.post p { color: var(--muted); font-size: .94rem; flex: 1; }

/* Team */
.member { text-align: center; }
.member .av {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--leaf-soft), #d6e8dc); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2.2rem; color: var(--forest); border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.member strong { display: block; font-size: 1.1rem; color: var(--pine); }
.member small { color: var(--citrus); font-weight: 600; }
.member p { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* Value props with left border */
.vlist { display: grid; gap: 20px; }
.vitem { display: flex; gap: 18px; align-items: flex-start; }
.vitem h4 { margin-bottom: 5px; }
.vitem p { color: var(--muted); font-size: .96rem; }

/* Pill tabs / chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: .45rem 1rem; border-radius: 100px; border: 1px solid var(--line); background: #fff; font-size: .9rem; font-weight: 500; }

/* Misc utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 28px; }
.mt-3 { margin-top: 44px; }
.mb-2 { margin-bottom: 28px; }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.text-muted { color: var(--muted); }
.maxw-720 { max-width: 720px; }

/* Prose (article body) */
.prose p { margin-bottom: 18px; color: #2c3a33; }
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 30px 0 12px; }
.prose ul { margin: 0 0 18px; padding-left: 0; }
.prose ul li { padding: .35rem 0 .35rem 1.6rem; position: relative; color: #2c3a33; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 7px; height: 7px; border-radius: 50%; background: var(--citrus); }
.prose blockquote { border-left: 4px solid var(--leaf); padding: 4px 0 4px 22px; margin: 24px 0; font-family: var(--serif); font-size: 1.3rem; color: var(--pine); }

/* ===============================================================
   FOOTER
   =============================================================== */
.site-footer { background: var(--pine); color: rgba(255,255,255,.72); padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 16px; max-width: 300px; }
.footer-col h5 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--sans); }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,.62); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--citrus); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.5); }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { color: rgba(255,255,255,.6); }
.footer-bottom .socials a:hover { color: #fff; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.footer-badge { font-size: .72rem; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: .3rem .6rem; color: rgba(255,255,255,.7); }

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

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 1024px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .statband .item:nth-child(2) { border-right: none; }
  .statband .item:nth-child(1), .statband .item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .g-3 { grid-template-columns: 1fr 1fr; }
  .origin-list { grid-template-columns: repeat(2, 1fr); }

  /* Mobile menu */
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px;
    box-shadow: var(--shadow); max-height: calc(100vh - 116px); overflow-y: auto;
  }
  .nav-menu.open .nav-item { width: 100%; }
  .nav-menu.open .nav-link { width: 100%; padding: .85rem; font-size: 1rem; justify-content: space-between; }
  .nav-menu.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--leaf-soft); border-radius: 0; margin: 0 0 8px 14px; padding: 0 0 0 8px;
    display: none;
  }
  .nav-menu.open .nav-item.expanded .dropdown { display: block; }
  .nav-menu.open .nav-item:hover .dropdown { opacity: 1; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr; }
  .statband .item { border-right: none; border-bottom: 1px solid var(--line); }
  .statband .item:last-child { border-bottom: none; }
  .origin-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-band { padding: 40px 26px; }
  .topbar-left span:nth-child(2) { display: none; }
  .quote { padding: 26px; }
  .split-media { min-height: 280px; }
}
