/* styles.css */
:root{
  --bg: #07120b;         /* deep forest */
  --bg2:#0b1b11;         /* evergreen */
  --card:#0d2116;        /* dark green */
  --text:#f4f1e6;        /* warm off-white */
  --muted: rgba(244,241,230,.74);
  --line: rgba(244,241,230,.12);
  --accent:#7aa36a;      /* leaf */
  --accent2:#b79a6a;     /* light brown */
  --accent3:#d7c29a;     /* sand */
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(183,154,106,.14), transparent 60%),
    radial-gradient(900px 500px at 80% 18%, rgba(122,163,106,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

/* Background canvas */
#ambient{
  position:fixed;
  inset:0;
  z-index:-2;
  display:block;
  opacity:.65;
}

/* Helpers */
.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header / Nav */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background: linear-gradient(to bottom, rgba(7,18,11,.72), rgba(7,18,11,.24));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:800;
  letter-spacing:.2px;
}
.brand-mark{
  width:34px;height:34px;border-radius:12px;
  background:
    radial-gradient(circle at 30% 35%, rgba(215,194,154,.35), transparent 55%),
    linear-gradient(135deg, rgba(122,163,106,1), rgba(183,154,106,1));
  box-shadow: 0 14px 34px rgba(122,163,106,.18);
}
.brand-name{ font-size:16px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav-links a{
  color: rgba(244,241,230,.86);
  text-decoration:none;
  font-size:14px;
}
.nav-links a:hover{ color: var(--text); }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  height:42px;
  width:46px;
  cursor:pointer;
}
.burger{
  display:block;
  width:18px;height:2px;
  background: rgba(244,241,230,.85);
  margin:0 auto;
  position:relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;height:2px;
  background: rgba(244,241,230,.85);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(244,241,230,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(244,241,230,.18);
}
.btn-primary{
  border-color: rgba(122,163,106,.55);
  background: linear-gradient(180deg, rgba(122,163,106,.95), rgba(122,163,106,.72));
  box-shadow: 0 18px 40px rgba(122,163,106,.18);
}
.btn-primary:hover{
  background: linear-gradient(180deg, rgba(122,163,106,1), rgba(122,163,106,.82));
}
.btn-ghost{
  background: rgba(0,0,0,.12);
  border-color: rgba(215,194,154,.25);
}

/* Hero */
.hero{
  min-height: calc(100vh - 78px);
  display:grid;
  place-items:center;
  padding: 64px 0 76px;
}
.hero-card{
  width:min(900px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(244,241,230,.14);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(183,154,106,.16), transparent 60%),
    radial-gradient(520px 240px at 20% 25%, rgba(122,163,106,.14), transparent 60%),
    rgba(13,33,22,.58);
  box-shadow: var(--shadow);
  padding: 34px 26px 26px;
  position:relative;
  overflow:hidden;
}
.hero-card::after{
  /* soft highlight */
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(360px 160px at 65% 30%, rgba(215,194,154,.12), transparent 60%);
  pointer-events:none;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border: 1px solid rgba(215,194,154,.25);
  background: rgba(215,194,154,.08);
  color: rgba(244,241,230,.9);
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
  margin-bottom:18px;
}
h1{
  margin:0;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height:1.06;
  letter-spacing:-0.02em;
}
.sub{
  margin:18px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.65;
  max-width: 62ch;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

/* Stats row */
.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.stat{
  border:1px solid rgba(244,241,230,.12);
  background: rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 14px 14px;
}
.stat-k{
  font-size:12px;
  color: rgba(215,194,154,.85);
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:6px;
}
.stat-v{
  font-size:14px;
  color: rgba(244,241,230,.86);
  line-height:1.35;
}

/* Sections */
.section{
  padding: 56px 0;
}
.section h2{
  margin:0 0 12px;
  font-size: 28px;
  letter-spacing:-0.01em;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height:1.75;
  max-width: 70ch;
}

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  border:1px solid rgba(244,241,230,.12);
  border-radius: var(--radius);
  background: rgba(0,0,0,.12);
  padding: 18px;
}
.card h3{
  margin:0 0 8px;
  font-size: 16px;
}
.card p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.contact-list{
  padding-left:0;
  list-style:none;
  margin:18px 0 0;
  color: var(--muted);
}
.dot{
  display:inline-block;
  width:8px;height:8px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  margin-right:10px;
  transform: translateY(-1px);
}
.form{
  border:1px solid rgba(244,241,230,.12);
  border-radius: var(--radius);
  background: rgba(0,0,0,.12);
  padding: 16px;
}
label{
  display:block;
  font-size:12px;
  color: rgba(244,241,230,.85);
  font-weight:700;
  margin-bottom:10px;
}
input, textarea{
  width:100%;
  margin-top:6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(244,241,230,.14);
  background: rgba(7,18,11,.35);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(122,163,106,.55);
  box-shadow: 0 0 0 4px rgba(122,163,106,.14);
}
.form .btn{ width:100%; margin-top:8px; }
.form-note{
  margin:10px 0 0;
  color: rgba(215,194,154,.9);
  font-size:12px;
  min-height: 16px;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding: 18px 0;
  background: rgba(0,0,0,.12);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.fineprint{
  color: rgba(244,241,230,.65);
  font-size:12px;
}

/* Responsive */
@media (max-width: 920px){
  .stats{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-links{
    position:absolute;
    right:4vw;
    top:78px;
    width:min(320px, 92vw);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius: 16px;
    border:1px solid rgba(244,241,230,.14);
    background: rgba(7,18,11,.75);
    backdrop-filter: blur(10px);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:10px 12px; border-radius: 12px; }
  .nav-links a:not(.btn):hover{ background: rgba(255,255,255,.06); }
}
