* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f2a24;
  --muted: #5a6a5f;
  --accent: #2f6b4f;
  --accent-dark: #244d3a;
  --sand: #e7dfd2;
  --sage: #dfe9df;
  --stone: #d7d1c7;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.ad-label {
  max-width: 260px;
  font-size: 12px;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

.hero {
  display: flex;
  gap: 24px;
  padding: 32px 6vw 48px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  position: relative;
  min-height: 360px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.hero-visual .overlay-card {
  position: absolute;
  right: -32px;
  bottom: -28px;
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  width: 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 56px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section.stone {
  background: var(--stone);
}

.bg-sage {
  background-color: #d6e2d3;
}

.bg-clay {
  background-color: #e1d7c9;
}

.bg-mist {
  background-color: #d9d2c8;
}

.bg-forest {
  background-color: #e0e6da;
}

.bg-leaf {
  background-color: #dfe6d7;
}

.bg-ash {
  background-color: #e4e1dd;
}

.panel.sage {
  background: var(--sage);
}

.image-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.flex-1 {
  flex: 1;
}

.flex-1-1 {
  flex: 1.1;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  flex: 1;
  min-width: 260px;
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-band {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.split-band .panel {
  flex: 1;
  min-width: 260px;
  padding: 40px 32px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.ghost {
  background: #fff;
  color: var(--accent-dark);
  border: 1px dashed var(--accent-dark);
}

.callout {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  border-left: 6px solid var(--accent);
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  font-size: 14px;
}

.form-shell textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-image {
  border-radius: 16px;
  width: 100%;
  height: 260px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #121815;
  color: #e8ece9;
}

.footer a {
  color: #cfe3d5;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.disclaimer {
  font-size: 13px;
  color: #c4d1c9;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-visual .overlay-card {
    position: static;
    margin-top: 18px;
    width: auto;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
