@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root{
  --page:#ffffff;
  --text:#0b0f14;
  --muted:#5b6472;
  --line:#e9e9ee;
  --radius:16px;
  --shadow:0 14px 40px rgba(11,15,20,.10);
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--page);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%;height:auto;display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:9999;
}

.header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-link{
  font-weight:600;
  letter-spacing:.2px;
  text-decoration:none;
}
.brand-sub{
  color:var(--muted);
  font-size:13px;
}

.nav{
  display:flex;
  gap:14px;
}
.nav a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
}
.nav a:hover{
  color:var(--text);
  border-color:var(--line);
  background:#fff;
}

.hero{
  padding:44px 0 26px;
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(30px, 4vw, 44px);
  letter-spacing:-.5px;
}
.lede{
  margin:10px 0;
  font-size:16px;
  color:#1a2230;
  max-width:none;
}
.hero-meta{
  margin-top:16px;
  display:flex;
  gap:10px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:12px;
  font-weight:600;
  background:#fff;
}

.section{
  padding:26px 0 38px;
}
.section-head{
  margin-bottom:14px;
}
.section h2{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:-.2px;
}

.card, .map-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card{
  padding:18px 18px;
  max-width:100%;
}

.muted{color:var(--muted)}
.small{font-size:13px}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
}
.bullets li{margin:6px 0}

.map-card{
  overflow:hidden;
}
.map-card iframe{
  width:100%;
  height:min(70vh, 640px);
  border:0;
  display:block;
  background:#f7f7fa;
}
.map-footer{
  padding:12px 16px;
  border-top:1px solid var(--line);
}
.inline-link{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0 28px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

