:root {
  --blue: #0b67b6;
  --blue-dark: #063b68;
  --navy: #082d4f;
  --yellow: #f7bf20;
  --ink: #111827;
  --muted: #5c6777;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dde4ec;
  --shadow: 0 18px 50px rgba(7, 32, 57, 0.13);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(10, 50, 85, .08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: 265px; height: 62px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .95rem; }
.nav-links a { transition: .2s ease; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11,103,182,.2);
}

.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 99px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(28, 121, 196, .5), transparent 30%),
    linear-gradient(110deg, #071d31 0%, #0b3d69 55%, #0f6db7 100%);
  color: white;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -23% 45%;
  height: 420px;
  background: var(--yellow);
  opacity: .12;
  transform: rotate(-8deg);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(30deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.5), transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .78rem;
  color: #cfe7fb;
}
.eyebrow.dark { color: var(--blue); }

h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1, h2 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .01em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); margin-bottom: 24px; }
h1 span { color: var(--yellow); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 20px; color: var(--navy); }
.hero h2, .contact h2 { color: white; }
.hero-text { font-size: 1.15rem; color: #dce9f5; max-width: 650px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 42px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: #172033; box-shadow: 0 10px 25px rgba(247,191,32,.22); }
.btn-secondary { color: white; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn.full { width: 100%; }

.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hero-trust div { border-left: 3px solid var(--yellow); padding-left: 12px; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust span { color: #bcd2e4; font-size: .82rem; margin-top: 4px; }

.estimate-card {
  position: relative;
  background: white;
  color: var(--ink);
  padding: 38px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.estimate-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 7px;
  background: linear-gradient(var(--yellow), #ffda62);
  border-radius: 24px 0 0 24px;
}
.estimate-card h2 { font-size: 2.2rem; color: var(--navy); }
.estimate-card > p { color: var(--muted); }
.estimate-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.contact-line { display: flex; gap: 14px; align-items: center; margin-top: 20px; font-weight: 700; }
.contact-line small { display: block; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #e8f3fc; color: var(--blue); }
.no-link { cursor: default; }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading > p:last-child, .about-copy > p { color: var(--muted); font-size: 1.05rem; }

.services { background: var(--soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: white;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--blue); color: white; font-size: 1.4rem; margin-bottom: 18px; }
.service-card:nth-child(even) .service-icon { background: var(--yellow); color: var(--navy); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0; }

.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo { position: relative; min-height: 470px; }
.paint-swipe {
  position: absolute;
  inset: 30px 50px 30px 0;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  border-radius: 32px 90px 32px 90px;
  transform: rotate(-2deg);
}
.photo-card {
  position: absolute;
  background-size: cover;
  background-position: center;
  border: 8px solid white;
  box-shadow: var(--shadow);
}
.photo-card-one {
  width: 68%; height: 62%; right: 8%; top: 0;
  background-image: linear-gradient(rgba(8,45,79,.08),rgba(8,45,79,.08)), url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=900&q=80');
  border-radius: 22px 22px 64px 22px;
}
.photo-card-two {
  width: 60%; height: 48%; left: 4%; bottom: 0;
  background-image: linear-gradient(rgba(8,45,79,.05),rgba(8,45,79,.05)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=80');
  border-radius: 22px;
}
.owner-card { display: flex; align-items: center; gap: 14px; margin: 28px 0; }
.owner-initials { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-weight: 800; }
.owner-card strong, .owner-card span { display: block; }
.owner-card span { color: var(--muted); font-size: .9rem; }
.text-link { font-weight: 800; color: var(--blue); }

.reviews { background: linear-gradient(180deg, #f8fbfe, #eef4f9); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 35px rgba(7, 32, 57, .08);
}
.stars { color: #e9ad08; letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 16px; }
.review-card p { color: #3f4d5d; }
.reviewer { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.reviewer strong, .reviewer span { display: block; }
.reviewer span { color: var(--muted); font-size: .9rem; }

.contact { background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: #c6d8e8; max-width: 540px; }
.contact-list { margin-top: 32px; display: grid; gap: 16px; }
.contact-list > * { display: flex; align-items: center; gap: 14px; }
.contact-list > * > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--yellow); }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: #9ebbd1; }

.contact-form { background: white; color: var(--ink); padding: 32px; border-radius: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.contact-form label { display: block; font-weight: 700; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #ced7e0;
  border-radius: 10px;
  padding: 13px 14px;
  background: #fbfcfe;
  outline: none;
  transition: .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,103,182,.1); }
textarea { resize: vertical; }
.form-note { font-size: .78rem; color: var(--muted); margin: 12px 0 0; }

.site-footer { background: #051f36; color: #bcd1e2; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand img { width: 210px; height: 58px; object-fit: contain; background: white; border-radius: 8px; padding: 6px; }
.footer-brand p { margin: 8px 0 0; font-size: .9rem; }
.footer-meta { text-align: right; font-size: .88rem; }
.footer-meta a { color: white; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 20px; right: 20px; top: 82px;
    background: white;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero { min-height: auto; }
  .estimate-card { max-width: 620px; }
  .service-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo { order: 2; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 26px, 1180px); }
  .section { padding: 72px 0; }
  .brand img { width: 220px; }
  .hero-grid { padding: 70px 0; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.6rem); }
  .hero-trust { grid-template-columns: 1fr; }
  .service-grid, .review-grid, .field-row { grid-template-columns: 1fr; }
  .estimate-card, .contact-form { padding: 24px; }
  .about-photo { min-height: 390px; }
  .photo-card-one { width: 76%; }
  .photo-card-two { width: 68%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}
