:root{
  /* Pastel palette */
  --bg: #f7f8fc;
  --surface: rgba(255,255,255,.78);
  --surface-strong: #ffffff;
  --stroke: rgba(15,23,42,.10);
  --stroke-strong: rgba(15,23,42,.14);
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;

  --brand: #78a6c9;          /* steel pastel */
  --brand-2: #c7a7f0;        /* lavender pastel */
  --brand-3: #9fe3d2;        /* mint pastel */
  --accent: #1f2a44;         /* deep slate */

  --radius: 22px;
  --shadow: 0 18px 50px rgba(2,6,23,.12);
  --shadow-soft: 0 10px 30px rgba(2,6,23,.10);

  --container: 1120px;
}

*{ 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, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 15% 5%, rgba(159,227,210,.35), transparent 55%),
    radial-gradient(900px 650px at 85% 10%, rgba(199,167,240,.30), transparent 55%),
    radial-gradient(900px 650px at 55% 95%, rgba(120,166,201,.22), transparent 60%),
    linear-gradient(180deg, #f7f8fc, #f3f6fb 55%, #f7f8fc);
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; text-underline-offset: .2em; }

img{ max-width:100%; height:auto; display:block; }
.container{ width:min(var(--container), calc(100% - 40px)); margin-inline:auto; }

.skip-link{
  position:absolute; left:-999px; top:0;
  background:#fff; padding:10px 14px; border-radius:12px;
  border:1px solid var(--stroke-strong); box-shadow: var(--shadow-soft);
}
.skip-link:focus{ left:14px; top:14px; z-index:9999; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 40px rgba(2,6,23,.09);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand{
  display:flex; align-items:center; gap: 14px;
}
.brand img{
  height: 60px;
  width: auto;
  max-width: 280px;
}

.nav{
  display:flex; align-items:center; gap: 18px;
  color: rgba(15,23,42,.80);
  font-weight: 600;
}
.nav a{
  padding: 10px 12px;
  border-radius: 999px;
}
.nav a:hover{
  text-decoration:none;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(15,23,42,.08);
  padding: 9px 11px;
}
.nav .cta{
  background: linear-gradient(135deg, rgba(120,166,201,.35), rgba(199,167,240,.26));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}
.nav .cta:hover{
  background: linear-gradient(135deg, rgba(120,166,201,.42), rgba(199,167,240,.30));
}

.burger{
  display:none;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.65);
  border-radius: 14px;
  padding: 10px 12px;
}
.burger svg{ width:22px; height:22px; }

/* Mobile menu: hidden by default (desktop) */
.mobile-nav{ display:none; }

@media (max-width: 860px){
  .nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }

  .mobile-nav{
    display:none;
    padding: 0 0 16px;
  }
  .mobile-nav.open{ display:block; }
  .mobile-nav a{
    display:block;
    padding: 12px 14px;
    margin: 8px 0;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    font-weight: 650;
  }
}

