:root {
  --ink: #17191f;
  --steel: #3f4858;
  --muted: #667085;
  --paper: #f7f5ef;
  --white: #ffffff;
  --brass: #c7953e;
  --brass-dark: #8a6121;
  --oxide: #1f6f78;
  --line: rgba(23, 25, 31, 0.14);
  --shadow: 0 20px 70px rgba(23, 25, 31, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--steel);
  font-weight: 700;
}

.site-nav a {
  padding: 8px 2px;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.header-call,
.button.primary {
  color: var(--white);
  background: var(--oxide);
}

.header-call:hover,
.button.primary:hover {
  background: #185b62;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.58);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 25, 31, 0.88), rgba(23, 25, 31, 0.5), rgba(23, 25, 31, 0.2)),
    url("https://images.unsplash.com/photo-1585366119957-e9730b6d0f60?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 10vw, 132px) 0 clamp(84px, 12vw, 150px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(3.4rem, 10vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

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

.status-strip div {
  min-height: 110px;
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.status-strip strong,
.status-strip span {
  display: block;
}

.status-strip strong {
  font-size: 1.05rem;
}

.status-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section,
.split-section,
.quote-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.quote-section p {
  color: var(--steel);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(23, 25, 31, 0.06);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brass-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.coverage-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.process-panel {
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.process-panel h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.process-panel ol {
  display: grid;
  gap: 18px;
  padding-left: 22px;
  margin: 0;
}

.process-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.process-panel strong {
  display: block;
  color: var(--white);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 76px);
  border-top: 1px solid var(--line);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

.upload-options {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px dashed rgba(31, 111, 120, 0.4);
  border-radius: 8px;
  background: rgba(31, 111, 120, 0.06);
}

.upload-options legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.upload-options p {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 25, 31, 0.18);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
}

.quote-form input[type="file"] {
  padding: 11px;
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 1.5em;
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  display: block;
  color: var(--white);
  font-weight: 800;
  text-align: right;
}

.site-footer a + a {
  margin-top: 8px;
  color: var(--brass);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    align-self: end;
  }

  .status-strip,
  .service-grid,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .site-header {
    gap: 14px;
  }

  .header-call {
    flex: 1 1 auto;
  }

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

  .hero-points {
    align-items: stretch;
    flex-direction: column;
  }

  .service-card {
    min-height: auto;
  }

  .quote-form,
  .process-panel {
    padding: 22px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    margin-top: 18px;
    text-align: left;
  }
}
