/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --forest:     #162B1E;
  --forest-mid: #1E3A28;
  --copper:     #B87333;
  --copper-lt:  #CE8A45;
  --white:      #FFFFFF;
  --surface:    #F4F2EF;
  --muted:      #5C6860;
  --rule:       rgba(22, 43, 30, .1);

  --ff-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --max: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--white); color: var(--forest); font-family: var(--ff-sans); font-size: 1rem; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── BAR ────────────────────────────────────────────────────────── */
.bar { background: var(--forest); color: rgba(255,255,255,.7); font-size: .8125rem; letter-spacing: .03em; padding: .55rem var(--pad); }
.bar__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.bar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.bar strong { color: #fff; }

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: .9rem var(--pad); display: flex; align-items: center; justify-content: space-between; }
.nav__mark { display: flex; align-items: center; gap: .55rem; font-family: var(--ff-serif); font-weight: 700; font-size: 1rem; color: var(--forest); }
.nav__logo-icon { flex-shrink: 0; color: var(--copper); }
.nav__logo-text { line-height: 1; }
.nav__cta { background: var(--forest); color: #fff; padding: .5rem 1.1rem; border-radius: 6px; font-size: .875rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; transition: background .2s; }
.nav__cta:hover { background: var(--forest-mid); }

/* ─── SHARED BUTTONS ─────────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: .45rem; background: var(--copper); color: #fff; padding: .85rem 1.85rem; border-radius: 8px; font-weight: 600; font-size: .9375rem; transition: background .2s, transform .15s; }
.btn-primary:hover { background: var(--copper-lt); transform: translateY(-1px); }
.btn-primary--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-ghost { display: inline-flex; align-items: center; color: rgba(255,255,255,.8); font-size: .9375rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,.3); border-radius: 8px; padding: .83rem 1.5rem; transition: color .2s, border-color .2s; }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.65); }

/* ─── HERO — full-bleed, centered ───────────────────────────────── */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 88vh, 960px);
  display: flex; flex-direction: column;
  background: var(--forest);
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(22,43,30,.55) 0%, rgba(22,43,30,.25) 45%, rgba(22,43,30,.75) 100%);
}
.hero__inner {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 5rem var(--pad) 4rem;
  max-width: 820px; margin: 0 auto; width: 100%;
}
.hero__label {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper-lt); margin-bottom: 2rem;
}
.hero__hed {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.08;
  margin-bottom: 1.75rem;
}
.hero__hed em { font-style: italic; color: var(--copper-lt); }
.hero__sub { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; max-width: 540px; }
.hero__sub strong { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── EXAMPLE BAR ────────────────────────────────────────────────── */
.example-bar { background: var(--surface); border-bottom: 1px solid var(--rule); padding: 1rem var(--pad); }
.example-bar__label { max-width: var(--max); margin: 0 auto; font-size: .8125rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.example-bar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

/* ─── PRINCIPLES BAND ────────────────────────────────────────────── */
.principles { border-bottom: 1px solid var(--rule); }
.principles__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: stretch;
}
.principles__item {
  flex: 1; padding: 3rem 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.principles__div { width: 1px; background: var(--rule); flex-shrink: 0; margin: 2rem 0; }
.principles__icon {
  font-family: var(--ff-serif); font-size: 1rem; font-weight: 600;
  color: var(--copper); letter-spacing: .05em; display: block;
  margin-bottom: .25rem;
}
.principles__hed { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; }
.principles__body { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ─── WHO WE SUPPLY ──────────────────────────────────────────────── */
.who { padding: clamp(5rem, 9vw, 8rem) var(--pad); background: var(--forest); color: #fff; }
.who__inner { max-width: var(--max); margin: 0 auto; }
.who__head { margin-bottom: 4rem; }
.who__overline { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-lt); margin-bottom: .75rem; }
.who__title { font-family: var(--ff-serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2; max-width: 680px; }
.who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.who__card { background: var(--forest-mid); padding: 2.5rem 2rem; }
.who__card-num { font-family: var(--ff-serif); font-size: 2rem; font-weight: 700; color: var(--copper); opacity: .5; line-height: 1; margin-bottom: 1rem; }
.who__card-hed { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; }
.who__card-body { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ─── SOURCING SECTION ───────────────────────────────────────────── */
.source {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 58vh, 680px);
}
.source__image { overflow: hidden; }
.source__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.source__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  background: var(--surface);
}
.source__overline { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper); margin-bottom: 1.25rem; }
.source__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700; line-height: 1.25;
  color: var(--forest); margin-bottom: 1.5rem;
}
.source__body { font-size: .9375rem; color: var(--muted); line-height: 1.8; max-width: 460px; }
.source__body + .source__body { margin-top: 1rem; }
.source__stat-row { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.source__stat { display: flex; flex-direction: column; gap: .2rem; }
.source__stat-num { font-family: var(--ff-serif); font-size: 1.75rem; font-weight: 700; color: var(--forest); line-height: 1; }
.source__stat-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ─── ACQUIRE ────────────────────────────────────────────────────── */
.acquire { padding: clamp(5rem, 9vw, 8rem) var(--pad); background: var(--white); border-top: 1px solid var(--rule); }
.acquire__inner { max-width: 680px; margin: 0 auto; }
.acquire__eyebrow { display: flex; align-items: center; gap: .5rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.acquire__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.acquire__title { font-family: var(--ff-serif); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.acquire__title em { font-style: italic; color: var(--copper); }
.acquire__lede { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; }
.acquire-form { display: flex; flex-direction: column; gap: 1.25rem; }
.acquire-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field__label { font-size: .8125rem; font-weight: 500; color: var(--forest); }
.field input, .field textarea { border: 1.5px solid var(--rule); border-radius: 6px; padding: .75rem 1rem; font-family: var(--ff-sans); font-size: .9375rem; background: var(--white); color: var(--forest); transition: border-color .2s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: rgba(22,43,30,.3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--copper); }
.field textarea { resize: vertical; min-height: 100px; }
.acquire-form__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; margin-top: .5rem; }
.acquire-form__alt { font-size: .875rem; color: var(--muted); }
.acquire-form__alt a { color: var(--copper); border-bottom: 1px solid transparent; transition: border-color .2s; }
.acquire-form__alt a:hover { border-color: var(--copper); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.foot { background: var(--forest); color: rgba(255,255,255,.35); padding: 2rem var(--pad); }
.foot__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.foot__mark { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .875rem; color: rgba(255,255,255,.7); }
.foot__small { font-size: .8rem; }
.foot__small a { color: rgba(255,255,255,.5); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .principles__inner { flex-direction: column; }
  .principles__item { padding: 2rem 0; }
  .principles__div { width: 100%; height: 1px; margin: 0; }
  .who__grid { grid-template-columns: 1fr; }
  .source { grid-template-columns: 1fr; }
  .source__image { min-height: 280px; }
}

@media (max-width: 600px) {
  .acquire-form__row { grid-template-columns: 1fr; }
  .source__stat-row { gap: 1.5rem; }
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq { padding: clamp(4rem, 7vw, 6rem) var(--pad); border-bottom: 1px solid var(--rule); }
.faq__inner { max-width: var(--max); margin: 0 auto; }
.faq__title { font-family: var(--ff-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 2.5rem; color: var(--soil); }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.faq__item { padding: 1.5rem 0; border-bottom: 1px solid var(--rule); }
.faq__q { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 700; color: var(--soil); margin-bottom: .5rem; }
.faq__a { font-size: .9rem; line-height: 1.75; color: var(--muted); }

/* --- Mobile overflow hardening --- */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  overscroll-behavior-x: none;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

main,
section,
header,
footer,
nav,
form,
fieldset,
[class*="__inner"],
[class*="__grid"],
[class*="__row"],
[class*="__cols"],
[class*="__card"],
[class*="__item"] {
  min-width: 0;
}

input,
textarea,
select,
button {
  max-width: 100%;
  min-width: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
span {
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .btn,
  .btn-primary,
  .btn-ghost,
  [class*="btn"],
  [class*="button"] {
    max-width: 100%;
    white-space: normal;
  }
}
