:root {
  --navy: #102414;
  --blue: #78b82a;
  --blue-dark: #4f8619;
  --teal: #8fcf3f;
  --ink: #162033;
  --muted: #5c667a;
  --line: #d8e0eb;
  --surface: #ffffff;
  --soft: #f6faec;
  --accent: #d7ef45;
  --shadow: 0 18px 45px rgba(16, 36, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

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

.utility-bar {
  background: var(--navy);
  color: #fff;
  font-size: .9rem;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-inner nav,
.main-nav,
.footer-grid nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.utility-inner a {
  color: rgba(255, 255, 255, .86);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--ink);
  font-weight: 700;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .72rem 1.15rem;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.nav-action,
.button.primary {
  background: var(--blue);
  color: #fff;
}

.nav-action:hover,
.button.primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .82);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(16, 36, 20, .88), rgba(28, 62, 27, .68) 46%, rgba(120, 184, 42, .26));
}

.hero-grid {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 5.5rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.28rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.quote-panel,
.contact-card,
.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: 1.4rem;
}

.quote-panel h2 {
  font-size: 1.45rem;
}

form {
  display: grid;
  gap: .95rem;
}

label {
  display: grid;
  gap: .38rem;
  color: var(--ink);
  font-weight: 800;
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .72rem .78rem;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.quick-actions {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.action-grid a {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 94px;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--line);
  font-weight: 800;
  color: var(--navy);
}

.action-grid a:first-child {
  border-left: 1px solid var(--line);
}

.action-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 6px;
}

.action-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 36, 20, .08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.product-card div {
  padding: 1.25rem;
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  color: var(--blue);
  font-weight: 800;
}

.split-band {
  padding: 5.5rem 0;
  background: var(--navy);
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.split-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stats-grid div {
  min-height: 138px;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.stats-grid strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--accent);
  font-size: 2rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, .8);
}

.claims-section {
  background: var(--soft);
}

.claims-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 3rem;
  align-items: center;
}

.claims-copy {
  max-width: 680px;
}

.claim-steps {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.claim-steps div {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 800;
}

.claim-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.contact-card {
  padding: 1.7rem;
}

.contact-card a,
.contact-section a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  word-break: break-word;
}

.contact-section {
  padding: 5.5rem 0;
}

address {
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-style: normal;
}

.contact-form {
  padding: 1.4rem;
}

.site-footer {
  background: #061727;
  color: #fff;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 920px) {
  .utility-inner,
  .nav-row {
    align-items: flex-start;
    flex-direction: column;
    padding: .9rem 0;
  }

  .main-nav {
    width: 100%;
  }

  .hero-grid,
  .claims-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .quote-panel,
  .contact-card,
  .contact-form {
    max-width: 560px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .utility-inner nav {
    gap: .75rem;
  }

  .nav-action {
    width: 100%;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 3rem 0;
  }

  h1 {
    font-size: 2.55rem;
  }

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

  .action-grid,
  .product-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .action-grid a,
  .action-grid a:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .split-band,
  .contact-section {
    padding: 3.5rem 0;
  }

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