@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root{
  --primary:#008c9e;
  --primary-dark:#006d7b;
  --primary-darker:#004d56;
  --accent:#f5b400;
  --accent-dark:#d99a00;
  --ink:#16202b;
  --gray-50:#f6f8fb;
  --gray-100:#eef2f7;
  --gray-300:#c9d3dd;
  --gray-600:#5b6c7c;
  --white:#ffffff;
  --radius:16px;
  --shadow:0 10px 30px rgba(18,74,125,.14);
  --shadow-sm:0 4px 14px rgba(18,74,125,.12);
  --container:1180px;
  --font-body:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display:"Poppins", var(--font-body);
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{ margin:0; font-family:var(--font-body); color:var(--ink); background:var(--white); line-height:1.6; overflow-x:hidden; }
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-display); line-height:1.15; margin:0 0 14px; color:var(--primary-darker); }
p{ margin:0 0 14px; }
svg{ width:1em; height:1em; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 20px; }
.section{ padding:56px 0; }
.section-alt{ background:var(--gray-50); }
.eyebrow{ display:inline-block; font-family:var(--font-display); font-style:italic; font-weight:600; font-size:16px; color:var(--accent-dark); margin-bottom:4px; }
.section-head{ text-align:center; max-width:720px; margin:0 auto 36px; }
.section-head h2{ font-size:clamp(24px,4vw,34px); }
.section-head p{ color:var(--gray-600); font-size:17px; }
.btn{ display:inline-flex; align-items:center; gap:8px; justify-content:center; padding:14px 28px; border-radius:50px; font-weight:700; font-size:16px; border:2px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease; white-space:nowrap; }
.btn svg{ width:18px; height:18px; flex:none; fill:currentColor; }
.btn:active{ transform:scale(.97); }
.btn-accent{ background:var(--accent); color:var(--ink); box-shadow:0 8px 20px rgba(245,180,0,.35); }
.btn-accent:hover{ background:var(--accent-dark); }
.btn-outline{ background:rgba(255,255,255,.08); color:var(--white); border-color:rgba(255,255,255,.75); }
.btn-outline:hover{ background:rgba(255,255,255,.18); }
.btn-primary{ background:var(--primary); color:#fff; box-shadow:0 8px 20px rgba(0,0,0,.2); }
.btn-primary:hover{ background:var(--primary-dark); }
.btn-block{ width:100%; }

.site-header{ position:sticky; top:0; z-index:500; background:var(--white); box-shadow:0 2px 12px rgba(18,74,125,.10); }
.header-bar{ display:flex; align-items:center; justify-content:space-between; padding:12px 20px; max-width:var(--container); margin:0 auto; gap:16px; }
.brand{ display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:700; color:var(--primary-darker); font-size:18px; white-space:nowrap; flex:none; }
.brand .dot{ width:12px; height:12px; border-radius:50%; background:var(--accent); flex:none; }
.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav a{ padding:10px 16px; border-radius:50px; font-weight:600; font-size:15px; color:var(--primary-darker); transition:background .15s ease, color .15s ease; }
.main-nav a:hover{ background:var(--primary); color:#fff; }
.header-cta{ display:flex; align-items:center; gap:12px; }
.phone-pill{ display:flex; align-items:center; gap:8px; background:var(--gray-100); padding:9px 16px 9px 12px; border-radius:50px; font-weight:800; color:var(--primary-darker); font-size:15px; }
.phone-pill svg{ width:18px; height:18px; fill:var(--accent-dark); flex:none; }
.nav-toggle{ display:none; width:46px; height:46px; border-radius:12px; border:none; background:var(--primary); flex-direction:column; align-items:center; justify-content:center; cursor:pointer; flex:none; padding:0; }
.nav-toggle span{ width:20px; height:2px; background:#fff; border-radius:2px; margin:2.5px 0; display:block; }

@media (max-width:900px){
  .main-nav{ position:fixed; top:0; right:0; bottom:0; left:auto; width:82%; max-width:340px; background:var(--white); flex-direction:column; align-items:stretch; gap:2px; padding:90px 20px 30px; box-shadow:-8px 0 30px rgba(0,0,0,.2); transform:translateX(100%); transition:transform .25s ease; overflow-y:auto; z-index:495; }
  body.nav-open .main-nav{ transform:translateX(0); }
  .main-nav a{ padding:14px 16px; border-bottom:1px solid var(--gray-100); border-radius:8px; }
  .nav-toggle{ display:flex; }
  .nav-backdrop{ display:none; position:fixed; top:0; right:0; bottom:0; left:0; background:rgba(10,20,30,.5); z-index:490; }
  body.nav-open .nav-backdrop{ display:block; }
  .header-cta .btn-label{ display:none; }
  .phone-pill{ font-size:0; padding:11px; }
  .phone-pill svg{ width:20px; height:20px; }
}

.hero{ position:relative; color:#fff; min-height:64vh; display:flex; align-items:center; background-size:cover; background-position:center; overflow:hidden; }
.hero::before{ content:""; position:absolute; top:0; right:0; bottom:0; left:0; background:linear-gradient(180deg, rgba(10,15,20,.55) 0%, rgba(10,15,20,.72) 60%, rgba(10,15,20,.9) 100%); }
.hero-inner{ position:relative; z-index:2; padding:70px 20px; max-width:var(--container); margin:0 auto; text-align:center; width:100%; }
.hero h1{ color:#fff; font-size:clamp(26px,5vw,46px); text-shadow:0 3px 12px rgba(0,0,0,.4); margin-bottom:16px; }
.hero p.lead{ font-size:clamp(16px,2.4vw,20px); max-width:720px; margin:0 auto 30px; color:#eef2f7; }
.hero-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.feature-row{ display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; margin-bottom:64px; }
.feature-row:last-child{ margin-bottom:0; }
.feature-row.reverse .feature-media{ order:2; }
.feature-media img{ border-radius:var(--radius); box-shadow:var(--shadow); width:100%; object-fit:cover; aspect-ratio:4/3; }
.feature-text h2{ font-size:clamp(22px,3.4vw,30px); }
.feature-text p{ color:var(--gray-600); font-size:16.5px; }
@media (max-width:820px){ .feature-row, .feature-row.reverse{ grid-template-columns:1fr; } .feature-row.reverse .feature-media{ order:0; } }

.grid{ display:grid; gap:24px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .grid-3, .grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .grid-3, .grid-4{ grid-template-columns:1fr; } }

.card{ background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .18s ease, box-shadow .18s ease; }
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.card img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.card-body{ padding:16px 18px 20px; }
.card-body h3{ font-size:17px; margin-bottom:6px; }
.card-body p{ font-size:14px; color:var(--gray-600); margin:0; }

.gallery-card{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.gallery-card img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .3s ease; }
.gallery-card:hover img{ transform:scale(1.06); }

.cta-band{ background:linear-gradient(120deg, var(--primary-darker), var(--primary)); color:#fff; padding:44px 0; text-align:center; }
.cta-band h2{ color:#fff; font-size:clamp(22px,3.6vw,30px); margin-bottom:10px; }
.cta-band p{ color:#dbeafd; margin-bottom:22px; }

.chip-grid{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.chip{ background:var(--gray-100); color:var(--primary-darker); padding:10px 18px; border-radius:50px; font-weight:600; font-size:14.5px; transition:background .15s ease, color .15s ease; }
.chip:hover{ background:var(--primary); color:#fff; }

.site-footer{ background:var(--ink); color:#c7d1db; padding:56px 0 20px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:34px; margin-bottom:36px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{ color:#fff; font-size:15px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.site-footer a{ color:#c7d1db; }
.site-footer a:hover{ color:var(--accent); }
.footer-links{ display:flex; flex-direction:column; gap:9px; font-size:14.5px; }
.footer-brand p{ color:#9aa8b5; font-size:14px; }
.footer-phone{ display:inline-flex; align-items:center; gap:8px; color:#fff; font-weight:800; font-size:18px; margin-top:6px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding-top:18px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; color:#8b98a5; }
.seo-blurb{ font-size:11.5px; line-height:1.7; color:#5c6a77; margin-top:26px; padding-top:20px; border-top:1px solid rgba(255,255,255,.06); }

.notfound{ text-align:center; padding:110px 20px; }
.notfound h1{ font-size:clamp(48px,10vw,110px); color:var(--accent-dark); margin-bottom:6px; }

.simple-page{ max-width:820px; margin:0 auto; padding:70px 20px; }
