/* ==========================================================================
   Nutri-Cereals Agritrade Inc. — Global Stylesheet
   Calm, minimal, editorial. Green / wheat-gold / cream.
   ========================================================================== */

/* 1. Design tokens
   ------------------------------------------------------------------------ */
:root {
  /* Brand */
  --green-900: #14331F;
  --green-800: #1C4529;
  --green-700: #245735;
  --green-600: #2E6B41;
  --green-500: #3C8353;
  --green-100: #E3EDE5;
  --green-50:  #F1F6F1;

  --gold-700: #A8761F;
  --gold-600: #C8912F;
  --gold-500: #D9A441;
  --gold-100: #F6ECD8;

  --brown-800: #3B211A;

  /* Neutrals */
  --cream:    #FBFAF6;
  --cream-2:  #F5F2EA;
  --surface:  #FFFFFF;
  --ink:      #1B211C;
  --body:     #4A544C;
  --muted:    #77837A;
  --line:     #E5E1D6;
  --line-soft:#EFECE3;

  /* Type */
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space & shape */
  --wrap: 1160px;
  --wrap-narrow: 780px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 51, 31, .05), 0 2px 8px rgba(20, 51, 31, .04);
  --shadow-md: 0 2px 4px rgba(20, 51, 31, .04), 0 12px 32px rgba(20, 51, 31, .07);
  --shadow-lg: 0 4px 10px rgba(20, 51, 31, .05), 0 24px 60px rgba(20, 51, 31, .10);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* 2. Reset & base
   ------------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.65rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); }
h4 { font-size: 1.02rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-700); }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold-100); color: var(--green-900); }

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

/* 3. Layout helpers
   ------------------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }
.section--cream { background: var(--cream-2); }
.section--white { background: var(--surface); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-500);
  border-radius: 2px;
}

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--body); line-height: 1.65; }

/* 4. Buttons
   ------------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .22s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-800); background: rgba(255,255,255,.6); }

.btn--gold { background: var(--gold-500); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-600); color: var(--green-900); }

.btn--light { background: #fff; color: var(--green-800); }
.btn--light:hover { background: #fff; color: var(--green-900); box-shadow: var(--shadow-md); }

.btn--outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); color: #fff; }

.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .94rem;
  color: var(--green-700);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* 5. Header / navigation
   ------------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 246, .94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand:hover { color: inherit; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.09rem;
  font-weight: 600;
  color: var(--brown-800);
  letter-spacing: -0.015em;
}
.brand-sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  display: block;
  padding: 9px 15px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--body);
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-links a:hover { color: var(--green-800); background: var(--green-50); }
.nav-links a.is-active { color: var(--green-800); font-weight: 600; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
}
/* The in-menu quote button is for the mobile drawer only. */
.nav-links .btn { display: none; }

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--green-800);
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s var(--ease), background-color .2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s var(--ease), top .28s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* 6. Hero
   ------------------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(900px 460px at 82% -8%, var(--green-50) 0%, rgba(241,246,241,0) 68%),
    radial-gradient(620px 380px at 4% 104%, var(--gold-100) 0%, rgba(246,236,216,0) 62%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic;
  color: var(--green-700);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--body);
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--body);
}
.hero-meta svg { width: 16px; height: 16px; color: var(--green-600); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  overflow: hidden;
}
.hero-scene { border-radius: var(--radius); overflow: hidden; background: var(--green-50); }
.hero-scene svg { width: 100%; height: auto; }

.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px 12px 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero-badge--tl { top: 8px; left: -18px; }
.hero-badge--br { bottom: 18px; right: -14px; }
.hero-badge .b-ico {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--green-700);
  flex: none;
}
.hero-badge .b-ico svg { width: 18px; height: 18px; }
.hero-badge b { display: block; font-size: .92rem; color: var(--ink); font-weight: 600; line-height: 1.25; }
.hero-badge span { display: block; font-size: .76rem; color: var(--muted); }

/* 7. Page header (inner pages)
   ------------------------------------------------------------------------ */
.page-head {
  position: relative;
  padding: clamp(52px, 7vw, 88px) 0 clamp(44px, 6vw, 68px);
  background:
    radial-gradient(760px 380px at 88% -20%, var(--green-50) 0%, rgba(241,246,241,0) 70%),
    var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 {
  max-width: 22ch;
  font-size: clamp(2.1rem, 4.4vw, 3.15rem);
}
.page-head p { max-width: 60ch; color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

/* The page header already carries generous breathing room. */
.page-head + .section { padding-top: clamp(44px, 5.5vw, 70px); }

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green-700); }
.crumbs span[aria-current] { color: var(--green-700); font-weight: 600; }

/* 8. Cards & grids
   ------------------------------------------------------------------------ */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.card-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 20px;
}
.card-ico svg { width: 22px; height: 22px; }
.card-ico--gold { background: var(--gold-100); color: var(--gold-700); }

