/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --forest:     #1E2D1A;
  --forest-mid: #2C4025;
  --parchment:  #F3EDD8;
  --parch-mid:  #EAE3C8;
  --amber:      #B87728;
  --amber-lt:   #CC913E;
  --muted:      #6A7361;
  --rule:       rgba(30, 45, 26, .12);

  --ff-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --max: 1160px;
  --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(--parchment); color: var(--forest); font-family: var(--ff-sans); font-size: 1rem; line-height: 1.6; }
img { display: block; max-width: 100%; }
ul[role="list"], ol[role="list"] { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ─── BAR ────────────────────────────────────────────────────────── */
.bar { background: var(--forest); color: rgba(255,255,255,.75); 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(--amber); flex-shrink: 0; }

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(243,237,216,.93); 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(--forest-mid); }
.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: 500; display: flex; align-items: center; gap: .4rem; transition: background .2s; }
.nav__cta:hover { background: var(--forest-mid); }

/* ─── HERO ── right-aligned text ─────────────────────────────────── */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(580px, 85vh, 940px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-end;
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--forest); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; opacity: .75; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(270deg, rgba(30,45,26,.95) 0%, rgba(30,45,26,.75) 40%, rgba(30,45,26,.2) 68%, rgba(30,45,26,0) 88%),
    linear-gradient(180deg, rgba(30,45,26,.35) 0%, rgba(30,45,26,0) 22%, rgba(30,45,26,0) 68%, rgba(30,45,26,.5) 100%);
}
.hero__inner {
  flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; text-align: right;
  max-width: 580px; padding: 4rem var(--pad);
  margin-right: clamp(0px, 4vw, 4rem);
}
.hero__hed {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__sub { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.78); margin-bottom: 2.25rem; max-width: 440px; }
.hero__sub strong { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-end; }

.btn-primary { display: inline-flex; align-items: center; gap: .45rem; background: var(--amber); 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(--amber-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,.78); font-size: .9375rem; font-weight: 500; border: 1px solid rgba(255,255,255,.65); border-radius: 8px; padding: .83rem 1.5rem; transition: color .2s, border-color .2s; }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* ─── EXAMPLE BAR ────────────────────────────────────────────────── */
.example-bar { background: var(--parch-mid); 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(--amber); flex-shrink: 0; }

