/* ============================================================================
   Join Fairway Colorado — house style
   Forest #006848 · Kelly #0c9748 · Chartreuse #82c341 · Montserrat (self-hosted)
   ========================================================================== */

/* Self-hosted Montserrat (latin subset) — no third-party font requests. */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap; src: url("/fonts/montserrat-400.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url("/fonts/montserrat-500.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url("/fonts/montserrat-600.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap; src: url("/fonts/montserrat-700.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 800; font-display: swap; src: url("/fonts/montserrat-800.woff2") format("woff2"); }

:root {
  --forest: #006848;
  --forest-deep: #004f37;
  --forest-deeper: #023a29;
  --kelly: #0c9748;
  --chartreuse: #82c341;
  --chartreuse-soft: #a6d96b;

  --ink: #16201b;
  --slate: #4a5a52;
  --muted: #6b7a72;
  --line: #e2e9e4;
  --paper: #ffffff;
  --mist: #f4f8f5;
  --mist-2: #eaf2ec;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(2, 58, 41, .06), 0 4px 14px rgba(2, 58, 41, .06);
  --shadow-md: 0 10px 30px rgba(2, 58, 41, .12);
  --shadow-lg: 0 30px 70px rgba(2, 58, 41, .22);

  --ff-display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-serif: "Roboto Serif", Georgia, "Times New Roman", serif;
  --ff-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--kelly); }

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; margin: 0 0 .4em; letter-spacing: -.02em; color: var(--ink); }
h1 { font-weight: 800; }
h2 { font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-weight: 700; font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 9vw, 116px) 0; }
.section--mist { background: var(--mist); }
.section--mist2 { background: linear-gradient(180deg, var(--mist) 0%, var(--mist-2) 100%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6ch;
  font-family: var(--ff-display); font-weight: 700; font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--kelly);
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--chartreuse); display: inline-block; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--slate); max-width: 60ch; }
.serif { font-family: var(--ff-serif); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55ch;
  font-family: var(--ff-display); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1.1;
}
.btn--primary { background: var(--kelly); color: #fff; box-shadow: 0 8px 22px rgba(12, 151, 72, .32); }
.btn--primary:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--forest); color: #fff; }
.btn--dark:hover { background: var(--forest-deep); color: #fff; transform: translateY(-2px); }
.btn--outline { background: #fff; color: var(--forest); border-color: var(--line); }
.btn--outline:hover { border-color: var(--kelly); color: var(--kelly); transform: translateY(-2px); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92); backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr__bar { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.hdr__logo img { height: 34px; width: auto; }
.hdr__nav { display: flex; align-items: center; gap: 26px; }
.hdr__nav a { font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--ink); }
.hdr__nav a:hover { color: var(--kelly); }
.hdr__cta { display: flex; align-items: center; gap: 12px; }
.hdr__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hdr__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

@media (max-width: 980px) {
  .hdr__nav, .hdr__cta .btn--text { display: none; }
  .hdr__toggle { display: block; }
  .hdr__nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 14px 24px 22px; box-shadow: var(--shadow-md);
  }
  .hdr__nav.is-open a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--mist-2); }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(130, 195, 65, .28) 0%, rgba(130, 195, 65, 0) 45%),
    linear-gradient(155deg, var(--forest) 0%, var(--forest-deep) 55%, var(--forest-deeper) 100%);
}
.hero::after { /* fairway "road into the distance" arc echoing the logo */
  content: ""; position: absolute; right: -16%; bottom: -42%; width: 70%; height: 130%;
  border-radius: 50%; border: 2px solid rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 40px rgba(255, 255, 255, .04), 0 0 0 120px rgba(255, 255, 255, .03);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: clamp(56px, 8vw, 96px) 0; position: relative; z-index: 2; }
.hero__eyebrow { color: var(--chartreuse); }
.hero__eyebrow::before { background: var(--chartreuse); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.2rem); font-weight: 800; }
.hero h1 .accent { color: var(--chartreuse); display: block; }
.hero__sub { font-size: clamp(1.06rem, 1.7vw, 1.28rem); color: rgba(255, 255, 255, .9); max-width: 46ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; color: rgba(255, 255, 255, .82); font-size: .86rem; font-weight: 600; font-family: var(--ff-display); }
.hero__trust span { display: inline-flex; align-items: center; gap: .5ch; }
.hero__trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--chartreuse); }

