/* ============================================
   Kingdom Harvesters — Design tokens
   Palette: ink #17181C · paper #FAF6EC · wheat #C99A3D
            wheat-light #E7C878 · burgundy #6E2A38 · line #E3DAC4
   Type: Fraunces (display) / Inter (body/UI)
   ============================================ */

:root{
  --ink:        #17181C;
  --paper:      #FAF6EC;
  --paper-dim:  #F1EADA;
  --wheat:      #C99A3D;
  --wheat-light:#E7C878;
  --burgundy:   #6E2A38;
  --line:       #E3DAC4;
  --muted:      #6B6656;

  --display: "Fraunces", Georgia, serif;
  --body: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;

  --max: 1140px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
}

h1,h2,h3{
  font-family:var(--display);
  font-weight:600;
  line-height:1.12;
  letter-spacing:-0.01em;
}

.eyebrow{
  font-family:var(--body);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--wheat);
}

/* ---------- Header ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(250,246,236,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
header.site .bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  max-width:var(--max); margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--display); font-weight:600; font-size:1.15rem;
  color:var(--ink);
}
.brand .mark{ width:26px; height:26px; color:var(--wheat); }
nav.main{ display:flex; align-items:center; gap:28px; }
nav.main a{
  font-size:0.86rem; font-weight:500; color:var(--ink);
  position:relative; padding:4px 0;
}
nav.main a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:1.5px;
  background:var(--wheat); transition:width .2s ease;
}
nav.main a:hover::after{ width:100%; }
nav.main a.current::after{ width:100%; }
.nav-cta{
  background:var(--burgundy); color:var(--paper) !important;
  padding:9px 18px; border-radius:2px; font-weight:600 !important;
}
.nav-cta::after{ display:none; }
.menu-toggle{ display:none; }

@media (max-width:840px){
  nav.main{
    position:fixed; inset:64px 0 0 0; background:var(--paper);
    flex-direction:column; align-items:flex-start; padding:24px 28px;
    gap:22px; transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
  }
  nav.main.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .menu-toggle{
    display:block; background:none; border:1px solid var(--line);
    width:38px; height:38px; border-radius:2px; cursor:pointer;
  }
  .menu-toggle span{
    display:block; width:16px; height:1.5px; background:var(--ink);
    margin:3px auto;
  }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block; padding:13px 26px; border-radius:2px;
  font-weight:600; font-size:0.9rem; letter-spacing:0.01em;
  transition:transform .15s ease, background .15s ease;
}
.btn-primary{ background:var(--burgundy); color:var(--paper); }
.btn-primary:hover{ background:#5a1f2b; transform:translateY(-1px); }
.btn-ghost{ border:1px solid var(--ink); color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--paper); }
.btn-gold{ background:var(--wheat); color:var(--ink); }
.btn-gold:hover{ background:var(--wheat-light); }

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:var(--ink); color:var(--paper);
  padding:110px 0 90px;
}
.hero .wrap{ position:relative; z-index:2; }
.hero .eyebrow{ color:var(--wheat-light); }
.hero h1{
  font-size:clamp(2.4rem, 5.4vw, 4.1rem);
  color:var(--paper);
  max-width:15ch;
  margin:18px 0 22px;
}
.hero h1 em{ font-style:italic; color:var(--wheat-light); }
.hero p.lede{
  font-size:1.08rem; color:#D8D2C2; max-width:52ch; margin-bottom:34px;
}
.hero .cta-row{ display:flex; gap:14px; flex-wrap:wrap; }
.wheat-field{
  position:absolute; right:-40px; bottom:-30px; width:520px; max-width:60vw;
  opacity:0.9; z-index:1;
}
@media (max-width:640px){
  .wheat-field{ opacity:0.35; right:-80px; }
}

/* ---------- Sections ---------- */
section{ padding:88px 0; }
.section-alt{ background:var(--paper-dim); }
.section-ink{ background:var(--ink); color:var(--paper); }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(1.7rem,3vw,2.4rem); margin-top:10px; }
.section-head p{ color:var(--muted); margin-top:14px; font-size:1.02rem; }
.section-ink .section-head p{ color:#C9C3B2; }

.divider{
  height:40px; margin:0 auto;
  display:block; opacity:0.8;
}

/* ---------- Grid / cards ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
@media (max-width:840px){
  .grid-2, .grid-3{ grid-template-columns:1fr; }
}

.card{
  background:var(--paper); border:1px solid var(--line);
  padding:32px 28px; border-radius:2px;
}
.section-ink .card{ background:#1F2027; border-color:#33343D; }
.card .num{
  font-family:var(--display); font-size:0.85rem; color:var(--wheat);
  border:1px solid var(--wheat); border-radius:50%;
  width:30px; height:30px; display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.card h3{ font-size:1.15rem; margin-bottom:10px; }
.card p{ color:var(--muted); font-size:0.96rem; }
.section-ink .card p{ color:#B9B3A2; }

/* mission/vision list */
.vision-list li{
  display:flex; gap:14px; padding:14px 0; border-top:1px solid var(--line);
}
.vision-list li:last-child{ border-bottom:1px solid var(--line); }
.vision-list .tick{ color:var(--wheat); flex-shrink:0; font-family:var(--display); }

/* pull quote */
blockquote.verse{
  font-family:var(--display); font-style:italic;
  font-size:1.5rem; line-height:1.5; color:var(--ink);
  border-left:2px solid var(--wheat); padding-left:24px; max-width:620px;
}
.section-ink blockquote.verse{ color:var(--paper); }
blockquote.verse cite{
  display:block; font-family:var(--body); font-style:normal;
  font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--wheat); margin-top:14px;
}

