:root {
  color-scheme: light;
  --ink: #182123;
  --muted: #5d686c;
  --surface: #ffffff;
  --soft: #f3f6f2;
  --mist: #e8f1ef;
  --line: #d9e0dc;
  --teal: #0c6b63;
  --teal-dark: #08433f;
  --yellow: #f1bf3a;
  --green: #477c39;
  --red: #b74732;
  --shadow: 0 18px 50px rgba(24, 33, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 0;
  font-size: 15px;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-nav a {
  min-width: 82px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--soft);
  border-radius: 6px;
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 168px;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.header-call svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 22, 21, 0.86), rgba(5, 22, 21, 0.45), rgba(5, 22, 21, 0.16)),
    url("https://images.pexels.com/photos/7807058/pexels-photo-7807058.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 76% 18%, rgba(241, 191, 58, 0.24), transparent 28rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 60px 0;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  background: var(--yellow);
  color: #1f1a0d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
  background: #ffd25e;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.quick-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.quick-points svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: #ffffff;
}

.signal-bar div {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.signal-bar div:last-child {
  border-right: 0;
}

.signal-bar strong,
.signal-bar span {
  display: block;
}

.signal-bar strong {
  font-size: 18px;
}

.signal-bar span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background: var(--surface);
}

.section-copy p:not(.eyebrow),
.split-copy p,
.quote-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.notice {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid #e1d19a;
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  background: #fff8df;
  box-shadow: var(--shadow);
}

.notice svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--red);
}

.notice strong {
  display: block;
  font-size: 18px;
}

.notice p {
  margin: 6px 0 0;
  color: #5d4c1d;
}

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

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

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

.service-card,
.area-block {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--teal);
}

.service-card p,
.area-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  min-height: 560px;
  background: #ffffff;
}

.media-panel {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(8, 67, 63, 0.08), rgba(8, 67, 63, 0.28)),
    url("https://images.pexels.com/photos/7807058/pexels-photo-7807058.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center / cover;
}

.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(44px, 7vw, 88px);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink);
  font-weight: 800;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--green);
}

.areas-section {
  background: #ffffff;
}

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

.area-block {
  min-height: 170px;
  background: linear-gradient(180deg, #ffffff, #f8faf7);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 560px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(60px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--teal-dark);
  color: #ffffff;
}

.quote-section .eyebrow {
  color: var(--yellow);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 11px 12px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(241, 191, 58, 0.45);
  border-color: var(--yellow);
}

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

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.form-note.success {
  color: #dff2c7;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

summary {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: #111819;
  color: #ffffff;
}

.site-footer p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px 16px;
  max-width: 500px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .intro-section,
  .quote-section,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .split-copy {
    padding: 52px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-call {
    justify-self: stretch;
    width: 100%;
  }

  .hero {
    min-height: 78vh;
    background-position: 58% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

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

  .quick-points {
    display: grid;
  }

  .signal-bar,
  .service-grid,
  .area-grid,
  .check-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .signal-bar div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .signal-bar div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .area-block {
    min-height: auto;
  }
}