/* Hero hosts card */
.hosts {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hosts__label { font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--kelly); margin-bottom: 14px; }
.hosts__row { display: flex; gap: 14px; align-items: center; padding: 12px 0; }
.hosts__row + .hosts__row { border-top: 1px solid var(--line); }
.hosts__row img { width: 64px; height: 64px; border-radius: 50%; flex: 0 0 auto; background: var(--mist); border: 2px solid var(--mist-2); }
.hosts__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem; }
.hosts__meta { font-size: .82rem; color: var(--muted); }
.hosts__foot { margin-top: 12px; font-size: .82rem; color: var(--slate); background: var(--mist); border-radius: var(--radius-sm); padding: 10px 12px; }
.hosts__foot strong { color: var(--forest); }

/* ── Stats band ──────────────────────────────────────────────────────────── */
.stats { background: var(--forest-deeper); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 42px 0; }
.stat { text-align: center; }
.stat__fig { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--chartreuse); letter-spacing: -.02em; }
.stat__lbl { font-size: .86rem; color: rgba(255, 255, 255, .82); }

/* ── Section heading helper ──────────────────────────────────────────────── */
.shead { max-width: 64ch; margin-bottom: 48px; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Pillars grid ────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--chartreuse-soft); }
.pillar__k { font-family: var(--ff-display); font-weight: 800; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--kelly); }
.pillar h3 { margin: 8px 0 10px; }
.pillar p { color: var(--slate); margin: 0; font-size: .97rem; }
.pillar__bar { width: 38px; height: 4px; border-radius: 4px; background: var(--chartreuse); margin-top: 18px; }

/* ── Video blocks ────────────────────────────────────────────────────────── */
.video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #0c241b; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__cap { font-size: .9rem; color: var(--muted); margin-top: 12px; }
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-split--rev .media-split__text { order: 2; }

.placeholder-flag {
  display: inline-flex; gap: .5ch; align-items: center; margin-top: 10px;
  font-size: .8rem; font-weight: 700; font-family: var(--ff-display);
  color: #8a5a00; background: #fff6e0; border: 1px solid #f1d99a; border-radius: 999px; padding: 5px 12px;
}

/* ── Core values ─────────────────────────────────────────────────────────── */
.values { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.values__img { border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; background: #fff; }
.values__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; counter-reset: cv; margin: 0; padding: 0; list-style: none; }
.values__list li {
  counter-increment: cv; position: relative; padding-left: 40px;
  font-family: var(--ff-display); font-weight: 600; font-size: .98rem; color: var(--ink); line-height: 1.3;
}
.values__list li::before {
  content: counter(cv); position: absolute; left: 0; top: -2px;
  width: 28px; height: 28px; border-radius: 8px; background: var(--mist-2); color: var(--forest);
  display: grid; place-items: center; font-weight: 800; font-size: .82rem;
}

/* ── Tools grid ──────────────────────────────────────────────────────────── */
.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tool { background: var(--mist); border-radius: var(--radius); padding: 24px; border: 1px solid var(--mist-2); }
.tool h3 { font-size: 1.08rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.tool h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--chartreuse); flex: 0 0 auto; }
.tool p { margin: 0; color: var(--slate); font-size: .94rem; }

/* ── Transition roadmap ──────────────────────────────────────────────────── */
.road { position: relative; margin-top: 16px; }
.road__line { position: absolute; left: 23px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--chartreuse), var(--mist-2)); }
.road__step { position: relative; padding: 0 0 30px 70px; }
.road__num {
  position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: #fff; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 800; box-shadow: 0 6px 16px rgba(0, 104, 72, .3); z-index: 2;
}
.road__step:nth-child(2) .road__num { background: var(--kelly); }
.road__step:nth-child(3) .road__num { background: var(--kelly); }
.road__step h3 { margin-bottom: 4px; font-size: 1.18rem; }
.road__step p { color: var(--slate); margin: 0; max-width: 62ch; }

