:root{
  --bg:#F9FAFB;
  --text:#1F2933;
  --muted:#51606d;
  --accent:#5B7C99;
  --accent-2:#AFC4D6;
  --border:rgba(31,41,51,.12);
  --shadow:0 18px 44px rgba(31,41,51,.08);
  --radius:18px;
  --max:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.65;
  letter-spacing:.2px;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
p{margin:.55rem 0}
ul{margin:.6rem 0; padding-left:1.2rem}
li{margin:.3rem 0}
small{color:var(--muted)}

.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:68px 0; border-top:1px solid var(--border)}
.section.compact{padding:44px 0}

h1,h2,h3{
  font-family:"DM Serif Display", Georgia, serif;
  font-weight:400;
  line-height:1.16;
  margin:0 0 12px 0;
  letter-spacing:.2px;
}
h1{font-size:clamp(2rem, 3vw, 3.1rem)}
h2{font-size:clamp(1.6rem, 2.2vw, 2.2rem)}
h3{font-size:1.3rem}
.kicker{
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  margin:0 0 8px 0;
}
.lead{font-size:1.05rem; color:rgba(31,41,51,.92)}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(249,250,251,.86);
  backdrop-filter:saturate(120%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:220px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 10px 22px rgba(31,41,51,.10);
}
.brand strong{font-weight:600; letter-spacing:.2px}
.brand span{display:block; font-size:.85rem; color:var(--muted); margin-top:2px}

.menu{
  display:flex; flex-wrap:wrap;
  gap:10px 14px;
  align-items:center;
  justify-content:flex-end;
}
.menu a{
  padding:8px 10px;
  border-radius:12px;
  color:rgba(31,41,51,.92);
}
.menu a:hover{background:rgba(91,124,153,.08)}
.menu a[aria-current="page"]{
  background:rgba(91,124,153,.12);
  color:rgba(31,41,51,.98);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(91,124,153,.26);
  background:rgba(91,124,153,.10);
  color:rgba(31,41,51,.95);
  gap:10px;
}
.btn:hover{background:rgba(91,124,153,.14)}
.btn.solid{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border:1px solid rgba(91,124,153,.30);
  color:#0c1620;
}
.btn.solid:hover{filter:saturate(1.06) brightness(1.02)}

.hero{
  padding:78px 0 58px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#0b1520;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:26px;
  align-items:stretch;
}
.hero-card{
  background:rgba(249,250,251,.88);
  border:1px solid rgba(31,41,51,.14);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px;
}
.hero-meta{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.meta{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(249,250,251,.65);
}
.meta b{display:block; font-size:.92rem; margin-bottom:4px}
.meta span{display:block; color:var(--muted); font-size:.92rem}

.hero-image{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(31,41,51,.14);
  box-shadow:var(--shadow);
  background:rgba(249,250,251,.45);
  min-height:340px;
}
.hero-image img{width:100%; height:100%; object-fit:cover}

.grid-2{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:22px}
.grid-3{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .brand{min-width:unset}
}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(249,250,251,.76);
  box-shadow:0 10px 22px rgba(31,41,51,.06);
  padding:18px;
}
.card h3{margin-bottom:8px}
.muted{color:var(--muted)}

.photo-slab{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:rgba(91,124,153,.06);
  padding:22px 0;
}
.photo-slab .wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.photo{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(31,41,51,.12);
  background:rgba(249,250,251,.55);
  min-height:260px;
  box-shadow:0 14px 34px rgba(31,41,51,.06);
}
.photo img{width:100%; height:100%; object-fit:cover}
@media (max-width: 980px){
  .photo-slab .wrap{grid-template-columns:1fr}
  .photo{min-height:220px}
}

.table{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.table th{
  text-align:left;
  background:rgba(91,124,153,.08);
  font-weight:600;
}
.table tr:last-child td{border-bottom:none}

.proscons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:14px;
}
.proscons .card{min-height:100%}
.proscons h3{font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-weight:600}
@media (max-width: 980px){
  .proscons{grid-template-columns:1fr}
}

