:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #607068;
  --paper: #f8f6f1;
  --surface: #ffffff;
  --line: #d9ddd2;
  --field: #f1f3ed;
  --green: #214832;
  --green-2: #315f42;
  --rust: #b26437;
  --gold: #d7a94c;
  --shadow: 0 20px 50px rgba(23, 33, 28, 0.14);
  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;
  background: var(--paper);
  color: var(--ink);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 1px solid rgba(217, 221, 210, 0.9);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

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

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

nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: #26352d;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  height: clamp(610px, 78svh, 760px);
  overflow: hidden;
  position: relative;
}

.hero picture,
.hero picture::after,
.hero-copy {
  grid-area: 1 / 1;
}

.hero picture::after {
  background: linear-gradient(90deg, rgba(12, 18, 15, 0.86), rgba(12, 18, 15, 0.55) 42%, rgba(12, 18, 15, 0.15));
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  inset: 0;
  width: 100%;
}

.hero img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  align-self: start;
  color: #fff;
  max-width: 780px;
  padding: clamp(96px, 17vh, 160px) clamp(20px, 7vw, 96px) 32px;
  position: relative;
  z-index: 1;
}

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

.hero .eyebrow {
  color: #f0c76a;
}

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

h1 {
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 760px;
}

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

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  max-width: 660px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #1e211b;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.trust-band {
  background: var(--green);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-band div {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px clamp(20px, 4vw, 56px);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin-top: 6px;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

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

.section-heading p:not(.eyebrow),
.quote-copy p,
.quote-copy li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.service-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 238px;
  padding: 26px;
}

.service-grid span {
  color: var(--rust);
  display: block;
  font-weight: 900;
  margin-bottom: 42px;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.work {
  background: #e9eee4;
}

.service-area {
  background: var(--green);
  color: #fff;
}

.service-area .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.work-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 36px;
}

figure {
  background: var(--surface);
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

figure img {
  aspect-ratio: 4 / 3;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
}

.feature-work {
  grid-row: span 2;
}

.feature-work img {
  aspect-ratio: 3 / 4;
  max-height: none;
}

figcaption {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px;
}

figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq {
  background: var(--paper);
}

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

.faq-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 0;
}

.quote-section {
  display: grid;
  gap: clamp(32px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.quote-copy {
  max-width: 620px;
}

.quote-copy ul {
  margin: 30px 0 0;
  padding-left: 20px;
}

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

.form-status {
  border-radius: 8px;
  color: var(--green);
  display: none;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: #e5f2e7;
}

.form-status.warning {
  background: #fff3d3;
  color: #765214;
}

label {
  color: #26352d;
  display: grid;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 8px;
}

input,
select,
textarea {
  background: var(--field);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  outline: 3px solid rgba(49, 95, 66, 0.14);
}

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

.quote-form .button {
  min-height: 54px;
  width: 100%;
}

.fine-print {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 32px clamp(18px, 5vw, 72px);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 5px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: static;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero picture::after {
    background: linear-gradient(180deg, rgba(12, 18, 15, 0.84), rgba(12, 18, 15, 0.58));
  }

  .trust-band,
  .service-grid,
  .work-grid,
  .faq-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .feature-work {
    grid-row: auto;
  }

  .feature-work img,
  figure img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .hero {
    height: 560px;
  }

  .hero img {
    height: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 44px;
  }

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

  .split-fields {
    grid-template-columns: 1fr;
  }

  .quote-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