/* ── Leaders ─────────────────────────────────────────────────────────────── */
.leaders { display: grid; gap: 34px; }
.leader { display: grid; grid-template-columns: 320px 1fr; gap: 36px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.leader__photo { width: 100%; height: 100%; min-height: 380px; object-fit: cover; object-position: center top; }
.leader__body { padding: 30px 34px 32px 0; }
.leader__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; }
.leader__title { color: var(--kelly); font-weight: 700; font-family: var(--ff-display); font-size: .95rem; }
.leader__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.chip { font-size: .8rem; font-weight: 600; font-family: var(--ff-display); color: var(--forest); background: var(--mist); border: 1px solid var(--mist-2); border-radius: 999px; padding: 5px 12px; }
.leader__body p { color: var(--slate); font-size: .98rem; }
.leader__contact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ── Virtual Day ─────────────────────────────────────────────────────────── */
.vday { background: linear-gradient(155deg, var(--forest) 0%, var(--forest-deeper) 100%); color: #fff; border-radius: var(--radius); padding: clamp(34px, 5vw, 56px); position: relative; overflow: hidden; }
.vday::after { content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 160%; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .08); }
.vday__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.vday h2 { color: #fff; }
.vday__agenda { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.vday__agenda li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255, 255, 255, .92); font-size: .98rem; }
.vday__agenda li::before { content: "✓"; color: var(--chartreuse); font-weight: 800; flex: 0 0 auto; }

/* ── Join form ───────────────────────────────────────────────────────────── */
.join { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--kelly); box-shadow: 0 0 0 3px rgba(12, 151, 72, .15); }
.field textarea { min-height: 110px; resize: vertical; }
.form__note { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.form__ok { display: none; background: var(--mist); border: 1px solid var(--chartreuse-soft); border-radius: var(--radius-sm); padding: 14px 16px; color: var(--forest); font-weight: 600; margin-bottom: 16px; }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta { background: var(--forest-deeper); color: #fff; text-align: center; }
.cta h2 { color: #fff; max-width: 22ch; margin: 0 auto .5rem; }
.cta p { color: rgba(255, 255, 255, .85); max-width: 52ch; margin: 0 auto 1.6rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { max-width: 840px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--ff-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--kelly); transition: transform .2s ease; }
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { color: var(--slate); padding: 0 44px 22px 0; margin: 0; font-size: .98rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.ftr { background: var(--forest-deeper); color: rgba(255, 255, 255, .8); padding: 56px 0 30px; font-size: .9rem; }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.ftr__logo { height: 40px; width: auto; margin-bottom: 16px; }
.ftr h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.ftr a { color: rgba(255, 255, 255, .8); }
.ftr a:hover { color: var(--chartreuse); }
.ftr__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr__links li, .ftr__links a { overflow-wrap: anywhere; }
.ftr__top > * { min-width: 0; }
.ftr__badges { display: flex; align-items: center; gap: 18px; margin-top: 18px; }
.ftr__badges img { height: 46px; width: auto; opacity: .9; }
.ftr__legal { padding-top: 26px; font-size: .76rem; line-height: 1.6; color: rgba(255, 255, 255, .6); }
.ftr__legal p { margin: 0 0 10px; }

/* ── Reveal on scroll ────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hdr { background: #fff; }   /* opaque on mobile — never see photos through it */
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .pillars, .tools { grid-template-columns: 1fr 1fr; }
  .values, .media-split, .vday__grid, .join { grid-template-columns: 1fr; gap: 30px; }
  .media-split--rev .media-split__text { order: 0; }
  .leader {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }
  .leader__photo {
    min-height: 0;
    width: 210px;
    height: 280px;                /* 3:4 of the source → whole headshot, zoomed out */
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }
  .leader__body {
    width: 100%;
    margin-top: 16px;
    padding: 22px 22px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
  }
  .leader__chips, .leader__contact { justify-content: center; }
  .leader__body p { text-align: left; }
  .leader__body p:first-of-type { margin-top: 4px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .pillars, .tools, .values__list, .form__row { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .leader__photo { width: 190px; height: 253px; }
  .ftr__top { grid-template-columns: 1fr; gap: 26px; }
}

/* Honeypot — visually hidden from humans, visible to bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
