* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c231d;
  --muted: #4e5a50;
  --leaf: #3a6b4e;
  --leaf-dark: #2a4f39;
  --sand: #f5f1ea;
  --mist: #e6efe9;
  --stone: #c9d5cc;
  --sun: #e2b95c;
  --accent: #5a7f6a;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--stone);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #fff;
  border-bottom: 1px solid var(--mist);
  gap: 18px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.78rem;
  color: var(--leaf-dark);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
  padding: 60px 6%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: var(--sand);
}

.hero-media {
  background-color: var(--stone);
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: var(--leaf-dark);
}

h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
}

p {
  font-size: 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--leaf-dark);
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--leaf-dark);
}

.content-section {
  padding: 60px 6%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--stone);
  min-height: 320px;
}

.panel-block {
  background: var(--mist);
  border-radius: 24px;
  padding: 24px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--leaf-dark);
  font-weight: 600;
}

.band {
  background: var(--mist);
}

.backdrop-grove {
  background-image: linear-gradient(rgba(230, 239, 233, 0.9), rgba(230, 239, 233, 0.9)),
    url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.band-dark {
  background: var(--leaf-dark);
  color: #fff;
}

.band-dark p,
.band-dark h2,
.band-dark h3 {
  color: #fff;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 160px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--mist);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
}

.service-image-block {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--leaf-dark);
  text-align: center;
  padding: 12px;
}

.price {
  font-weight: 700;
  color: var(--leaf-dark);
}

.inline-link {
  color: var(--leaf-dark);
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form label {
  font-size: 0.9rem;
  color: var(--muted);
}

form select,
form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 0.95rem;
}

.form-status {
  font-size: 0.9rem;
  color: var(--leaf-dark);
  min-height: 20px;
}

.footer {
  margin-top: auto;
  background: var(--sand);
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--sun);
  border: none;
  color: var(--ink);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--mist);
  padding: 16px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--leaf-dark);
  background: var(--leaf);
  color: #fff;
  cursor: pointer;
}

.cookie-actions .btn-ghost {
  background: transparent;
  color: var(--leaf-dark);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 1.7rem;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--mist);
}

.no-form-note {
  font-size: 0.95rem;
  color: var(--leaf-dark);
}

.wide-image {
  background-color: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.section-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.centered {
  text-align: center;
}

.muted {
  color: var(--muted);
}
