:root {
  --ink: #1d2833;
  --navy: #17324d;
  --green: #2f7d5b;
  --gold: #c89342;
  --paper: #f7f3ea;
  --cream: #fffaf0;
  --line: #d8cdbb;
  --muted: #66717d;
  --white: #ffffff;
  --danger: #8b3d30;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--navy);
  text-decoration-color: rgba(47, 125, 91, 0.45);
  text-underline-offset: 3px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.top-strip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 20px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}

.logo img {
  width: 235px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--green);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
}

.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #23190c;
}

.hero {
  position: relative;
  min-height: 500px;
  background: var(--navy);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 35, 52, 0.9), rgba(18, 35, 52, 0.62) 42%, rgba(18, 35, 52, 0.12) 78%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 74px 0 64px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: #f3c66e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  max-width: 620px;
}

.hero p {
  font-size: 1.12rem;
  max-width: 570px;
  margin: 0 0 24px;
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid div {
  background: var(--paper);
  padding: 18px;
  font-weight: 700;
  color: var(--navy);
}

.section {
  padding: 58px 0;
}

.section.white {
  background: var(--white);
}

.section.paper {
  background: var(--paper);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.image-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.image-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
}

.card h3 {
  font-size: 1.28rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.list-check {
  padding-left: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.banner {
  background: var(--navy);
  color: var(--white);
  padding: 34px;
  border-top: 5px solid var(--gold);
}

.banner h2,
.banner h3 {
  color: var(--white);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 6px;
}

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

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #b8c0c8;
  border-radius: 4px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 54px 0;
  border-bottom: 5px solid var(--gold);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.content {
  max-width: 820px;
}

.content h2 {
  margin-top: 34px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 14px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.site-footer {
  background: #17222e;
  color: #e7edf2;
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.site-footer a {
  color: #e7edf2;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 28px;
  padding-top: 18px;
  color: #bcc8d2;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .main-nav,
  .top-strip .wrap {
    display: block;
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .trust-grid,
  .card-grid,
  .two-col,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    padding-top: 54px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .top-strip {
    font-size: 0.82rem;
  }

  .main-nav {
    padding: 14px 12px;
  }

  .logo img {
    width: 205px;
  }

  .nav-links {
    gap: 10px 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-copy {
    padding: 42px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero p,
  .page-hero p,
  .section-head p,
  .lead {
    font-size: 1rem;
  }

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

  .section {
    padding: 42px 0;
  }

  .page-hero {
    padding: 42px 0;
  }

  .card,
  .quote-form {
    padding: 18px;
  }

  .banner {
    padding: 24px;
  }
}