/* Product cards */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.product-emoji {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  font-size: 24px;
  line-height: 1;
  border-radius: 14px;
  background: var(--green-50);
  margin-bottom: 18px;
}
.product-card h3 { font-size: 1.18rem; margin-bottom: .4em; }
.product-card p { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.tag--gold { color: var(--gold-700); background: var(--gold-100); border-color: #EEDFC0; }

/* Filter chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}
.chip {
  font-family: var(--font-sans);
  font-size: .89rem;
  font-weight: 500;
  color: var(--body);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--green-500); color: var(--green-800); }
.chip.is-active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
  font-weight: 600;
}

/* 9. Commodity marquee strip
   ------------------------------------------------------------------------ */
.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 18px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.strip-track {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: slide 42s linear infinite;
}
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--body);
  white-space: nowrap;
}
.strip-track li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 10. Split feature (image/text)
   ------------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-50);
  border: 1px solid var(--line-soft);
}
.split-media svg { width: 100%; height: auto; }

.checklist { display: grid; gap: 14px; margin: 26px 0 0; }
.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: .97rem;
}
.checklist .tick {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
}
.checklist .tick svg { width: 12px; height: 12px; }
.checklist b { color: var(--ink); font-weight: 600; }

/* 11. Stats
   ------------------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--surface); padding: 30px 26px; text-align: center; }
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat span { font-size: .87rem; color: var(--muted); }

/* 12. Process timeline
   ------------------------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-700);
  transition: all .3s var(--ease);
}
.step:hover::before { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.step h3 { font-size: 1.14rem; margin-bottom: .3em; }
.step p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* 13. CTA band
   ------------------------------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
  color: rgba(255,255,255,.8);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 320px at 88% 8%, rgba(217,164,65,.20) 0%, rgba(217,164,65,0) 70%),
    radial-gradient(520px 300px at 6% 96%, rgba(60,131,83,.45) 0%, rgba(60,131,83,0) 70%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.76); font-size: 1.06rem; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(48px, 6vw, 76px) 0;
}
.cta-inner > div { max-width: 58ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }

/* 14. Contact
   ------------------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

.info-list { display: grid; gap: 14px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.info-item:hover { border-color: var(--green-100); transform: translateY(-2px); }
.info-ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--green-50);
  color: var(--green-700);
}
.info-ico svg { width: 19px; height: 19px; }
.info-item h4 {
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 5px;
}
.info-item p, .info-item a {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}
.info-item a:hover { color: var(--green-700); }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .req { color: var(--gold-700); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: .96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: 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='%2377837A' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: #A3ADA5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(60,131,83,.12);
}
.form-note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; }

.form-status {
  display: none;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-800);
  font-size: .9rem;
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.form-status a { color: inherit; text-decoration: underline; }

/* Error variant — same box, red palette, swapped icon. */
.form-status--error {
  background: #FCF1EE;
  border-color: #F2D7CF;
  color: #8C3418;
}
.fs-ico--err { display: none; }
.form-status--error .fs-ico--ok  { display: none; }
.form-status--error .fs-ico--err { display: block; }

/* Honeypot: reachable by bots, invisible and unreachable for people. */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Submit button while the request is in flight. */
.btn[disabled] {
  opacity: .62;
  cursor: progress;
  pointer-events: none;
}

/* 15. FAQ / accordion
   ------------------------------------------------------------------------ */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--green-100); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 1.8px solid var(--green-600);
  border-bottom: 1.8px solid var(--green-600);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq .faq-body { padding: 0 0 20px; color: var(--muted); font-size: .95rem; }

/* 16. Footer
   ------------------------------------------------------------------------ */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.62);
  font-size: .93rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(48px, 6vw, 72px) 0 44px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--gold-500); }
.footer-about { max-width: 34ch; line-height: 1.65; margin-bottom: 20px; }

.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.62); }
.footer-col a:hover { color: var(--gold-500); }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.6; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; margin-top: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold-500); }

/* 17. Motion
   ------------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* 18. Responsive
   ------------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-badge--tl { left: 0; }
  .hero-badge--br { right: 0; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 20px 26px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 13px 14px; font-size: 1rem; border-radius: 10px; }
  .nav-links a.is-active::after { display: none; }
  .nav-links a.is-active { background: var(--green-50); }
  .nav-links .btn { display: flex; width: 100%; margin-top: 12px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; order: -1; }
  .hero-badge { display: none; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { flex: 1 1 100%; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step::before { width: 42px; height: 42px; font-size: .9rem; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-name { font-size: 1rem; }
  .brand img { width: 40px; height: 40px; }
}

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

/* 19. Print
   ------------------------------------------------------------------------ */
@media print {
  .site-header, .cta-band, .nav-toggle, .hero-visual { display: none; }
  body { background: #fff; }
}
