:root{
  --bg:#f4fbff;
  --surface:#ffffff;
  --surface-soft:#e9f8fb;
  --ink:#12333d;
  --muted:#5d7076;
  --primary:#10a8c4;
  --primary-dark:#087f97;
  --accent:#54d1c1;
  --line:rgba(18,51,61,.12);
  --shadow:0 24px 70px rgba(12,72,90,.14);
  --radius:28px;
  --radius-sm:18px;
  --max:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(84,209,193,.25), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(16,168,196,.20), transparent 26rem),
    var(--bg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(var(--max), calc(100% - 40px));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(244,251,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:800}
.brand-mark{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 14px 30px rgba(16,168,196,.24);
  letter-spacing:.04em;
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-size:1.08rem}
.brand-text small{color:var(--muted);font-weight:700;margin-top:3px}
.menu{display:flex;align-items:center;gap:8px}
.menu a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:.94rem;
}
.menu a:hover{background:#fff;color:var(--primary-dark)}
.menu .menu-cta{background:var(--ink);color:#fff;box-shadow:0 12px 30px rgba(18,51,61,.16)}
.menu-toggle{display:none;border:0;background:#fff;border-radius:14px;width:46px;height:42px;box-shadow:0 10px 30px rgba(18,51,61,.10)}
.menu-toggle span{display:block;width:20px;height:2px;background:var(--ink);margin:5px auto;border-radius:5px}

.hero{position:relative;overflow:hidden;padding:82px 0 64px}
.hero-bg{
  position:absolute;
  inset:22px 22px auto auto;
  width:360px;height:360px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(16,168,196,.18), rgba(84,209,193,.20));
  filter:blur(4px);
  pointer-events:none;
}
.hero-layout{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center}
.kicker,.section-tag{
  margin:0 0 12px;
  display:inline-flex;
  align-items:center;
  width:max-content;
  color:var(--primary-dark);
  background:rgba(16,168,196,.12);
  border:1px solid rgba(16,168,196,.18);
  padding:7px 13px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.78rem;
}
h1,h2,h3,p{margin-top:0}
h1{font-size:clamp(3rem, 8vw, 6.4rem);line-height:.9;margin-bottom:22px;letter-spacing:-.07em}
h2{font-size:clamp(2rem, 4vw, 3.35rem);line-height:1.02;letter-spacing:-.045em;margin-bottom:14px}
h3{font-size:1.18rem;line-height:1.2;margin-bottom:12px}
.lead{font-size:clamp(1.08rem,2vw,1.32rem);color:var(--muted);max-width:720px;margin-bottom:28px}
.hero-actions,.contact-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:22px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 18px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{background:linear-gradient(135deg, var(--primary), var(--primary-dark));color:#fff;box-shadow:0 18px 40px rgba(16,168,196,.28)}
.btn-secondary{background:#fff;color:var(--primary-dark);border-color:var(--line);box-shadow:0 10px 32px rgba(12,72,90,.08)}
.quick-info{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:12px;
  max-width:780px;
}
.quick-info article{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:16px;
  box-shadow:0 12px 35px rgba(12,72,90,.08);
}
.quick-info span,.contact-list span{display:block;color:var(--muted);font-size:.8rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;margin-bottom:4px}
.quick-info strong,.contact-list strong{font-size:1rem}
.hero-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:14px;
  overflow:hidden;
}
.hero-card img{width:100%;border-radius:25px;background:#f8fcff}
.hero-card-label{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-weight:800;
  background:var(--surface-soft);
  border-radius:20px;
  padding:14px 16px;
}
.hero-card-label strong{color:var(--ink)}

.section{padding:78px 0}
.section-heading{max-width:760px;margin-bottom:30px}
.section-heading p:not(.section-tag){color:var(--muted);font-size:1.08rem}
.compact-heading{text-align:center;margin-inline:auto}
.purpose-section{padding-top:18px}
.purpose-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.purpose-card{
  position:relative;
  overflow:hidden;
  min-height:245px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 18px 54px rgba(12,72,90,.09);
  padding:28px;
}
.purpose-card::after{
  content:"";
  position:absolute;
  width:140px;height:140px;border-radius:50%;
  right:-55px;bottom:-55px;
  background:rgba(16,168,196,.10);
}
.purpose-featured{background:linear-gradient(135deg, #fff, #e7fbfb);border-color:rgba(16,168,196,.25)}
.purpose-number{
  display:inline-grid;
  place-items:center;
  width:48px;height:48px;
  border-radius:16px;
  margin-bottom:18px;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg, var(--primary), var(--accent));
}
.purpose-card h3{font-size:1.5rem;margin-bottom:10px}
.purpose-card p{color:var(--muted);margin-bottom:0}

.services-section{background:linear-gradient(180deg, rgba(255,255,255,.45), rgba(233,248,251,.75))}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  min-height:150px;
  box-shadow:0 16px 46px rgba(12,72,90,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.service-icon{
  width:44px;height:44px;border-radius:15px;
  display:grid;place-items:center;
  color:var(--primary-dark);
  background:rgba(16,168,196,.12);
  font-weight:900;
  margin-bottom:18px;
}
.service-card h3{margin-bottom:0}

.gallery-section{background:#fff}
.gallery-grid{
  column-count:4;
  column-gap:18px;
}
.gallery-card{
  break-inside:avoid;
  margin:0 0 18px;
  background:#f8fcff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:10px;
  box-shadow:0 18px 46px rgba(12,72,90,.10);
}
.gallery-card img{width:100%;height:auto;border-radius:17px;background:#fff}

.location-section{background:linear-gradient(135deg, var(--ink), #0e5666);color:#fff}
.location-layout{display:grid;grid-template-columns:1fr .8fr;gap:28px;align-items:stretch}
.location-section .section-tag{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.18)}
.location-section h2{color:#fff}
.contact-list{display:grid;gap:12px;margin:26px 0}
.contact-list p{
  margin:0;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:18px;
}
.contact-list span{color:rgba(255,255,255,.72)}
.contact-list strong{color:#fff}
.location-card{
  min-height:300px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-radius:var(--radius);
  padding:28px;
  border:1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(84,209,193,.10), rgba(16,168,196,.24)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 11rem);
  box-shadow:0 26px 70px rgba(0,0,0,.18);
}
.location-card span{text-transform:uppercase;letter-spacing:.08em;font-weight:900;color:rgba(255,255,255,.74);margin-bottom:8px}
.location-card strong{font-size:1.35rem;line-height:1.35}
.footer{background:#071f27;color:#fff;padding:24px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer p{margin:0;color:rgba(255,255,255,.80)}
.footer a{font-weight:900;color:#fff}

@media (max-width: 980px){
  .hero-layout,.location-layout{grid-template-columns:1fr}
  .purpose-grid,.services-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{column-count:3}
  h1{font-size:clamp(3rem, 12vw, 5.4rem)}
}
@media (max-width: 760px){
  .container,.nav-wrap{width:min(100% - 28px, var(--max))}
  .menu-toggle{display:block}
  .menu{
    position:absolute;
    top:78px;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:12px;
    box-shadow:var(--shadow);
  }
  .menu.is-open{display:flex}
  .menu a{text-align:center}
  .hero{padding:52px 0 42px}
  .section{padding:58px 0}
  .quick-info,.purpose-grid,.services-grid{grid-template-columns:1fr}
  .purpose-card{min-height:auto}
  .gallery-grid{column-count:2;column-gap:12px}
  .gallery-card{margin-bottom:12px;border-radius:18px;padding:7px}
  .gallery-card img{border-radius:13px}
  .footer-inner{justify-content:center;text-align:center}
}
@media (max-width: 480px){
  .gallery-grid{column-count:1}
  .hero-actions,.contact-actions{flex-direction:column}
  .btn{width:100%}
  .hero-card,.purpose-card{border-radius:22px}
}