/* steps (Join Us — genuine sequence) */
.steps{ counter-reset:step; }
.step{
  display:flex; gap:22px; padding:26px 0; border-top:1px solid var(--line);
}
.step:last-child{ border-bottom:1px solid var(--line); }
.step .stepnum{
  counter-increment:step; font-family:var(--display); font-size:1.4rem;
  color:var(--wheat); min-width:44px;
}
.step .stepnum::before{ content: counter(step, decimal-leading-zero); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.contact-item{ margin-bottom:22px; }
.contact-item .eyebrow{ display:block; margin-bottom:6px; }
.contact-item a, .contact-item span{ font-size:1.05rem; }
@media (max-width:840px){ .contact-grid{ grid-template-columns:1fr; } }

form.contact-form{ display:flex; flex-direction:column; gap:16px; }
form.contact-form input, form.contact-form textarea{
  font-family:var(--body); font-size:0.96rem;
  padding:13px 14px; border:1px solid var(--line); border-radius:2px;
  background:var(--paper); color:var(--ink);
}
form.contact-form input:focus, form.contact-form textarea:focus{
  outline:2px solid var(--wheat); outline-offset:1px;
}
form.contact-form textarea{ min-height:130px; resize:vertical; }

/* Banner strip (image carousel replacement) */
.banner-strip{
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:2px;
  background:var(--line);
}
.banner-strip div{
  aspect-ratio:4/3; background:linear-gradient(160deg,#C99A3D,#6E2A38);
  display:flex; align-items:flex-end; padding:18px;
  font-family:var(--display); color:var(--paper); font-size:1.1rem;
}
@media (max-width:640px){ .banner-strip{ grid-template-columns:1fr; } }

/* CTA band */
.cta-band{
  background:var(--burgundy); color:var(--paper);
  padding:64px 0; text-align:center;
}
.cta-band h2{ color:var(--paper); font-size:clamp(1.6rem,3vw,2.2rem); margin-bottom:16px; }
.cta-band p{ color:#E9D9DD; max-width:52ch; margin:0 auto 30px; }

/* Footer */
footer.site{
  background:var(--ink); color:#B9B3A2; padding:56px 0 28px;
}
.footer-grid{
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px;
  padding-bottom:36px; border-bottom:1px solid #303138;
}
.footer-grid h4{
  font-family:var(--body); font-size:0.78rem; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--wheat-light); margin-bottom:16px;
}
.footer-grid p{ font-size:0.92rem; max-width:34ch; }
.footer-grid a{ display:block; font-size:0.92rem; padding:5px 0; }
.footer-grid a:hover{ color:var(--paper); }
.footer-brand{
  font-family:var(--display); font-size:1.2rem; color:var(--paper); margin-bottom:12px;
}
.foot-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px; font-size:0.8rem; flex-wrap:wrap; gap:12px;
}
.social-row{ display:flex; gap:14px; }
.social-row a{
  width:34px; height:34px; border:1px solid #33343D; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ border-color:var(--wheat); }

@media (max-width:840px){
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
}

/* Page hero (interior pages) */
.page-hero{
  background:var(--ink); color:var(--paper); padding:70px 0 56px;
}
.page-hero h1{ color:var(--paper); font-size:clamp(2rem,4vw,2.8rem); margin-top:10px; }
.page-hero p{ color:#C9C3B2; max-width:56ch; margin-top:14px; }

/* Fast plan list */
.plan-list{ display:flex; flex-direction:column; gap:0; }
.plan-list li{
  padding:16px 0; border-top:1px solid var(--line);
  display:flex; gap:14px; font-size:0.98rem;
}
.plan-list li:last-child{ border-bottom:1px solid var(--line); }
.plan-list b{ color:var(--wheat); font-family:var(--display); }

.reveal{ opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; }
.reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}
