:root {
  --blue: #008ed0;
  --blue-dark: #0069a8;
  --blue-deep: #043d62;
  --ink: #11202c;
  --muted: #60717f;
  --line: #d9e6ee;
  --ice: #eff8fc;
  --white: #ffffff;
  --wood: #c69a63;
  --shadow: 0 20px 50px rgba(6, 44, 68, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(0, 118, 184, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 0.85;
}

.brand-main {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
}

.brand-sub {
  font-size: clamp(0.85rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.3em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav-call {
  padding: 10px 14px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 35, 54, 0.88) 0%, rgba(2, 50, 78, 0.72) 42%, rgba(0, 142, 208, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 59, 92, 0.72), rgba(0, 59, 92, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.service-line,
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-line,
.eyebrow.light {
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 720px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--blue-deep);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  outline: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: var(--ice);
}

.trust-strip strong,
.trust-strip span,
.site-footer strong,
.site-footer span {
  display: block;
}

.trust-strip strong {
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 68, 105, 0.07);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.service-card p,
.process-list p,
.quote-copy p {
  color: var(--muted);
}

.blue-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 8vw, 94px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue) 55%, #20a7df),
    var(--blue);
}

.blue-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-row a,
.phone-link {
  font-weight: 900;
  color: var(--white);
}

.about-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.14);
}

.about-panel strong {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.about-panel span {
  display: block;
  padding: 12px 14px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 6px;
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-list div {
  padding-top: 20px;
  border-top: 4px solid var(--blue);
}

.process-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--wood);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-deep);
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #b8ccd8;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 142, 208, 0.25);
  border-color: var(--blue);
}

.submit-button {
  justify-self: start;
  color: var(--white);
  background: var(--blue);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #022f4c;
}

.site-footer a {
  display: block;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 820px;
    padding-top: 180px;
  }

  .trust-strip,
  .services-grid,
  .blue-band,
  .process-list,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand-main {
    font-size: 2.3rem;
  }

  .brand-sub {
    font-size: 0.9rem;
  }

  .nav {
    font-size: 0.85rem;
  }

  .nav a:not(.nav-call) {
    display: none;
  }

  .nav-call {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding-top: 170px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
  }

  .hero-actions,
  .button,
  .contact-row {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer a {
    text-align: left;
  }
}