.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-size:.92rem; color:rgba(31,41,51,.88)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,41,51,.18);
  background:rgba(249,250,251,.9);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(91,124,153,.55);
  box-shadow:0 0 0 4px rgba(91,124,153,.12);
}
textarea{min-height:130px; resize:vertical}

.note{
  padding:14px;
  border-radius:16px;
  background:rgba(91,124,153,.08);
  border:1px solid rgba(91,124,153,.22);
  color:rgba(31,41,51,.92);
}

.footer{
  padding:40px 0;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.footer a{color:rgba(31,41,51,.92)}
.footer a:hover{color:rgba(91,124,153,1)}
@media (max-width: 980px){.footer-grid{grid-template-columns:1fr}}

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .7s ease, transform .7s ease;
  will-change:opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* Cookie banner */
.cookie-banner{
  position:fixed;
  left:18px; right:18px; bottom:18px;
  max-width:var(--max);
  margin:0 auto;
  background:rgba(249,250,251,.94);
  border:1px solid rgba(31,41,51,.16);
  border-radius:18px;
  box-shadow:0 20px 48px rgba(31,41,51,.12);
  padding:14px 14px;
  display:none;
  z-index:80;
}
.cookie-banner .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap}
.pills{
  display:flex; gap:8px; flex-wrap:wrap; margin-top:6px;
}
.pill{
  font-size:.82rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(31,41,51,.14);
  background:rgba(91,124,153,.06);
  color:rgba(31,41,51,.92);
}

/* Utility */
.hr{height:1px; background:var(--border); margin:14px 0}

/* Burger + mobile nav */
.menu--desktop{display:flex}
.burger{
  display:none;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid rgba(31,41,51,.14);
  background:rgba(91,124,153,.08);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.burger:hover{background:rgba(91,124,153,.12)}
.burger__line{
  display:block;
  width:18px;
  height:2px;
  background:rgba(31,41,51,.78);
  border-radius:2px;
  transition:transform .22s ease, opacity .22s ease;
}
.burger.is-open .burger__line:nth-child(1){transform:translateY(8px) rotate(45deg)}
.burger.is-open .burger__line:nth-child(2){opacity:0}
.burger.is-open .burger__line:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

@media (max-width: 980px){
  .menu--desktop{display:none}
  .burger{display:inline-flex}
}

.mobile-nav{
  position:fixed;
  inset:0;
  display:none;
  z-index:110;
}
.mobile-nav.is-open{display:block}
.mobile-nav__backdrop{
  position:absolute;
  inset:0;
  background:rgba(31,41,51,.35);
  backdrop-filter:blur(6px);
}
.mobile-nav__panel{
  position:absolute;
  top:16px;
  right:16px;
  width:min(420px, calc(100% - 32px));
  background:rgba(249,250,251,.96);
  border:1px solid rgba(31,41,51,.16);
  border-radius:22px;
  box-shadow:0 28px 70px rgba(31,41,51,.18);
  overflow:hidden;
  transform:translateY(10px);
  opacity:0;
  transition:transform .28s ease, opacity .28s ease;
}
.mobile-nav.is-open .mobile-nav__panel{
  transform:none;
  opacity:1;
}

.mobile-nav__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px 10px 14px;
  border-bottom:1px solid rgba(31,41,51,.10);
}
.mobile-nav__brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.mobile-nav__close{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(31,41,51,.14);
  background:rgba(91,124,153,.08);
  color:rgba(31,41,51,.85);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.mobile-nav__close:hover{background:rgba(91,124,153,.12)}

.mobile-nav__links{
  padding:10px 14px;
  display:grid;
  gap:6px;
}
.mobile-nav__links a{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,41,51,.10);
  background:rgba(249,250,251,.85);
}
.mobile-nav__links a:hover{background:rgba(91,124,153,.10)}
.mobile-nav__links a[aria-current="page"]{
  background:rgba(91,124,153,.14);
}

.mobile-nav__foot{
  padding:12px 14px 14px 14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  border-top:1px solid rgba(31,41,51,.10);
}
@media (max-width: 460px){
  .mobile-nav__foot{grid-template-columns:1fr}
}
