:root{
  --bg:#ffffff;
  --text:#102018;
  --muted:#4b5a52;
  --brand:#0b3a2a;
  --brand2:#0b5fa7;
  --card:#f6f8f7;
  --border:#e3e9e6;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

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

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:10px;text-decoration:none;
}
.brand img{width:42px;height:42px;border-radius:12px}
.brand .title{font-weight:800;letter-spacing:.2px}
.brand .sub{font-size:12px;color:var(--muted);margin-top:-2px}

.navlinks{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.navlinks a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
}
.navlinks a:hover{background:var(--card);color:var(--text)}
.navlinks a.active{background:var(--brand);color:#fff}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;
  text-decoration:none;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:none;
}
.btn.primary{background:var(--brand);color:#fff;border-color:transparent}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost:hover{background:var(--card)}
.btn.small{padding:10px 12px;border-radius:12px;font-size:14px}

.hero{
  padding:34px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%, #f7faf8 100%);
  box-shadow:var(--shadow);
}
.heroMedia{
  min-height:320px;
  background:#000;
  position:relative;
}
.heroMedia img{
  width:100%;height:100%;object-fit:cover;display:block;
  filter:saturate(1.1) contrast(1.02);
}
.heroOverlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:18px;
  background:linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 70%);
  color:#fff;
}
.kicker{font-size:12px;letter-spacing:.14em;text-transform:uppercase;opacity:.92}
.h1{font-size:42px;line-height:1.05;margin:8px 0 10px;font-weight:900}
.lead{font-size:16px;color:rgba(255,255,255,.9);max-width:56ch;margin:0}

.heroBody{padding:18px}
.pills{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 16px}
.pill{
  font-size:13px;color:var(--muted);
  background:var(--card);
  border:1px solid var(--border);
  padding:8px 10px;border-radius:999px;
}
.ctaRow{display:flex;gap:10px;flex-wrap:wrap}
.note{font-size:13px;color:var(--muted);margin-top:10px}

.section{padding:22px 0}
.section h2{margin:0 0 10px;font-size:26px}
.section p{margin:0 0 14px;color:var(--muted);max-width:75ch}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 4;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  display:flex;flex-direction:column;
}
.card .top{
  padding:14px 14px 0;
  display:flex;gap:10px;align-items:flex-start;justify-content:space-between;
}
.badge{
  font-size:12px;
  padding:7px 10px;border-radius:999px;
  background:rgba(11,58,42,.08);
  color:var(--brand);
  border:1px solid rgba(11,58,42,.18);
  white-space:nowrap;
}
.card h3{margin:8px 14px 8px;font-size:18px}
.card p{margin:0 14px 14px;color:var(--muted);font-size:14px}
.card .actions{margin:0 14px 14px;display:flex;gap:10px;flex-wrap:wrap;margin-top:auto}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.gItem{
  grid-column: span 4;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#000;
}
.gItem img{width:100%;height:220px;object-fit:cover;display:block}

.footer{
  border-top:1px solid var(--border);
  padding:22px 0 32px;
  background:#fbfcfb;
}
.footerGrid{
  display:grid;grid-template-columns:1.2fr .8fr;gap:18px;
}
.footer a{color:var(--muted);text-decoration:none}
.footer a:hover{color:var(--text);text-decoration:underline}
.small{font-size:13px;color:var(--muted)}
hr.sep{border:none;border-top:1px solid var(--border);margin:18px 0}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .card{grid-column: span 6}
  .gItem{grid-column: span 6}
  .footerGrid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .h1{font-size:32px}
  .navlinks{display:none}
  .card{grid-column: span 12}
  .gItem{grid-column: span 12}
}
