
:root{
  --primary:#00365D;
  --primary-dark:#022742;
  --accent:#0E5A8A;
  --bg:#ffffff;
  --bg-soft:#f4f7fb;
  --text:#12202d;
  --muted:#5d6b79;
  --border:rgba(0,54,93,.10);
  --shadow:0 18px 55px rgba(3,26,47,.10);
  --radius:28px;
  --radius-sm:18px;
  --container:min(1180px, calc(100% - 32px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}

.container{width:var(--container);margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:saturate(180%) blur(16px);
  background:rgba(255,255,255,.90);
  border-bottom:1px solid rgba(0,54,93,.07);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:82px;
  gap:16px;
}
.brand-logo{height:46px;width:auto;object-fit:contain}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.main-nav a{
  color:var(--primary);
  font-weight:600;
  font-size:.95rem;
}
.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:var(--primary);
  color:#fff !important;
  box-shadow:0 12px 30px rgba(0,54,93,.16);
}

.menu-toggle{
  display:none;
  width:48px;height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  padding:0 12px;
}
.menu-toggle span{
  display:block;
  height:2px;
  background:var(--primary);
  margin:6px 0;
  border-radius:2px;
}

.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  align-items:end;
  overflow:hidden;
}
.hero-media,
.hero-media img,
.hero-overlay{
  position:absolute; inset:0;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center top;
  transform:scale(1.02);
}
.hero-overlay{
  background:
    linear-gradient(180deg, rgba(1,18,30,.10) 0%, rgba(1,18,30,.46) 58%, rgba(1,18,30,.82) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:144px 0 64px;
  color:#fff;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.hero h1{
  margin:18px 0 14px;
  max-width:900px;
  font-size:clamp(2.2rem, 5vw, 4.7rem);
  line-height:1.03;
  letter-spacing:-.04em;
}
.hero-text{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:clamp(1rem, 2vw, 1.18rem);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.hero-badges{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:40px;
  max-width:900px;
}
.badge{
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.badge strong{
  display:block;
  font-size:1.08rem;
  margin-bottom:4px;
}
.badge span{
  color:rgba(255,255,255,.82);
  font-size:.95rem;
}

.section{padding:92px 0}
.section-tag{
  display:inline-block;
  color:var(--accent);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  margin-bottom:14px;
}
.section-heading{max-width:760px;margin-bottom:32px}
.section-heading.center{text-align:center;margin-inline:auto;margin-bottom:36px}
.section h2{
  margin:0;
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.08;
  letter-spacing:-.03em;
}
.section p{color:var(--muted)}

.grid-summary{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}
.summary-copy p{
  font-size:1.02rem;
  max-width:760px;
}
.summary-points{
  display:grid;
  gap:14px;
  margin-top:24px;
}
.summary-points div{
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px 20px;
}
.summary-points strong{display:block;color:var(--primary);margin-bottom:4px}
.summary-points span{color:var(--muted)}
.summary-card{
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  min-height:100%;
  background:#fff;
}
.summary-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.metrics{background:linear-gradient(180deg, #fff 0%, #f7faff 100%)}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.metric-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:26px 22px;
  box-shadow:var(--shadow);
}
.metric-number{
  display:inline-block;
  color:var(--primary);
  font-size:1.7rem;
  font-weight:800;
  letter-spacing:-.04em;
  margin-bottom:10px;
}
.metric-card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}
.metric-card p{margin:0}

.feature-panels{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}
.panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px 24px;
}
.panel h3{
  margin:0 0 14px;
  color:var(--primary);
  font-size:1.08rem;
}
.panel ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.panel li{
  position:relative;
  padding-left:20px;
  color:var(--muted);
}
.panel li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
}

.gallery-section{background:#fff}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.gallery-item{
  position:relative;
  margin:0;
  border-radius:26px;
  overflow:hidden;
  min-height:290px;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.gallery-lg{grid-column:span 2; min-height:380px}
.gallery-item img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.62) 100%);
}
.gallery-item figcaption{
  position:absolute;
  left:18px; right:18px; bottom:16px;
  color:#fff;
  z-index:2;
  font-weight:700;
  line-height:1.35;
}
.gallery-item:hover img{transform:scale(1.04)}

