
/* Basic reset & variables */
:root { --brand:#0e7490; --accent:#22c55e; --muted:#6b7280; --ring:rgba(14,116,144,.25); }
*{box-sizing:border-box}html,body{margin:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Helvetica,Arial,sans-serif;line-height:1.5;color:#0f172a;background:#f8fafc}

/* Header/Nav */
.site-header{background:#fff;border-bottom:1px solid #e5e7eb;position:sticky;top:0;z-index:20}
.site-header .wrap{max-width:1120px;margin:0 auto;padding:12px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{font-weight:700;color:#0f172a;text-decoration:none;display:flex;align-items:center;gap:8px}
.logo{background:var(--brand);color:white;display:inline-grid;place-items:center;width:34px;height:34px;border-radius:9px;font-weight:900}
.site-nav{display:flex;gap:14px;align-items:center}
.site-nav a{color:#0f172a;text-decoration:none;padding:8px 10px;border-radius:10px}
.site-nav a:hover{background:#f1f5f9}
.site-nav .cta{background:var(--brand);color:white}
.nav-toggle{display:none}

/* Mobile nav */
@media(max-width:820px){
  .nav-toggle{display:inline-flex;align-items:center;gap:8px;border:1px solid #e5e7eb;border-radius:10px;background:#fff;padding:8px 12px}
  .site-nav{position:fixed;inset:60px 12px auto 12px;background:#fff;border:1px solid #e5e7eb;border-radius:14px;box-shadow:0 10px 40px rgba(2,6,23,.1);padding:10px;display:none;flex-direction:column;align-items:stretch}
  .site-nav.open{display:flex}
  .site-nav a{padding:12px 14px}
}

/* Hero (no background image, only gradient) */
.hero{background:linear-gradient(180deg,#e0f2fe,transparent); padding:64px 0}
.wrap{max-width:1120px;margin:0 auto;padding:0 16px}
.hero h1{font-size:clamp(28px,5vw,48px);margin:0 0 6px}
.tag{font-weight:700;color:var(--brand);margin:0 0 10px}
.lede{font-size:clamp(16px,2.5vw,20px);max-width:70ch}
.actions{display:flex;gap:12px;margin-top:16px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:8px;border-radius:12px;border:1px solid #e5e7eb;padding:10px 14px;text-decoration:none;color:#0f172a}
.btn.primary{background:var(--brand);color:white;border-color:var(--brand)}
.quick-list{display:flex;gap:16px;list-style:none;padding:0;margin:18px 0 0;color:#0f172a}
.quick-list li::before{content:"✓";color:var(--accent);margin-right:8px}

/* Cards grid */
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:32px auto}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:16px;box-shadow:0 10px 20px rgba(2,6,23,.04)}
@media(max-width:900px){ .grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:520px){ .grid{grid-template-columns:1fr} }

/* Callout */
.callout{background:#ecfeff;padding:28px 0;border-top:1px solid #bae6fd;border-bottom:1px solid #bae6fd}

/* Two-column section */
.two-col{display:grid;grid-template-columns:2fr 1fr;gap:20px;margin:28px auto}
@media(max-width:900px){ .two-col{grid-template-columns:1fr} }
.checklist{list-style:none;padding:0}
.checklist li{margin:10px 0}
.checklist li::marker{content:""}
.contact-card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:18px}

/* Services */
.service-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin:18px 0}
.service-grid section{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:16px}
@media(max-width:720px){ .service-grid{grid-template-columns:1fr} }

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery img{width:100%;height:220px;object-fit:cover;border-radius:12px;border:1px solid #e5e7eb}
@media(max-width:720px){ .gallery{grid-template-columns:1fr 1fr} }
@media(max-width:480px){ .gallery{grid-template-columns:1fr} }

/* Forms */
.contact-form{display:grid;gap:12px;margin:18px 0 36px}
.field{display:grid;gap:6px}
.field input,.field textarea,.field select{padding:10px 12px;border-radius:10px;border:1px solid #cbd5e1;outline:none}
.field input:focus,.field textarea:focus,.field select:focus{box-shadow:0 0 0 4px var(--ring);border-color:var(--brand)}
.field.honeypot{display:none}
.form-note{color:var(--muted);font-size:14px}

/* Footer */
.site-footer{background:#0b1f24;color:#e5e7eb;margin-top:48px}
.site-footer .wrap{max-width:1120px;margin:0 auto;padding:18px 16px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.site-footer a{color:#e5e7eb}
.site-footer .legal{display:flex;justify-content:space-between;gap:8px;align-items:center;padding-bottom:18px}
.hours span{display:block;font-weight:700;margin-bottom:8px}

/* A11y */
.skip{position:absolute;left:-1000px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:12px;top:12px;width:auto;height:auto;background:#fff;padding:10px;border-radius:10px;border:1px solid #e5e7eb}
