/* Jackhouse Nature Reserve - simple, fast, accessible, SEO-friendly */
:root{
  --bg:#0b0f0d;
  --panel:#0f1713;
  --text:#eaf2ee;
  --muted:#b8c7bf;
  --brand:#62d08f;
  --brand2:#7ac7ff;
  --border:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
  --focus: 0 0 0 3px rgba(122,199,255,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(98,208,143,.14), transparent 60%),
              radial-gradient(1200px 800px at 80% 0%, rgba(122,199,255,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit}
a:hover{color:var(--brand)}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}
.skip-link{
  position:absolute; left:-999px; top:10px; background:#fff; color:#000;
  padding:10px 12px; border-radius:10px; z-index:9999;
}
.skip-link:focus{left:10px; outline:none; box-shadow:var(--focus)}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,13,.65);
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; gap:10px; align-items:center; text-decoration:none;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, rgba(98,208,143,.95), rgba(122,199,255,.9));
  box-shadow: var(--shadow);
}
.brand span{font-weight:750; letter-spacing:.2px}
.nav{
  display:flex; gap:16px; align-items:center;
}
.nav a{
  text-decoration:none;
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
}
.nav a[aria-current="page"]{
  color:var(--text);
  background: rgba(255,255,255,.07);
}
.nav a:hover{background: rgba(255,255,255,.06); color:var(--text)}
.menu-btn{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
}
.menu-btn:focus{outline:none; box-shadow:var(--focus)}
.hero{
  padding:42px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card{padding:26px}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  font-size:14px; color:var(--muted);
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
}
.kicker b{color:var(--text)}
h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.15;
}
.lead{color:var(--muted); font-size: 17px; margin:0}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(98,208,143,.30), rgba(122,199,255,.20));
  border-color: rgba(98,208,143,.40);
}
.btn:hover{transform: translateY(-1px)}
.btn:focus{outline:none; box-shadow:var(--focus)}
.hero-side{padding:18px}
.meta{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.meta .item{
  padding:14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.10);
}
.meta .item .label{color:var(--muted); font-size:13px}
.meta .item .value{font-weight:700; margin-top:4px}
section{padding:22px 0}
.section-title{
  font-size:22px;
  margin:0 0 10px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.small-card{padding:16px}
.small-card h3{margin:0 0 8px; font-size:18px}
.small-card p{margin:0; color:var(--muted)}
.note{
  padding:14px;
  border-radius: 16px;
  border:1px dashed rgba(122,199,255,.45);
  background: rgba(122,199,255,.08);
  color: var(--text);
}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{
  font-size:13px;
  color: var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:7px 10px;
  border-radius:999px;
}
.prose{
  padding:18px;
}
.prose p{color:var(--muted); margin:0 0 12px}
.prose ul{color:var(--muted)}
.prose li{margin:8px 0}
.two-col{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius: 16px;
  border:1px solid var(--border);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.table th{color:var(--text); text-align:left; background: rgba(255,255,255,.05)}
.table td{color:var(--muted)}
.table tr:last-child td{border-bottom:none}
.faq details{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
}
.faq p{margin:10px 0 0; color:var(--muted)}
.map-embed{
  width:100%;
  height: 340px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
footer{
  margin-top:22px;
  padding:22px 0 34px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.footer-grid a{color:var(--muted)}
.footer-grid a:hover{color:var(--text)}
.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding:2px 6px;
  border:1px solid var(--border);
  border-radius:8px;
  background: rgba(0,0,0,.20);
  color:var(--muted);
}
@media (max-width: 940px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .two-col{grid-template-columns:1fr}
  .menu-btn{display:inline-flex}
  .nav{
    display:none;
    position:absolute;
    right:18px;
    top:62px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    background: rgba(11,15,13,.92);
    border:1px solid var(--border);
    border-radius: 16px;
    min-width: 240px;
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{padding:10px 12px}
  .footer-grid{grid-template-columns:1fr}
}
