/* ==========================================================
   Jamnat Export Ltd — styles
   Palette drawn from the Jamaican flag + the brand logo.
   ========================================================== */

:root {
  /* Brand */
  --green-950: #06200f;
  --green-900: #0a2e17;
  --green-800: #0f3d1f;
  --green-700: #155a2c;
  --green-500: #009b3a;   /* flag green */
  --gold-400: #fed100;    /* flag gold */
  --gold-500: #f2c200;
  --black: #0a0a0a;

  /* Surfaces & text */
  --bg: #f3f4ef;
  --surface: #ffffff;
  --surface-tint: #eef1e8;
  --text: #0f1a12;
  --text-muted: #56615a;
  --text-soft: #8a948d;
  --border: #e1e5dc;
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.78);

  /* Type */
  --font-sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  /* Shape & motion */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 1px 2px rgba(10, 46, 23, 0.04), 0 8px 24px -12px rgba(10, 46, 23, 0.18);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.02em; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

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

main section[id] { scroll-margin-top: 84px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--gold-400); color: var(--black);
  padding: 10px 16px; border-radius: 10px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Jamaican flag (pure CSS) ---------- */
.flag {
  display: inline-block; flex: none;
  width: 18px; height: 12px; border-radius: 2px;
  background:
    linear-gradient(to top right, transparent calc(50% - 1.2px), var(--gold-400) calc(50% - 1.2px), var(--gold-400) calc(50% + 1.2px), transparent calc(50% + 1.2px)),
    linear-gradient(to top left,  transparent calc(50% - 1.2px), var(--gold-400) calc(50% - 1.2px), var(--gold-400) calc(50% + 1.2px), transparent calc(50% + 1.2px)),
    conic-gradient(from -56.31deg, var(--green-500) 0 112.62deg, var(--black) 0 180deg, var(--green-500) 0 292.62deg, var(--black) 0);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 22px;
  border-radius: 999px; border: 1px solid transparent;
  font-size: 15px; font-weight: 500; white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold-400); color: var(--black); }
