:root {
  color-scheme: light;
  --ink: #12201d;
  --muted: #52615d;
  --line: #dbe5df;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --brand: #0d3b35;
  --gold: #c7923e;
  --clay: #9d4f35;
  --sky: #d9eef5;
  --shadow: 0 18px 45px rgba(18, 32, 29, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; }
img, video { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(251, 252, 248, .92);
  border-bottom: 1px solid rgba(219, 229, 223, .86);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; text-decoration: none; }
.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--brand);
}
nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 15px; }
nav a, footer a { text-decoration: none; }
.call-button, .primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.call-button, .primary { color: white; background: var(--brand); }
.secondary { color: var(--brand); background: white; border-color: var(--line); }

.hero {
  position: relative;
  min-height: min(760px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero picture, .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(9, 26, 22, .82), rgba(9, 26, 22, .28) 58%, rgba(9, 26, 22, .1)); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin: 0 0 clamp(34px, 10vh, 92px) clamp(16px, 6vw, 72px);
  color: white;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 14px; font-size: clamp(48px, 10vw, 112px); line-height: .9; letter-spacing: 0; }
h2 { font-size: clamp(32px, 5vw, 58px); line-height: 1; letter-spacing: 0; }
h3 { font-size: 21px; }
.hero p { max-width: 620px; font-size: clamp(18px, 2.8vw, 24px); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.quick-strip div { padding: 22px clamp(16px, 4vw, 40px); background: white; }
.quick-strip strong, .quick-strip span { display: block; }
.quick-strip span { color: var(--muted); margin-top: 5px; }

.section { padding: clamp(54px, 8vw, 96px) clamp(16px, 5vw, 72px); }
.section-heading { max-width: 870px; margin-bottom: 28px; }
.section-heading p, .split p, .video-band p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-grid article {
  overflow: hidden;
  min-height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(18, 32, 29, .07);
}
.service-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-grid h3, .service-grid p { padding-inline: 18px; }
.service-grid h3 { margin: 18px 0 8px; }
.service-grid p { color: var(--muted); line-height: 1.55; padding-bottom: 20px; }

.video-band {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 520px;
  padding: clamp(40px, 8vw, 78px);
  color: white;
  overflow: hidden;
  background: var(--brand);
}
.motion-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13, 59, 53, .78), rgba(157, 79, 53, .26)),
    url("/media/hero-mobile.jpg") center / cover;
  animation: site-pan 18s ease-in-out infinite alternate;
}
.video-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4, 17, 15, .86), rgba(4, 17, 15, .12)); }
.video-band div { position: relative; z-index: 1; max-width: 820px; }
.video-band p { color: rgba(255,255,255,.84); }

.split { display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; align-items: start; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tags span {
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--sky);
  color: #183c45;
  font-weight: 800;
}
.trust-panel {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.trust-panel li { margin: 12px 0; color: var(--muted); }

.estimate { background: #edf4ee; }
form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
}
label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c5d3cc;
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
button { cursor: pointer; font: inherit; border: 0; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(16px, 5vw, 72px) 90px;
  color: white;
  background: var(--brand);
}
footer span, footer a { display: block; color: rgba(255,255,255,.8); margin-top: 6px; }
.mobile-cta { display: none; }

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header { min-height: 64px; }
  nav, .call-button { display: none; }
  .brand { font-size: 15px; }
  .hero { min-height: 82vh; }
  .hero::after { background: linear-gradient(0deg, rgba(9, 26, 22, .88), rgba(9, 26, 22, .26)); }
  .hero-content { margin: 0 16px 38px; width: calc(100% - 32px); }
  .hero-actions a { width: 100%; }
  .quick-strip, .service-grid, .split, form { grid-template-columns: 1fr; }
  .section { padding: 48px 16px; }
  .video-band { min-height: 460px; padding: 34px 16px; }
  footer { display: block; padding-bottom: 92px; }
  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .mobile-cta a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: white;
    background: var(--brand);
    font-weight: 900;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@keyframes site-pan {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
