:root{
  --green:#1F3B24;
  --green-deep:#13291A;
  --green-accent:#3F6B4A;
  --gold:#B08D57;
  --cream:#F7F3EC;
  --cream-dim:#EFEAE0;
  --ink:#201F1D;
  --muted:#6b6459;
  --radius:14px;
  --max:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{ font-family:'Fraunces',serif; color:var(--green); margin:0; line-height:1.15; }
a{ color:inherit; }
img{ display:block; max-width:100%; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }
section{ padding:88px 0; }
.eyebrow{
  font-family:'Inter',sans-serif; font-weight:700; font-size:12.5px; letter-spacing:3.5px;
  color:var(--gold); text-transform:uppercase; margin-bottom:16px; display:block;
}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Inter',sans-serif; font-weight:600; font-size:15px;
  padding:14px 26px; border-radius:999px; text-decoration:none;
  border:1.5px solid transparent; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }
.btn-primary{ background:var(--green); color:var(--cream); }
.btn-primary:hover{ background:var(--green-deep); transform:translateY(-2px); box-shadow:0 10px 24px rgba(31,59,36,0.25); }
.btn-ghost{ background:transparent; color:var(--green); border-color:var(--green); }
.btn-ghost:hover{ background:var(--green); color:var(--cream); }

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(247,243,236,0.92); backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(31,59,36,0.08);
}
nav.wrap{ display:flex; align-items:center; justify-content:space-between; padding:12px 28px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand img{ width:40px; height:auto; }
.brand-name{ font-family:'Fraunces',serif; font-weight:600; font-size:20px; color:var(--green); }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ text-decoration:none; font-weight:600; font-size:14.5px; color:var(--ink); position:relative; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-5px; height:2px; width:0; background:var(--gold);
  transition:width .2s ease;
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:20px; }
.menu-btn{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.menu-btn span{ display:block; width:24px; height:2px; background:var(--green); margin:5px 0; transition:.2s; }

@media (max-width: 860px){
  .nav-links{
    position:fixed; inset:60px 0 auto 0; background:var(--cream);
    flex-direction:column; align-items:flex-start; padding:24px 28px; gap:18px;
    border-bottom:1px solid rgba(31,59,36,0.1);
    transform:translateY(-120%); transition:transform .25s ease;
  }
  .nav-links.open{ transform:translateY(0); }
  .menu-btn{ display:block; }
  .nav-cta .btn-primary{ display:none; }
}

/* ---------- SECTION HEADS ---------- */
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,4vw,40px); font-weight:600; }
.section-head p{ color:var(--muted); font-size:16.5px; margin-top:14px; }

/* ---------- FOOTER ---------- */
footer{ background:var(--green-deep); color:var(--cream); padding:52px 0 30px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:28px; margin-bottom:32px; }
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand img{ width:42px; height:auto; }
.footer-brand-text .name{ font-family:'Fraunces',serif; font-size:19px; font-weight:600; }
.footer-brand-text .motto{ font-family:'Fraunces',serif; font-style:italic; color:var(--gold); font-size:13px; margin-top:2px; }
.footer-col h4{ font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; font-family:'Inter',sans-serif; font-weight:700; }
.footer-col p, .footer-col a{ font-size:14px; color:rgba(247,243,236,0.85); text-decoration:none; display:block; margin-bottom:6px; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  border-top:1px solid rgba(247,243,236,0.15); padding-top:22px;
  font-size:13px; color:rgba(247,243,236,0.55); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