.btn-gold:hover { background: #ffe14d; }
.btn-light { background: #fff; color: var(--green-900); }
.btn-light:hover { background: var(--gold-400); color: var(--black); }
.btn-outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: rgba(255, 255, 255, 0.04); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
.btn-block { width: 100%; }
.btn-glass {
  color: #fff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.22); border-color: #fff; }
.btn-glass svg { color: var(--gold-400); }
.btn-glass:hover svg { transform: none; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 18px; padding: 5px 12px 5px 10px;
  font-size: 13px; font-weight: 500; color: var(--green-800);
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }
.eyebrow-dark { color: #fff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.22); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.eyebrow-dark .dot { background: var(--gold-400); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 16px var(--gutter);
  transition: padding 0.3s var(--ease);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 8px 8px 10px;
  border-radius: 999px;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s;
}
.site-header.is-scrolled .header-inner {
  background: rgba(10, 46, 23, 0.72);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.35);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; background: #fff;
  display: grid; place-items: center; overflow: hidden; flex: none;
}
.brand-mark img { width: 36px; height: 36px; object-fit: contain; }
.brand-name { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }

.nav-pill {
  display: flex; gap: 2px; padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav-pill a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; color: rgba(255, 255, 255, 0.86);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-pill a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav-pill a.is-active { background: #fff; color: var(--green-900); font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.call-icon {
  display: none; width: 44px; height: 44px; border-radius: 50%; place-items: center;
  background: var(--gold-400); color: var(--black);
}
.call-icon svg { width: 18px; height: 18px; }
.call-icon { border: 0; cursor: pointer; }

/* Call number picker */
.call-wrap { position: relative; display: flex; }
.call-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
  width: 270px; padding: 10px;
  border-radius: var(--radius); background: #fff; color: var(--text);
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(10, 46, 23, 0.06);
  transform-origin: top right; animation: popIn 0.18s var(--ease);
}
.call-menu[hidden] { display: none; }
@keyframes popIn { from { opacity: 0; transform: translateY(-4px) scale(0.97); } }
.call-menu-title { margin: 4px 8px 8px; font-size: 13px; color: var(--text-muted); }
.call-option {
  display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 8px 10px;
  border-radius: 12px; transition: background-color 0.15s var(--ease);
}
.call-option:hover, .call-option:focus-visible { background: var(--surface-tint); }
.call-option strong { display: block; font-size: 15px; font-weight: 600; color: var(--green-900); }
.call-option small { display: block; font-size: 14px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.call-option .flag, .call-option .flag-us { width: 24px; height: 16px; }
.flag-us {
  display: inline-block; flex: none; width: 18px; height: 12px; border-radius: 2px;
  background:
    linear-gradient(#3c3b6e, #3c3b6e) 0 0 / 40% 54% no-repeat,
    repeating-linear-gradient(#b22234 0 7.69%, #fff 7.69% 15.38%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.mobile-menu-label { margin: 10px 14px 2px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.6); }
.mobile-call { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-call .btn { margin-top: 0; padding: 0 12px; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer; position: relative;
}
.menu-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  margin: 10px auto 0; max-width: var(--container);
  display: flex; flex-direction: column; gap: 4px; padding: 12px;
  border-radius: var(--radius);
  background: rgba(10, 46, 23, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) { color: #fff; padding: 12px 14px; border-radius: 12px; font-size: 16px; }
.mobile-menu a:not(.btn):hover { background: rgba(255, 255, 255, 0.08); }
.mobile-menu .btn { margin-top: 6px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden;
  background: var(--green-900);
}
@supports (min-height: 100svh) { .hero { min-height: 100svh; } }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 32, 15, 0.55) 0%, rgba(6, 32, 15, 0.05) 30%, rgba(6, 32, 15, 0.35) 60%, rgba(6, 32, 15, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 32, 15, 0.55) 0%, rgba(6, 32, 15, 0) 60%);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content { position: relative; padding-top: 140px; padding-bottom: 56px; }
.hero-title {
  font-size: clamp(40px, 7.2vw, 96px);
  line-height: 0.98; letter-spacing: -0.035em; font-weight: 400;
  max-width: 11em;
}
.hero-title em { color: var(--gold-400); }
.hero-sub { margin: 24px 0 32px; max-width: 46ch; font-size: clamp(16px, 1.4vw, 18px); color: var(--on-dark-muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-footer {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 20px; padding-bottom: 24px;
}
.hero-footer::before {
  content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px; background: rgba(255, 255, 255, 0.2);
}
.scroll-cue {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted);
}
.scroll-cue:hover { color: #fff; }
.scroll-cue svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(3px); } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 14px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.badge-glass svg { color: var(--gold-400); }

/* ==========================================================
   MARKETS STRIP
   ========================================================== */
.markets { background: var(--surface); border-bottom: 1px solid var(--border); }
.markets-inner { display: flex; align-items: center; gap: 40px; padding-top: 28px; padding-bottom: 28px; }
.markets-label { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.35; flex: none; }
.markets-label strong { color: var(--text); font-weight: 600; }
.markets-list {
  flex: 1; display: flex; justify-content: space-between; gap: 24px 36px; flex-wrap: wrap;
}
.markets-list li {
  font-size: clamp(16px, 1.6vw, 20px); font-weight: 600; letter-spacing: -0.01em;
  color: #9aa39c; text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.markets-list li:hover { color: var(--green-700); }

/* ==========================================================
   SECTIONS (shared)
   ========================================================== */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-white { background: var(--surface); }
.section-tint { background: var(--bg); }

.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: end; gap: 32px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-title {
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.02; letter-spacing: -0.03em; color: var(--green-900);
  text-wrap: balance;
}
.section-title em { color: var(--green-700); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-400); }
.section-lede { margin: 0; max-width: 46ch; justify-self: end; color: var(--text-muted); font-size: 16px; }

/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; align-items: stretch; }

.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.acc-item[open] { background: var(--surface); border-color: #cfd8c8; box-shadow: var(--shadow-card); }
.acc-item summary {
  display: flex; align-items: center; gap: 14px;
  min-height: 64px; padding: 12px 18px;
  font-size: 17px; font-weight: 500; cursor: pointer; list-style: none;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-icon {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border); color: var(--green-700);
}
.acc-item[open] .acc-icon { background: var(--green-900); border-color: var(--green-900); color: var(--gold-400); }
.acc-icon svg { width: 20px; height: 20px; }
.acc-plus { position: relative; width: 14px; height: 14px; margin-left: auto; flex: none; }
.acc-plus::before, .acc-plus::after {
  content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 2px; border-radius: 2px;
  background: var(--text-muted); transition: transform 0.3s var(--ease);
}
.acc-plus::after { transform: rotate(90deg); }
.acc-item[open] .acc-plus::after { transform: rotate(0deg); }
.acc-body { padding: 0 18px 18px 70px; color: var(--text-muted); }
.acc-body p { margin: 0; }

.about-media {
  position: relative; margin: 0; min-height: 420px;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--green-800);
}
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; right: 16px; bottom: 16px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.4);
}
.float-card-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.float-card-value { font-family: var(--font-serif); font-style: italic; font-size: 26px; line-height: 1.1; color: var(--green-900); }
.float-card-meta { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 13px; color: var(--text-muted); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stat {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding: 28px 16px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border);
}
.stat-num { font-size: clamp(34px, 4vw, 44px); letter-spacing: -0.03em; color: var(--green-900); font-variant-numeric: tabular-nums; line-height: 1.1; }
.stat-label { font-size: 14px; color: var(--text-muted); }

/* ==========================================================
   PRODUCTS
   ========================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  min-height: 44px; padding: 0 18px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface);
  font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.chip:hover { border-color: var(--green-700); color: var(--green-900); }
.chip.is-active { background: var(--green-900); border-color: var(--green-900); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product { display: flex; flex-direction: column; }
.product[hidden] { display: none; }
.product-img {
  aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; background: var(--surface-tint);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 14px 2px 0; }
.product-info h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.product-info p { margin: 4px 0 10px; font-size: 14px; color: var(--text-muted); }
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--green-700); background: #e3efe2;
}

/* ==========================================================
   PROCESS
   ========================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.step {
  display: flex; align-items: center; gap: 12px; text-align: left;
  min-height: 64px; padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border); cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.step:hover { border-color: #c4cfbd; }
.step.is-active { background: var(--surface); border-color: #cfd8c8; box-shadow: var(--shadow-card); }
.step-icon {
  width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
  transition: all 0.25s var(--ease);
}
.step-icon svg { width: 18px; height: 18px; }
.step.is-active .step-icon { background: var(--gold-400); border-color: var(--gold-400); color: var(--black); }
.step-text { display: flex; flex-direction: column; line-height: 1.25; }
.step-text strong { font-size: 14px; font-weight: 600; }
.step-text small { font-size: 12px; color: var(--text-soft); }

.step-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 21 / 9; min-height: 380px; background: var(--green-800);
}
.step-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s var(--ease); }
.step-img.is-fading { opacity: 0; }
.step-panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 32, 15, 0.1) 40%, rgba(6, 32, 15, 0.45) 100%);
}
.step-card {
  position: absolute; z-index: 1; right: 20px; top: 20px; bottom: 20px;
  width: min(340px, calc(100% - 40px));
  display: flex; flex-direction: column;
  padding: 24px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.45);
}
.step-card > * { transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.step-card.is-fading > * { opacity: 0; transform: translateY(6px); }
.step-card-num { font-family: var(--font-serif); font-style: italic; font-size: 56px; line-height: 1; color: var(--gold-500); }
.step-card-title { margin-top: 8px; font-size: 26px; color: var(--green-900); }
.step-card-body { margin: 10px 0 16px; color: var(--text-muted); font-size: 15px; }
.step-card-list { margin-top: 4px; display: flex; flex-direction: column; gap: 8px; }
.step-card-list li {
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500;
  padding: 10px 12px; border-radius: 10px; background: var(--bg);
}
.step-card-list li::before {
  content: ""; width: 16px; height: 16px; flex: none; border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.step-location {
  position: absolute; z-index: 1; left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px; font-size: 13px; color: #fff;
  background: rgba(0, 0, 0, 0.35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { position: relative; padding: clamp(80px, 10vw, 140px) 0; color: #fff; background: var(--green-950); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.contact-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6, 32, 15, 0.95) 0%, rgba(6, 32, 15, 0.8) 45%, rgba(6, 32, 15, 0.55) 100%); }

.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-lede { margin: 20px 0 32px; max-width: 42ch; color: var(--on-dark-muted); }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.6); }
.contact-list a:hover { color: var(--gold-400); }
.phone-region { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-left: 4px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); color: var(--gold-400);
}
.ci-icon svg { width: 20px; height: 20px; }

.quote-form {
  padding: clamp(22px, 3vw, 36px); border-radius: var(--radius-lg);
  background: var(--surface); color: var(--text);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.55);
}
.quote-form h3 { font-size: 28px; color: var(--green-900); }
.form-note { margin: 4px 0 20px; font-size: 13px; color: var(--text-muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin: 0 0 14px; min-width: 0; }
fieldset.field { border: 0; padding: 0; }
.field label, .field legend { font-size: 14px; font-weight: 500; padding: 0; margin-bottom: 0; }
fieldset.field legend { margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; min-height: 46px; padding: 11px 14px;
  font: inherit; font-size: 16px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-soft); }
.field input:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(0, 155, 58, 0.18);
}
.field input[aria-invalid="true"] { border-color: #c62828; background: #fff6f6; }
.field-error { margin: 0; font-size: 13px; color: #b3261e; min-height: 0; }
.field-error:empty { display: none; }

.check-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.check-chips label { position: relative; cursor: pointer; }
.check-chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check-chips span {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px;
  border-radius: 999px; border: 1px solid var(--border); background: var(--bg);
  font-size: 14px; color: var(--text-muted);
  transition: all 0.2s var(--ease);
}
.check-chips label:hover span { border-color: var(--green-700); }
.check-chips input:checked + span { background: var(--green-900); border-color: var(--green-900); color: #fff; }
.check-chips input:focus-visible + span { outline: 2px solid var(--green-500); outline-offset: 2px; }

.form-status { margin: 12px 0 0; font-size: 14px; color: var(--green-700); text-align: center; }
.form-status:empty { display: none; }
.form-status.is-success { padding: 12px 14px; border-radius: 12px; background: #e3efe2; color: var(--green-800); font-weight: 500; }
.form-status.is-error { padding: 12px 14px; border-radius: 12px; background: #fdecea; color: #8c1d18; }
.form-status a { text-decoration: underline; }
.form-status-reason { display: block; margin-top: 6px; font-size: 13px; opacity: 0.85; }
.quote-form button[disabled] { opacity: 0.7; cursor: progress; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.72); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin: 16px 0 0; max-width: 34ch; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-links h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 6px; font-weight: 500; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 20px; padding-bottom: 28px; font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-flag { display: inline-flex; align-items: center; gap: 8px; }

/* ==========================================================
   REVEAL ANIMATION
   ========================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-media img { transform: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px) {
  .nav-pill a { padding: 8px 11px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-pill, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .call-icon { display: grid; }
  .site-header.menu-open .header-inner { background: rgba(10, 46, 23, 0.92); }

  .section-head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .section-lede { justify-self: start; }

  .markets-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .markets-list { justify-content: flex-start; gap: 10px 24px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 340px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-panel { aspect-ratio: auto; min-height: 0; display: flex; flex-direction: column; }
  .step-img { position: relative; height: 260px; }
  .step-panel::after { display: none; }
  .step-card { position: relative; inset: auto; width: auto; margin: -40px 12px 12px; }
  .step-location { top: 16px; bottom: auto; left: 16px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero-content { padding-bottom: 40px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-badges { display: none; }
  .product-grid { gap: 14px 12px; }
  .product-info h3 { font-size: 16px; }
  .product-info p { display: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 8px; }
  .step { padding: 10px; gap: 10px; }
  .step-text small { display: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .acc-body { padding-left: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat { padding: 20px 8px; }
  .stat-label { font-size: 13px; }
}
