:root {
  --ink: #17251f;
  --forest: #1f4d3c;
  --forest-dark: #14372b;
  --sage: #e6eee9;
  --cream: #f8f7f2;
  --white: #ffffff;
  --gold: #d19a37;
  --muted: #5d6b63;
  --line: #dbe3de;
  --shadow: 0 18px 45px rgba(22, 50, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 190px;
}

.brand-main {
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.brand-sub {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--forest);
}

.nav-call {
  padding: 11px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--forest);
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  padding: 98px 0 88px;
  background:
    radial-gradient(circle at top right, rgba(209, 154, 55, 0.19), transparent 30%),
    linear-gradient(135deg, #edf4ef 0%, #f8f7f2 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 730px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button-primary {
  color: var(--white);
  background: var(--forest);
}

.button-secondary {
  color: var(--forest);
  border: 2px solid var(--forest);
  background: transparent;
}

.button-dark {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
  color: var(--forest-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  padding: 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 2rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.84);
}

.card-kicker {
  color: #f0c36f !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.small-note {
  margin: 18px 0 0;
  font-size: 0.82rem;
}

.section {
  padding: 94px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  margin-bottom: 18px;
  font-size: 1.85rem;
}

.section-dark {
  color: var(--white);
  background: var(--forest-dark);
}

.section-dark .eyebrow {
  color: #f0c36f;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: #f0c36f;
  font-weight: 800;
}

.service-area {
  text-align: center;
}

.service-area .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-list span {
  padding: 11px 15px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 999px;
  font-weight: 800;
}

.area-note {
  max-width: 680px;
  margin: 27px auto 0;
  color: var(--muted);
}

.contact-section {
  background: var(--sage);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: start;
}

.contact-intro {
  max-width: 490px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-email {
  margin-top: 27px;
  font-weight: 700;
}

.contact-email a {
  color: var(--forest);
}

.quote-form {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.quote-form label {
  margin-top: 5px;
  font-size: 0.87rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd8d0;
  border-radius: 6px;
  color: var(--ink);
  background: #fcfdfc;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(31, 77, 60, 0.18);
  border-color: var(--forest);
}

.quote-form .button {
  margin-top: 10px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-wrap strong {
  color: var(--white);
}

.footer-wrap p {
  margin: 7px 0 0;
  font-size: 0.85rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: right;
}

.footer-right a {
  color: #f0c36f;
  font-weight: 700;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .nav-call {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .contact-grid {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .hero,
  .section {
    padding: 68px 0;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }
}