:root {
  --ink: #10212c;
  --muted: #5b6972;
  --line: #d9e1e6;
  --paper: #f6f8f4;
  --white: #ffffff;
  --teal: #0c6b68;
  --teal-dark: #064b49;
  --gold: #c7903d;
  --rust: #9b4f35;
  --shadow: 0 20px 60px rgba(16, 33, 44, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(16, 33, 44, 0.1);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}
.brand strong,
.brand small { display: block; }
.brand small {
  opacity: 0.72;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}
.nav a,
.header-cta { opacity: 0.9; }
.nav a:hover,
.header-cta:hover { opacity: 1; }
.header-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070b0e;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 26, 0.88) 0%, rgba(5, 18, 26, 0.68) 42%, rgba(5, 18, 26, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 18, 26, 0.18), rgba(5, 18, 26, 0));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 80px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.95;
  font-weight: 800;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}
h3 { margin-bottom: 8px; font-size: 1.08rem; }
.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { color: var(--white); background: var(--teal); }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}
.button.light { color: var(--teal-dark); background: var(--white); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}
.trust-strip strong,
.trust-strip span { display: block; }
.trust-strip strong { font-size: 1.08rem; }
.trust-strip span { margin-top: 5px; color: var(--muted); }

.section { padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px); }
.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  background: var(--white);
}
.intro p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
}
.section-heading { max-width: 760px; margin-bottom: 34px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-grid article {
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.service-grid p,
.timeline p,
.contact-copy p { color: var(--muted); }
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 56px;
  border-radius: 8px;
  color: var(--white);
  background: var(--rust);
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  background: #eaf0ed;
}
.process-panel {
  position: sticky;
  top: 110px;
  align-self: start;
}
.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(12, 107, 104, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}
.claims { background: var(--white); }
.claim-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.claim-list span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--teal-dark);
}
.cta-band h2 { max-width: 820px; margin-bottom: 0; }
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
}
.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}
.contact-lines span { color: var(--muted); font-weight: 600; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.footer {
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #111f27;
}
.footer p { margin-bottom: 6px; }
.footer strong { color: var(--white); }
.fine-print { max-width: 860px; font-size: 0.86rem; }

@media (max-width: 980px) {
  .nav { display: none; }
  .trust-strip,
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .intro,
  .split,
  .contact { grid-template-columns: 1fr; }
  .process-panel { position: static; }
}
@media (max-width: 640px) {
  .site-header { padding: 12px 14px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 0.9rem; }
  .header-cta { padding: 9px 10px; font-size: 0.82rem; }
  .hero { min-height: 86vh; }
  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }
  h1 { font-size: 3rem; }
  .trust-strip,
  .service-grid,
  .contact-form { grid-template-columns: 1fr; }
  .service-grid article { min-height: auto; }
  .service-icon { margin-bottom: 28px; }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
