:root{
  --orange:#F5821F;
  --orange-deep:#D96C0F;
  --green:#1A7A4A;
  --green-deep:#125334;
  --cream:#FBF5EA;
  --sand:#F1E5D0;
  --paper:#FFFDF9;
  --ink:#2A241C;
  --ink-soft:#6B6153;
  --line:#E4D6BC;
  --footer-bg:#17241D;
  --footer-ink:#DCD3C2;
  --radius:18px;
  --maxw:1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', -apple-system, sans-serif;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:600;
  line-height:1.05;
  margin:0;
  letter-spacing:-0.01em;
}
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.eyebrow{
  font-family:'JetBrains Mono', monospace;
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--orange-deep);
  font-weight:500;
}
.eyebrow.green{ color:var(--green); }
section{ position:relative; }
::selection{ background:var(--orange); color:#fff; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}

/* ---------- NAV ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(251,245,234,0.86);
  border-bottom:1px solid var(--line);
}
.nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.nav-brand{ display:flex; align-items:center; gap:10px; }
.nav-brand img.nav-symbol{ height:34px; width:auto; }
.nav-brand img.nav-wordmark{ height:22px; width:auto; margin-top:2px; }
.nav-links{ display:none; align-items:center; gap:34px; }
@media (min-width:860px){ .nav-links{ display:flex; } }
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--ink);
  position:relative; padding:4px 0;
}
.nav-links a.active{ color:var(--orange-deep); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--orange); transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 22px; border-radius:999px;
  font-size:14.5px; font-weight:600;
  border:1.5px solid transparent;
  cursor:pointer;
}
.btn-primary{ background:var(--orange); color:#fff; }
.btn-primary:hover{ background:var(--orange-deep); }
.btn-ghost{ border-color:var(--ink); color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--cream); }
.btn-line-green{ border-color:var(--green); color:var(--green); }
.btn-line-green:hover{ background:var(--green); color:#fff; }
.btn-white{ background:#fff; color:var(--green-deep); }
.btn-white:hover{ background:var(--cream); }
.nav-cta{ display:none; }
@media (min-width:860px){ .nav-cta{ display:inline-flex; } }

.nav-toggle{
  display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
@media (min-width:860px){ .nav-toggle{ display:none; } }
.nav-toggle span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (max-width:859px){
  .nav-links{
    display:flex; flex-direction:column; gap:0; position:absolute; top:76px; left:0; right:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .nav-links.open{ max-height:400px; }
  .nav-links a{ padding:16px 28px; border-top:1px solid var(--line); }
  .nav-links a::after{ display:none; }
}

/* ---------- signature journey line (SVG) ---------- */
.journey-rail{
  position:absolute; top:0; right:18px; width:3px; height:100%;
  display:none; z-index:1; pointer-events:none;
}
@media (min-width:1080px){ .journey-rail{ display:block; } }
.journey-rail svg{ height:100%; width:100%; overflow:visible; }
.journey-rail path{
  fill:none; stroke-width:3; stroke-linecap:round;
}

/* ---------- SECTION HEADERS ---------- */
.sec-head{ max-width:640px; margin-bottom:52px; }
.sec-head h2{ font-size:clamp(30px,3.4vw,42px); margin-top:12px; }
.sec-head p{ margin-top:14px; color:var(--ink-soft); font-size:16.5px; line-height:1.6; }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- PROMISE STRIP ---------- */
.promise{
  background:var(--ink); color:var(--cream); padding:22px 0;
}
.promise .wrap{
  display:flex; flex-wrap:wrap; gap:14px 34px; align-items:center; justify-content:space-between;
}
.promise-tag{ font-family:'Fraunces', serif; font-style:italic; font-size:18px; color:var(--orange); }
.promise-values{ display:flex; gap:26px; flex-wrap:wrap; font-size:13.5px; letter-spacing:.03em; color:var(--footer-ink); }
.promise-values b{ color:var(--cream); font-weight:600; }

/* ---------- FOOTER (shared) ---------- */
footer{ background:var(--footer-bg); color:var(--footer-ink); padding:70px 0 30px; }
.foot-top{
  display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:30px; padding-bottom:50px;
  border-bottom:1px solid rgba(220,211,194,0.15);
}
@media (max-width:900px){ .foot-top{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .foot-top{ grid-template-columns:1fr; } }
.foot-brand img{ height:30px; margin-bottom:14px; }
.foot-brand p{ font-size:13.5px; line-height:1.6; color:rgba(220,211,194,0.65); max-width:32ch; }
.foot-col h4{
  font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--orange);
  margin:0 0 16px; font-weight:600; font-family:'Inter',sans-serif;
}
.foot-col a{ display:block; font-size:14px; color:rgba(220,211,194,0.85); margin-bottom:11px; }
.foot-col a:hover{ color:#fff; }
.foot-bottom{
  padding-top:26px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:12.5px; color:rgba(220,211,194,0.55);
}
.foot-bottom .legal-line{ max-width:70ch; line-height:1.6; }
.foot-bottom b{ color:var(--footer-ink); }

/* ---------- CTA BAND (shared) ---------- */
.cta-band{
  margin:0 28px 110px; max-width:calc(var(--maxw) - 56px); margin-left:auto; margin-right:auto;
  background:linear-gradient(120deg, var(--green-deep), var(--green));
  border-radius:28px; padding:64px 56px; color:#fff;
  display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::after{
  content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px; border-radius:50%;
  background:rgba(245,130,31,0.25);
}
.cta-band h2{ font-size:clamp(26px,3vw,34px); max-width:16ch; color:#fff; position:relative; }
.cta-band p{ margin-top:10px; color:rgba(255,255,255,0.8); font-size:15px; max-width:42ch; position:relative;}
.cta-band .btn-primary{ position:relative; }

/* ---------- generic status pill ---------- */
.pill{
  display:inline-block; font-size:11.5px; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  padding:5px 12px; border-radius:999px;
}
.pill-open{ background:var(--green); color:#fff; }
.pill-soon{ background:var(--sand); color:var(--ink-soft); }
.pill-orange{ background:var(--orange); color:#fff; }
