@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@500;600&display=swap');

:root {
  --navy: #003f59;
  --deep-teal: #07596b;
  --teal: #258da1;
  --sky: #79c8d6;
  --gold: #f6b942;
  --cream: #fbf6eb;
  --white: #ffffff;
  --ink: #15333b;
  --muted: #5d7074;
  --line: rgba(0,63,89,.14);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(251,246,235,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav-cta { background: var(--gold); padding: 10px 16px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; color: var(--navy); }

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 110px);
  background:
    radial-gradient(circle at 88% 12%, rgba(246,185,66,.34), transparent 26%),
    linear-gradient(145deg, var(--cream), #edf7f7);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Oswald", sans-serif;
  color: var(--navy);
  line-height: 1.08;
  margin-top: 0;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); max-width: 900px; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 8px; }

.hero-copy { max-width: 680px; font-size: 1.14rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.primary { background: var(--gold); color: var(--navy); }
.secondary { border: 1px solid var(--navy); color: var(--navy); background: transparent; }

.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row span {
  background: rgba(37,141,161,.10);
  color: var(--deep-teal);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}

.hero-card {
  background: var(--navy);
  color: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0,63,89,.16);
}
.hero-card img {
  display: block;
  width: min(100%, 380px);
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 22px;
  margin: 0 auto 22px;
}
.hero-card p { margin: 0; font-size: 1.05rem; }

.section { padding: clamp(70px, 8vw, 120px) clamp(20px, 7vw, 110px); }
.section-heading { max-width: 850px; margin-bottom: 44px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,63,89,.05);
}
.service-card p { margin: 0; color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 8vw, 110px);
  background: var(--navy);
}
.split-section h2, .split-section p { color: white; }
.split-section .eyebrow { color: var(--gold); }
.split-section p { font-size: 1.08rem; color: rgba(255,255,255,.83); }

.service-area {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  background:
    linear-gradient(rgba(7,89,107,.90), rgba(0,63,89,.96)),
    linear-gradient(135deg, var(--teal), var(--navy));
}
.service-area h2, .service-area p { color: white; }
.service-area .eyebrow { color: var(--gold); }

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 7vw, 90px);
}
.contact-details { margin-top: 26px; }
.placeholder { color: var(--muted); font-style: italic; }

.estimate-form {
  background: white;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0,63,89,.07);
}
label { display: block; margin-bottom: 18px; font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #c9d7d8;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; margin-bottom: 0; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 28px clamp(20px, 7vw, 110px);
  background: #002f43;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: white; }

@media (max-width: 900px) {
  .hero, .contact-section, .split-section { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .service-area { align-items: flex-start; flex-direction: column; }
  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 620px) {
  .brand span { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  footer { flex-direction: column; align-items: flex-start; }
}