/* ─── COLLECTION — 4-col type grid ──────────────────────────────── */
.collection { padding: clamp(4rem, 8vw, 7rem) var(--pad); border-bottom: 1px solid var(--rule); }
.collection__head { max-width: var(--max); margin: 0 auto 3.5rem; }
.collection__overline { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .75rem; }
.collection__title { font-family: var(--ff-serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2; }

.collection__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.citem {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: .0rem;
}
.citem:first-child { padding-left: 0; }
.citem:last-child { border-right: none; }
.citem + .citem { padding-left: 2rem; }
.citem__num {
  font-family: var(--ff-serif); font-size: 3rem; font-weight: 700;
  color: rgba(30,45,26,.1); line-height: 1; display: block;
  margin-bottom: 1.25rem;
}
.citem__name { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.citem__origin { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: .9rem; font-weight: 500; }
.citem__desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ─── FEATURE — image left, editorial right ──────────────────────── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
}
.feature__image {
  background: var(--forest-mid);
  overflow: hidden; min-height: 540px;
}
.feature__image img { width: 100%; height: 100%; object-fit: cover; }
.feature__text {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 5vw, 4.5rem);
  background: var(--parch-mid);
  display: flex; flex-direction: column; justify-content: center;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.feature__overline { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
.feature__quote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.45;
  color: var(--forest); margin-bottom: 1.75rem;
  border-left: 3px solid var(--amber); padding-left: 1.25rem;
}
.feature__body { font-size: .9875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.1rem; max-width: 440px; }
.feature__link { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 600; color: var(--forest); margin-top: .75rem; border-bottom: 1px solid var(--rule); padding-bottom: .15rem; transition: border-color .2s, color .2s; }
.feature__link:hover { color: var(--amber); border-color: var(--amber); }

/* ─── PILLARS ────────────────────────────────────────────────────── */
.pillars { background: var(--forest); color: #fff; padding: clamp(3.5rem, 7vw, 6rem) var(--pad); }
.pillars__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}
.pillar { padding: 0 clamp(1.5rem, 3vw, 3rem); }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; }
.pillar__num {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  color: var(--amber); display: block; margin-bottom: 1rem;
}
.pillar__hed { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: .65rem; color: #fff; }
.pillar__body { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.pillar__rule { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; margin: 0; }

/* ─── WHO ────────────────────────────────────────────────────────── */
.who { padding: clamp(4rem, 8vw, 7rem) var(--pad); border-top: 1px solid var(--rule); }
.who__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.who__left { position: sticky; top: 6rem; }
.who__overline { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .75rem; }
.who__title { font-family: var(--ff-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.25; margin-bottom: 2rem; }
.who__link { display: inline-flex; align-items: center; gap: .4rem; background: var(--forest); color: #fff; padding: .7rem 1.4rem; border-radius: 6px; font-size: .875rem; font-weight: 500; transition: background .2s; }
.who__link:hover { background: var(--forest-mid); }

.who__right { display: flex; flex-direction: column; }
.who__item { padding: 1.75rem 0; border-bottom: 1px solid var(--rule); }
.who__item:first-child { border-top: 1px solid var(--rule); }
.who__item-hed { font-family: var(--ff-serif); font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.who__item-body { font-size: .9375rem; color: var(--muted); line-height: 1.7; max-width: 520px; }

/* ─── ACQUIRE ────────────────────────────────────────────────────── */
.acquire { padding: clamp(4rem, 8vw, 7rem) var(--pad); background: var(--forest); color: #fff; }
.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: rgba(255,255,255,.4); margin-bottom: 1rem; }
.acquire__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); 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; color: #fff; }
.acquire__title em { font-style: italic; color: var(--amber-lt); }
.acquire__lede { font-size: 1rem; color: rgba(255,255,255,.6); 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: rgba(255,255,255,.6); }
.field input, .field textarea { border: 1.5px solid rgba(255,255,255,.12); border-radius: 6px; padding: .75rem 1rem; font-family: var(--ff-sans); font-size: .9375rem; background: rgba(255,255,255,.06); color: #fff; transition: border-color .2s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.65); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); }
.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: rgba(255,255,255,.4); }
.acquire-form__alt a { color: var(--amber-lt); border-bottom: 1px solid transparent; transition: border-color .2s; }
.acquire-form__alt a:hover { border-color: var(--amber-lt); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.foot { background: #111a0e; color: rgba(255,255,255,.65); padding: 2rem var(--pad); border-top: 1px solid rgba(255,255,255,.05); }
.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: 1000px) {
  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .citem:nth-child(2) { border-right: none; }
  .citem:nth-child(3) { padding-left: 0; border-top: 1px solid var(--rule); }
  .citem:nth-child(4) { border-top: 1px solid var(--rule); }
  .feature { grid-template-columns: 1fr; }
  .feature__image { min-height: 300px; aspect-ratio: 16/7; }
  .pillars__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillar__rule { display: none; }
  .pillar { padding: 0; }
  .who__inner { grid-template-columns: 1fr; }
  .who__left { position: static; }
}

@media (max-width: 600px) {
  .hero__inner { align-items: flex-start; text-align: left; margin-right: 0; }
  .hero__cta { justify-content: flex-start; }
  .acquire-form__row { grid-template-columns: 1fr; }
  .collection__grid { grid-template-columns: 1fr; }
  .citem { border-right: none; border-top: 1px solid var(--rule); padding-left: 0; }
  .citem + .citem { padding-left: 0; }
}

/* ─── 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;
  }
}

/* --- Targeted mobile overflow fix --- */
@media (max-width: 1000px) {
  .feature__image {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Skip navigation */
.skip-link { position: absolute; top: -100%; left: 1rem; background: #000; color: #fff; padding: .5rem 1rem; z-index: 9999; font-size: .875rem; font-weight: 600; border-radius: 0 0 4px 4px; text-decoration: none; }
.skip-link:focus { top: 0; }
