* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #102018;
  --muted: #4a5b52;
  --surface: #f4f7f3;
  --leaf: #1f6d4a;
  --sun: #f2b544;
  --sea: #0f8c9c;
  --shadow: rgba(16, 32, 24, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}

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-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 8vw 10px;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: var(--leaf);
  color: var(--ink);
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 64px 8vw;
  position: relative;
}

.section-muted {
  background: var(--surface);
}

.section-accent {
  background: #f9f4e8;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-section.reverse {
  flex-direction: column;
}

.split-section .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
}

.display {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-button {
  background: var(--leaf);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.cta-inline {
  color: var(--sea);
  font-weight: 600;
}

.data-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px var(--shadow);
}

.data-strip span {
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px var(--shadow);
}

.service-card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--sea);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 26px var(--shadow);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 36px var(--shadow);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd6cf;
  font-size: 0.98rem;
}

.form-shell button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sun);
  color: #1a1407;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(242, 181, 68, 0.4);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  margin-top: auto;
  padding: 28px 8vw 36px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.footer a {
  color: var(--ink);
}

.split-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tag {
  background: #dff0e7;
  color: var(--leaf);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  width: fit-content;
}

.inline-image {
  border-radius: 14px;
  box-shadow: 0 12px 28px var(--shadow);
}

@media (min-width: 900px) {
  .nav-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-row {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-section .copy,
  .split-section .media {
    flex: 1;
  }

  .data-strip {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-list {
    gap: 16px;
  }
}
