* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #14221a;
  --stone: #f4f2ee;
  --pine: #1f4e3c;
  --sky: #d7ecf2;
  --gold: #c7a05a;
  --shadow: rgba(20, 34, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  padding: 22px 5vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--gold);
}

.nav-cta {
  align-self: flex-start;
  background: var(--pine);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 5vw 90px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.section.split {
  align-items: stretch;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.highlight {
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--pine);
}

h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--pine);
  color: #ffffff;
}

.btn.ghost {
  border-color: var(--pine);
  color: var(--pine);
}

.inline-link {
  color: var(--pine);
  font-weight: 600;
  border-bottom: 1px solid var(--pine);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky);
  font-size: 0.85rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px 16px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #ececec;
  box-shadow: 0 10px 20px var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.quote {
  background: var(--sky);
  padding: 18px;
  border-radius: 16px;
}

.form-card {
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
  font-family: inherit;
}

.form-card button {
  width: 100%;
}

.footer {
  padding: 36px 5vw 48px;
  background: #0f1713;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 36px var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 110px;
  background: var(--gold);
  color: #101010;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px var(--shadow);
  z-index: 10;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-bar {
  background: var(--sky);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e6e6e6;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-cta {
    align-self: center;
  }

  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .stats {
    flex-direction: row;
  }

  .grid-cards {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33% - 16px);
  }
}
