:root {
  --navy: #123f75;
  --navy-dark: #08264a;
  --green: #3f8f42;
  --green-soft: #eef7ef;
  --ink: #121924;
  --muted: #5d6675;
  --line: #dfe6ee;
  --bg: #ffffff;
  --soft: #f7faf8;
  --shadow: 0 20px 50px rgba(8, 38, 74, 0.13);
  --radius: 24px;
}

* { 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(--ink);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.announcement {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  padding: 10px 18px;
  background: var(--navy-dark);
  color: #fff;
  font-size: 14px;
}
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 230, 238, .8);
}
.logo-wrap img { width: 148px; height: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; font-weight: 650; color: #141a22; }
.nav-links a:hover { color: var(--navy); }
.nav-button {
  background: var(--navy);
  color: #fff;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18,63,117,.18);
}

.section-pad { padding: 88px 6vw; }
.hero {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 60px;
  align-items: center;
  min-height: 720px;
  background:
    radial-gradient(circle at 2% 90%, rgba(63,143,66,.12), transparent 20%),
    linear-gradient(90deg, #fbfdfb 0%, #fff 60%);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.05;
}
h1 { font-size: clamp(44px, 5.3vw, 78px); margin-bottom: 26px; }
h2 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.hero-subtitle { font-size: clamp(18px, 1.7vw, 23px); line-height: 1.65; color: #1f2937; max-width: 650px; }
.hero-actions, .contact-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin: 32px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 12px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--navy); color: #fff; }
.btn.secondary { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn.small { min-height: 48px; padding: 0 22px; }
.trust-line { color: #263241; font-weight: 600; line-height: 1.7; }
.trust-line span { color: var(--green); margin: 0 8px; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.photo-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.photo-card strong, .photo-card span { display: block; }
.photo-card span { color: var(--muted); margin-top: 4px; font-size: 14px; }

.quote-strip {
  margin: -28px auto 0;
  width: min(1120px, 88vw);
  background: var(--navy-dark);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}
.quote-strip strong, .quote-strip span { display: block; }
.quote-strip strong { font-size: 22px; }
.quote-strip span { color: rgba(255,255,255,.78); margin-top: 6px; }

.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.65; }
.services-section, .why-section, .process-section { background: var(--soft); }
.service-grid, .why-grid, .review-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card, .why-card, blockquote, .process-step, .quote-form, .area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(8,38,74,.06);
}
.service-card p, .why-card p, blockquote p, .process-step p { color: var(--muted); line-height: 1.6; }
.icon { font-size: 34px; display: inline-block; margin-bottom: 18px; }

.projects-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: center;
}
.project-content p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.7; }
.text-link { color: var(--navy); font-weight: 900; }
.project-gallery { position: relative; }
.project-gallery img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1.55 / 1; object-fit: cover; width: 100%; }
.gallery-note { margin-top: 14px; color: var(--muted); font-size: 15px; }

.reviews-section { background: #fff; }
blockquote { margin: 0; }
blockquote p { font-size: 18px; color: #1f2937; }
cite { font-style: normal; color: var(--navy); font-weight: 900; }

.area-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.area-card { max-width: 1100px; margin: auto; }
.area-card p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.7; }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.city-list span { background: var(--green-soft); color: var(--navy-dark); padding: 10px 14px; border-radius: 999px; font-weight: 800; }

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: linear-gradient(180deg, #fff, #f7faf8);
}
.contact-copy p:not(.eyebrow) { color: var(--muted); font-size: 19px; line-height: 1.7; }
.quote-form { display: grid; gap: 16px; }
.quote-form label { display: grid; gap: 8px; font-weight: 800; color: var(--navy-dark); }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(18,63,117,.08); }
.hidden { display: none; }
.form-note { color: var(--muted); font-size: 13px; line-height: 1.5; }

.site-footer {
  padding: 42px 6vw 80px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 120px; margin: 0 auto 12px; }
.site-footer p { color: var(--muted); }
.site-footer a { color: var(--navy); font-weight: 900; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero, .projects-section, .contact-section { grid-template-columns: 1fr; min-height: auto; }
  .service-grid, .why-grid, .review-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 56px; }
}

@media (max-width: 680px) {
  .announcement { display: none; }
  .site-header { padding: 12px 18px; }
  .logo-wrap img { width: 112px; }
  .nav-button { padding: 12px 16px; border-radius: 10px; }
  .section-pad { padding: 58px 20px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero { gap: 34px; }
  .hero-actions, .contact-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .trust-line span { margin: 0 4px; }
  .photo-card { position: static; margin-top: 12px; }
  .quote-strip { flex-direction: column; align-items: stretch; width: calc(100% - 40px); margin-top: -8px; }
  .service-grid, .why-grid, .review-grid, .process-grid { grid-template-columns: 1fr; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(0,0,0,.08);
  }
  .mobile-cta a {
    padding: 14px 8px;
    text-align: center;
    font-weight: 900;
    color: var(--navy);
    border-right: 1px solid var(--line);
  }
  .site-footer { padding-bottom: 100px; }
}
