:root {
  --navy: #0b2545;
  --navy-2: #123a67;
  --navy-dark: #071830;
  --blue: #1c7bd0;
  --blue-light: #cfe8ff;
  --yellow: #ffcb05;
  --yellow-dark: #e0ac00;
  --bg: #ffffff;
  --bg-alt: #f2f7fb;
  --text: #182430;
  --text-muted: #56677a;
  --border: #dfe7f0;
  --radius: 12px;
  --shadow: 0 6px 22px rgba(11, 37, 69, 0.1);
  --max-width: 1160px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
a { color: var(--blue); }

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-lead { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 26px; font-size: 1.02rem; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: var(--bg-alt); color: var(--navy); border-color: var(--border); }
.btn-call { background: var(--navy); color: #fff; padding: 9px 16px; font-size: 0.92rem; }
.btn-call:hover { background: var(--navy-dark); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 37, 69, 0.97);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; color: #fff; font-size: 1.05rem; }
.brand-tag { font-size: 0.78rem; color: var(--blue-light); }

.main-nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #e6eefb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}
.main-nav a:hover { color: var(--yellow); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-call { background: var(--yellow); color: var(--navy); }
.header-actions .btn-call:hover { background: var(--yellow-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; }

/* Bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 12%, rgba(255,255,255,0.04) 30%, rgba(140,200,255,0.03) 55%, rgba(255,255,255,0.18) 78%, rgba(255,255,255,0.4) 100%);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: inset -3px -3px 5px rgba(255,255,255,0.25), inset 3px 3px 6px rgba(20,60,110,0.08);
  animation-name: rise;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes rise {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.5; }
  100% { transform: translate(var(--drift, 30px), -520px) scale(1.05); opacity: 0; }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 0%, var(--navy-2), var(--navy) 55%, var(--navy-dark));
  color: #fff;
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}
.hero h1 { color: #fff; }
.hero-lead { color: #d7e4f5; font-size: 1.08rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 26px; }
.hero .btn-outline { color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--navy); }

.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #c9dbf2;
}
.trust-strip li::before { content: "✓ "; color: var(--yellow); font-weight: 800; }

.hero-media { position: relative; }
.hero-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 6px solid rgba(255,255,255,0.12);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.1; }
.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(11, 37, 69, 0.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  backdrop-filter: blur(3px);
}

/* Offer banner */
.offer-banner {
  position: relative;
  background: linear-gradient(90deg, var(--navy-2), var(--navy));
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.offer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 20px;
  text-align: center;
}
.offer-tag {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.offer-text { color: #fff; margin: 0; font-size: 1.05rem; }
.offer-price { color: var(--yellow); font-size: 1.2em; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.service-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Approach */
.approach-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.approach-list { padding-left: 20px; color: var(--text-muted); }
.approach-list li { margin-bottom: 10px; }
.approach-list strong { color: var(--navy); }
.approach-media { display: flex; flex-direction: column; gap: 16px; }
.approach-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.approach-badge-icon { font-size: 1.6rem; }
.approach-badge strong { display: block; color: var(--navy); }
.approach-badge span { color: var(--text-muted); font-size: 0.88rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}
.gallery-card img { width: 100%; }
.gallery-card figcaption {
  padding: 12px 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin: 0;
}
.review-card:nth-child(2), .review-card:nth-child(4), .review-card:nth-child(6) {
  grid-row: span 1;
}
.stars { color: var(--yellow-dark); letter-spacing: 2px; margin-bottom: 8px; }
.review-card p { color: var(--text); font-size: 0.95rem; }
.review-card cite {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 10px;
}

/* Coverage map */
#coverage-map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 28px;
  background: var(--bg-alt);
}
.area-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
}
.area-chips li {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 7px 14px;
  border-radius: 999px;
}
.area-note { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; }

/* Quote section */
.section-quote {
  position: relative;
  background: radial-gradient(circle at 85% 10%, var(--navy-2), var(--navy) 60%, var(--navy-dark));
  color: #fff;
  overflow: hidden;
}
.quote-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.quote-intro h2 { color: #fff; }
.quote-intro p { color: #d7e4f5; }
.quote-email { margin-top: 14px; font-size: 0.92rem; }
.quote-email a { color: var(--yellow); }
.quote-intro .btn-call { margin-top: 6px; }

.quote-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 16px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.optional { font-weight: 400; color: var(--text-muted); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.quote-form textarea { resize: vertical; }

.quote-confirm {
  margin-top: 20px;
  padding: 18px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.quote-confirm .btn { margin: 4px 8px 4px 0; }
.quote-summary {
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy-dark);
  color: #cfe0f5;
  overflow: hidden;
  padding-top: 40px;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { color: #fff; display: block; margin-bottom: 4px; }
.footer-brand p { margin: 0; font-size: 0.88rem; color: #a9c1de; max-width: 340px; }
.footer-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.footer-contact a:hover { color: var(--yellow); }
.footer-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #7c93b0;
  padding: 16px 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0 20px;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, padding 0.2s ease;
  }
  .main-nav.open { max-height: 400px; padding: 16px 20px; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .approach-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .header-actions .btn-call span.label { display: none; }
  #coverage-map { height: 320px; }
}
