:root {
  --ink: #12331f;
  --ink-2: #275439;
  --leaf: #6daf81;
  --wood: #c59a61;
  --clay: #a95536;
  --paper: #f6f3ea;
  --paper-2: #eee8dc;
  --white: #ffffff;
  --muted: rgba(18, 51, 31, 0.72);
  --line: rgba(18, 51, 31, 0.15);
  --shadow: 0 22px 70px rgba(14, 28, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 118px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(246, 243, 234, 0.94);
  border-bottom: 1px solid rgba(18, 51, 31, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  padding: 8px 0;
}

.header-phone,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-phone {
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: 118px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 13, 0.9) 0%, rgba(8, 22, 13, 0.66) 48%, rgba(8, 22, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 22, 13, 0.34), rgba(8, 22, 13, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.96;
}

.tagline {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--ink);
  background: var(--wood);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.quick-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -58px auto 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-contact div {
  min-height: 128px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.quick-contact div:last-child {
  border-right: 0;
}

.quick-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-contact a,
.quick-contact p {
  margin: 0;
  font-weight: 900;
}

.quick-contact a[href^="mailto"] {
  font-size: 0.95rem;
}

.section,
.contact {
  padding: clamp(76px, 9vw, 132px) 0;
}

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

.intro-grid,
.method-grid,
.zone-grid,
.ambition-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

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

.intro p,
.zone p,
.ambition p,
.contact p {
  color: var(--muted);
  font-size: 1.12rem;
}

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

.services,
.ambition {
  background: var(--white);
}

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

.service-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 234, 0.96)),
    var(--white);
  box-shadow: 0 18px 48px rgba(14, 28, 19, 0.07);
}

.service-card span {
  display: block;
  margin-bottom: 62px;
  color: var(--clay);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

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

.method {
  color: var(--white);
  background: var(--ink);
}

.method .section-kicker,
.contact .section-kicker {
  color: var(--wood);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--wood);
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-weight: 900;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 51, 31, 0.96), rgba(18, 51, 31, 0.86)),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.hours-box {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-box span {
  color: rgba(255, 255, 255, 0.72);
}

.hours-box strong {
  color: var(--wood);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form .full,
.contact-form button,
.contact-form .form-help {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form .form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-help a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #0c1710;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 104px;
  }

  .brand img {
    width: 126px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

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

  .intro-grid,
  .method-grid,
  .zone-grid,
  .ambition-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 86px;
    padding: 8px 14px;
  }

  .brand img {
    width: 86px;
  }

  .header-phone {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 86px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .tagline {
    font-size: 1rem;
  }

  .quick-contact,
  .service-grid,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .quick-contact {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .quick-contact div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: auto;
  }

  .service-card span {
    margin-bottom: 36px;
  }

  .site-footer {
    display: grid;
  }
}