.hero{
  position: relative;
  padding: 60px 0 38px;
  background: linear-gradient(160deg, rgba(120,166,201,.18), rgba(255,255,255,0) 60%),
              linear-gradient(135deg, rgba(199,167,240,.18), rgba(255,255,255,0) 65%);
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(159,227,210,.35), transparent 55%);
  filter: blur(80px);
  pointer-events: none;
}
.hero::after{
  content: "";
  position: absolute;
  top: -120px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(199,167,240,.35), transparent 55%);
  filter: blur(90px);
  pointer-events: none;
}
.hero .grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items:center;
}
@media (max-width: 980px){
  .hero .grid{ grid-template-columns: 1fr; }
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
  color: rgba(15,23,42,.78);
  font-weight: 650;
  font-size: 13px;
}
.badge .dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-3), var(--brand));
  box-shadow: 0 0 0 6px rgba(159,227,210,.22);
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 66ch;
}
.actions{
  display:flex; flex-wrap:wrap; gap: 12px;
}
.btn{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  font-weight: 750;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn.primary{
  background: linear-gradient(135deg, rgba(120,166,201,.40), rgba(199,167,240,.28));
  border-color: rgba(15,23,42,.10);
}
.btn.ghost{
  background: rgba(255,255,255,.35);
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow:hidden;
}
.hero-card figure{
  margin:0;
  aspect-ratio: 16/10;
  overflow:hidden;
}
.hero-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-card .meta{
  padding: 14px 16px 16px;
}
.hero-card .meta strong{
  display:block;
  font-size: 14px;
}
.hero-card .meta span{
  color: var(--muted-2);
  font-size: 13px;
}

.section{
  padding: 44px 0;
}
.section.slim{ padding: 28px 0; }
.section h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.2px;
}
.section p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.surface{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mapcard{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 50px rgba(2,6,23,.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.mapcard:hover{
  box-shadow: 0 24px 60px rgba(2,6,23,.18);
  transform: translateY(-2px);
}
.map-header{
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, rgba(120,166,201,.18), rgba(199,167,240,.14));
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.map-header h3{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 750;
  color: var(--accent);
}
.map-header p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.map-container{
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f0f1f5;
}
.mapcard iframe{
  display: block;
  width: 100%;
  height: 420px;
}
.map-footer{
  padding: 14px 20px;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(247,248,252,.50);
}
.map-footer .small{
  margin:0;
  display: flex;
  align-items: center;
}
.mapcard a{
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
.mapcard a:hover{
  color: var(--accent);
  text-decoration: underline;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr; } }

.card{
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  height: 100%;
}
.card h3{
  margin: 0 0 8px;
  font-size: 18px;
}
.card p{
  margin:0;
  color: var(--muted);
  line-height: 1.65;
}
.card .link{
  display:inline-flex;
  margin-top: 12px;
  font-weight: 750;
}
.card .link:hover{ text-decoration: underline; }

.icon{
  width: 18px; height:18px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery figure{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.55);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
  position:relative;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.g1{ grid-column: span 7; aspect-ratio: 16/9; }
.g2{ grid-column: span 5; aspect-ratio: 4/3; }
.g3{ grid-column: span 4; aspect-ratio: 4/3; }
.g4{ grid-column: span 4; aspect-ratio: 4/3; }
.g5{ grid-column: span 4; aspect-ratio: 4/3; }
@media (max-width: 980px){
  .g1,.g2,.g3,.g4,.g5{ grid-column: span 12; }
}

.kpis{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px){ .kpis{ grid-template-columns: repeat(2, 1fr); } }
.kpi{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
}
.kpi strong{ font-size: 22px; }
.kpi span{ display:block; color: var(--muted-2); margin-top: 6px; }

.two-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){ .two-cols{ grid-template-columns: 1fr; } }

.form{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.form label{
  display:block;
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,23,42,.84);
  margin-bottom: 10px;
}
.form input, .form textarea, .form select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  padding: 12px 12px;
  font: inherit;
  margin-top: 6px;
}
.form textarea{ min-height: 140px; resize: vertical; }
.form .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 680px){ .form .row{ grid-template-columns: 1fr; } }

.notice{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(159,227,210,.22);
  color: rgba(15,23,42,.86);
  font-weight: 650;
}

.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(247,248,252,.78);
}
.footer .grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}
@media (max-width: 980px){ .footer .grid{ grid-template-columns: 1fr; } }
.footer p, .footer a{ color: rgba(15,23,42,.72); }
.footer nav{
  display:flex; flex-wrap:wrap; gap: 12px;
}
.small{ font-size: 13px; color: rgba(15,23,42,.62); }

hr.sep{
  border:0;
  border-top: 1px solid rgba(15,23,42,.08);
  margin: 18px 0;
}

/* Cookie modal */
.cookie-overlay{
  position: fixed;
  inset: 0;
  display:none;
  align-items: center;
  justify-content: center;
  background: rgba(2,6,23,.55);
  z-index: 1000;
  padding: 18px;
}
.cookie-overlay.show{ display:flex; }
.cookie-modal{
  width: min(920px, 100%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(2,6,23,.30);
  overflow:hidden;
}
.cookie-modal header{
  padding: 18px 18px 0;
}
.cookie-modal h2{ margin:0 0 8px; }
.cookie-modal p{ margin:0 0 12px; color: var(--muted); line-height:1.6; }
.cookie-modal .body{
  padding: 0 18px 18px;
}
.cookie-cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
@media (max-width: 860px){ .cookie-cols{ grid-template-columns: 1fr; } }
.cookie-box{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(247,248,252,.75);
  padding: 14px;
}
.cookie-box h3{ margin:0 0 8px; font-size: 15px; }
.toggle{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  margin-top: 10px;
}
.toggle input{ width: 18px; height:18px; }
.cookie-actions{
  display:flex; flex-wrap:wrap; gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(247,248,252,.60);
}
.cookie-actions .btn{ box-shadow:none; }