.investment-section{
  background:linear-gradient(180deg, #f7faff 0%, #eef5fb 100%);
}
.investment-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.investment-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:28px;
}
.investment-list div,
.investment-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:var(--shadow);
}
.investment-list div{
  padding:22px 20px;
}
.investment-list span{
  display:block;
  color:var(--muted);
  font-size:.95rem;
  margin-bottom:8px;
}
.investment-list strong{
  display:block;
  color:var(--primary);
  font-size:1.55rem;
  line-height:1.1;
  letter-spacing:-.03em;
}
.investment-list small{
  display:block;
  margin-top:8px;
  color:var(--accent);
  font-weight:700;
}
.investment-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:30px;
}
.investment-card img{
  max-width:300px;
  height:auto;
  object-fit:contain;
  margin-bottom:14px;
}
.investment-card p{
  margin:0 0 20px;
  font-size:1.02rem;
}

.location-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:24px;
  align-items:stretch;
}
.location-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}
.location-card{display:flex}
.map-card{
  width:100%;
  border-radius:28px;
  background:linear-gradient(180deg, #0b3f69 0%, #052742 100%);
  color:#fff;
  padding:32px;
  box-shadow:var(--shadow);
}
.map-card h3{
  margin:0 0 14px;
  font-size:1.3rem;
}
.map-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.map-card li{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,.88);
}
.map-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:7px; height:7px;
  border-radius:50%;
  background:#8fd0ff;
}

.contact-box{
  border-radius:32px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  padding:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:flex-end;
}

.site-footer{
  background:#031c2e;
  color:#fff;
  padding:36px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:20px;
  align-items:center;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-oval{height:58px;width:auto}
.footer-logo{height:50px;width:auto}
.footer-text p{
  margin:0;
  color:rgba(255,255,255,.82);
  text-align:center;
}
.footer-actions{justify-self:end}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 16px 36px rgba(0,54,93,.22);
}
.btn-primary:hover{background:var(--primary-dark)}
.btn-secondary{
  background:#fff;
  color:var(--primary);
  border:1px solid rgba(0,54,93,.14);
}
.full{width:100%}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(2,16,27,.86);
  padding:24px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:1200;
}
.lightbox.is-open{display:flex}
.lightbox img{
  max-width:min(1100px, 100%);
  max-height:76vh;
  border-radius:20px;
}
.lightbox-caption{
  color:#fff;
  margin-top:14px;
  text-align:center;
}
.lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;height:48px;
  border:none;
  border-radius:999px;
  font-size:2rem;
  line-height:1;
  color:#fff;
  background:rgba(255,255,255,.14);
  cursor:pointer;
}

@media (max-width: 1080px){
  .metrics-grid,
  .feature-panels,
  .gallery-grid,
  .investment-list{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid-summary,
  .investment-grid,
  .location-grid{grid-template-columns:1fr}
  .gallery-lg{grid-column:span 2}
}

@media (max-width: 820px){
  .menu-toggle{display:block}
  .main-nav{
    position:absolute;
    top:calc(100% + 10px);
    right:16px;
    left:16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:18px;
    box-shadow:var(--shadow);
  }
  .main-nav.open{display:flex}
  .brand-logo{height:42px}
  .hero-content{padding:132px 0 46px}
  .hero-badges,
  .metrics-grid,
  .feature-panels,
  .gallery-grid,
  .investment-list,
  .footer-grid{grid-template-columns:1fr}
  .gallery-lg{grid-column:span 1; min-height:300px}
  .contact-box,
  .footer-grid{display:grid}
  .footer-text p{text-align:left}
  .footer-actions{justify-self:start}
}

@media (max-width: 560px){
  .section{padding:72px 0}
  .header-inner{min-height:76px}
  .brand-logo{height:36px}
  .hero h1{font-size:clamp(2rem, 12vw, 3rem)}
  .hero-actions,
  .location-actions,
  .contact-actions{flex-direction:column}
  .btn{width:100%}
  .badge{padding:16px}
  .contact-box{padding:26px}
  .summary-card{order:-1}
}
