* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2520;
  --muted: #4a5a52;
  --soft: #f4f7f4;
  --accent: #2e7d5a;
  --accent-dark: #1f5a40;
  --sand: #eef3ee;
  --line: #d9e2db;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 56px 0 72px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.button-secondary {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.button {
  background: var(--accent);
  color: #ffffff;
}

.button:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: var(--soft);
  color: var(--accent-dark);
}

.button-secondary:hover {
  background: #dde8df;
}

.inline-link {
  font-weight: 600;
}

.image-frame {
  background-color: #dfe7df;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-hero {
  min-height: 420px;
}

.frame-medium {
  min-height: 360px;
}

.frame-tall {
  min-height: 460px;
}

.section {
  padding: 64px 0;
}

.section.light {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1768984418592-5b54e4fe7af5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 37, 32, 0.65);
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.service-card .image-frame {
  width: 150px;
  height: 110px;
  flex: 0 0 auto;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
}

footer {
  padding: 36px 0 60px;
  background: #111815;
  color: #e6efe8;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  margin-bottom: 12px;
}

.footer-col a {
  color: #c9d9cf;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c9d9cf;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subtle {
  color: var(--muted);
}

.page-hero {
  padding: 40px 0 32px;
}

.page-hero .split-column {
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
