:root {
  --ink: #0e1715;
  --muted: #53605d;
  --line: #dfe7e3;
  --paper: #fbfcfa;
  --white: #ffffff;
  --forest: #0f3a34;
  --teal: #0c8f7a;
  --mint: #c9f2df;
  --clay: #c94f31;
  --amber: #f4bc4b;
  --shadow: 0 24px 70px rgba(10, 26, 23, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 15, 13, 0.82), rgba(5, 15, 13, 0.46) 62%, rgba(5, 15, 13, 0));
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.36);
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(15, 58, 52, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand img,
.site-footer img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}

nav a {
  opacity: 0.78;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(820px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, #071210, #0f3a34),
    var(--forest);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 10, 0.9) 0%, rgba(4, 12, 10, 0.66) 42%, rgba(4, 12, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 12, 10, 0.5), rgba(4, 12, 10, 0.06) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 0 clamp(18px, 8.8vw, 180px);
  padding: 150px 0 54px;
  color: var(--white);
}

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

.eyebrow.dark {
  color: var(--teal);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.hero-facts {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary,
.button-submit {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 16px 44px rgba(6, 94, 80, 0.22);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button-submit {
  width: 100%;
  color: var(--white);
  background: var(--forest);
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.quote-band {
  padding: clamp(52px, 8vw, 96px) 0;
  background:
    linear-gradient(180deg, rgba(201, 242, 223, 0.5), rgba(251, 252, 250, 0)),
    var(--paper);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 94px;
}

.quote-copy p,
.proof-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.direct-call {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 58, 52, 0.16);
  color: var(--ink) !important;
  font-weight: 800;
}

.direct-call a {
  color: var(--teal);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: #273532;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8d2;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f9fbfa;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 143, 122, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent {
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent span {
  color: var(--muted);
  font-weight: 600;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.service-section,
.proof-section,
.service-area {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

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

.service-card {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card span {
  color: var(--clay);
  font-weight: 900;
}

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

.image-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  background: #f2f5ef;
}

.proof-image {
  min-height: 520px;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 6vw, 82px);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.proof-list span {
  padding: 13px 0;
  border-top: 1px solid rgba(15, 58, 52, 0.16);
  color: #243431;
  font-weight: 800;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 14px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(15, 58, 52, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(10, 26, 23, 0.08);
}

.review-link:hover,
.review-link:focus-visible {
  border-color: rgba(12, 143, 122, 0.5);
}

.proof-points div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.proof-points strong {
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.proof-points span {
  color: var(--muted);
  font-weight: 800;
}

.service-area {
  color: var(--white);
  background: var(--forest);
}

.service-area .eyebrow {
  color: var(--mint);
}

.service-area h2 {
  max-width: 760px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #dce8e3;
  background: #071210;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: #9fb0aa;
}

.site-footer a {
  color: var(--mint);
  font-weight: 800;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[hidden] {
  display: none !important;
}

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

  nav {
    display: none;
  }

  .quote-layout,
  .image-proof,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-copy {
    position: static;
  }

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

  .proof-image {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 36px;
  }

  .hero-media {
    object-position: center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 12, 10, 0.48) 0%, rgba(4, 12, 10, 0.14) 28%, rgba(4, 12, 10, 0.72) 70%, rgba(4, 12, 10, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 12, 10, 0.42), rgba(4, 12, 10, 0.16));
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }
  }

  .field-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 190px;
  }

  .proof-points div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
