/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --night:      #0A1628;
  --night-mid:  #132038;
  --green:      #2F8B4E;
  --green-lt:   #3DAD65;
  --white:      #FFFFFF;
  --surface:    #F2F5F2;
  --muted:      #5A6D60;
  --rule:       rgba(10, 22, 40, .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(--night); 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(--green); color: #fff; 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: rgba(255,255,255,.6); flex-shrink: 0; }

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); 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(--night); }
.nav__logo-icon { flex-shrink: 0; color: var(--green); }
.nav__logo-text { line-height: 1; }
.nav__cta { background: var(--night); 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(--night-mid); }

/* ─── HERO — dark, centered, typographic ────────────────────────── */
.hero {
  position: relative; isolation: isolate;
  background: var(--night);
  color: #fff;
  display: flex; flex-direction: column;
  min-height: clamp(560px, 82vh, 920px);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .35; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,22,40,.6) 0%, rgba(10,22,40,.3) 40%, rgba(10,22,40,.5) 100%),
    linear-gradient(0deg, rgba(10,22,40,.8) 0%, rgba(10,22,40,0) 35%);
}
.hero__inner {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 5rem var(--pad) 3rem;
  max-width: 1060px; margin: 0 auto; width: 100%;
}
.hero__season {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-lt); margin-bottom: 2rem;
  display: flex; align-items: center; gap: .5rem;
}
.hero__hed {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 800; line-height: 1.06;
  margin-bottom: 1.75rem;
}
.hero__hed em { font-style: italic; color: var(--green-lt); }
.hero__sub { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; max-width: 560px; }
.hero__sub strong { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.btn-primary { display: inline-flex; align-items: center; gap: .45rem; background: var(--green); 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(--green-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,.7); 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,.5); }

/* scrolling ticker */
.hero__scroll { overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0; flex-shrink: 0; }
.hero__scroll-track {
  display: flex; gap: 0; white-space: nowrap;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── 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(--green); flex-shrink: 0; }

/* ─── BOX SECTION ────────────────────────────────────────────────── */
.box-section { padding: clamp(4rem, 8vw, 7rem) var(--pad); }
.box-section__head { max-width: var(--max); margin: 0 auto 3rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.box-section__overline { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .6rem; }
.box-section__title { font-family: var(--ff-serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; }
.box-section__note { font-size: .9375rem; color: var(--muted); line-height: 1.65; max-width: 380px; align-self: flex-end; }

.box-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px auto;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.box-item {
  background: var(--white);
  padding: 2rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.box-item--feature {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding: 0;
}
.box-item--feature .box-item__image { flex: 1; overflow: hidden; min-height: 300px; }
.box-item--feature .box-item__image img { width: 100%; height: 100%; object-fit: cover; }
.box-item--feature .box-item__text { padding: 1.75rem 2rem; }
.box-item--dark {
  background: var(--night); color: #fff;
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.box-item__tag {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--green); display: inline-block; margin-bottom: .2rem;
}
.box-item--dark .box-item__tag { color: var(--green-lt); }
.box-item__name { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 700; }
.box-item__loc { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .1rem; }
.box-item--dark .box-item__loc { color: rgba(255,255,255,.4); }
.box-item__desc { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-top: .25rem; }
.box-item--dark .box-item__desc { color: rgba(255,255,255,.55); }
.box-item__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .875rem; font-weight: 600; color: var(--green-lt);
  margin-top: .75rem; border-bottom: 1px solid transparent; width: fit-content;
  transition: border-color .2s;
}
.box-item__cta:hover { border-color: var(--green-lt); }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.how { background: var(--surface); padding: clamp(4rem, 8vw, 6rem) var(--pad); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.how__inner { max-width: var(--max); margin: 0 auto; }
.how__overline { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 3rem; }
.how__steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.how__step { }
.how__step-num {
  font-family: var(--ff-serif); font-size: 3rem; font-weight: 700; line-height: 1;
  color: var(--green); display: block; margin-bottom: 1rem;
}
.how__step-hed { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.how__step-body { font-size: .9rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.how__connector {
  width: 1px; background: var(--rule);
  align-self: stretch; margin: 0 clamp(1.5rem, 3vw, 3rem);
  margin-top: 1.5rem;
}

/* ─── WHO ────────────────────────────────────────────────────────── */
.who { background: var(--night); color: #fff; padding: clamp(4rem, 8vw, 7rem) var(--pad); }
.who__inner { max-width: var(--max); margin: 0 auto; }
.who__head { margin-bottom: 3.5rem; }
.who__overline { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-lt); margin-bottom: .75rem; }
.who__title { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; max-width: 700px; }
.who__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
.who__col { padding: 2rem 2rem 0 0; border-right: 1px solid rgba(255,255,255,.1); }
.who__col:last-child { border-right: none; padding-right: 0; }
.who__col + .who__col { padding-left: 2rem; }
.who__col-hed { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.who__col-body { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ─── ACQUIRE ────────────────────────────────────────────────────── */
.acquire { padding: clamp(4rem, 8vw, 7rem) 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(--green); 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: var(--night); }
.acquire__title em { font-style: italic; color: var(--green); }
.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(--night); }
.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(--night); transition: border-color .2s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: rgba(10,22,40,.3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.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(--green); border-bottom: 1px solid transparent; transition: border-color .2s; }
.acquire-form__alt a:hover { border-color: var(--green); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.foot { background: var(--night); color: rgba(255,255,255,.65); 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) {
  .box-grid { grid-template-columns: 1fr 1fr; }
  .box-item--feature { grid-column: 1 / 3; grid-row: auto; }
  .box-item--feature .box-item__image { min-height: 240px; }
  .how__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__connector { display: none; }
  .who__cols { grid-template-columns: 1fr; }
  .who__col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 2rem 0; }
  .who__col + .who__col { padding-left: 0; }
  .who__col:last-child { border-bottom: none; }
  .box-section__head { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 600px) {
  .box-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .box-item--feature { grid-column: auto; }
  .acquire-form__row { grid-template-columns: 1fr; }
}

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

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