:root {
  --ink: #1f1f1f;
  --muted: #5d6368;
  --accent: #1f6b4a;
  --accent-dark: #134330;
  --sand: #f3f0ea;
  --stone: #d8d1c7;
  --clay: #c9b59f;
  --sky: #eef2f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6vw;
  background: var(--sand);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw 60px;
  background: var(--sky);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% -20% auto auto;
  width: 320px;
  height: 320px;
  background: rgba(31, 107, 74, 0.12);
  border-radius: 50%;
}

.hero-content,
.hero-media {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin: 0 0 16px;
}

.hero-content p {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 60px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.media .image-box {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 6vw 60px;
  background: #fff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: var(--clay);
  height: 170px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .price {
  font-weight: 700;
}

.layered {
  position: relative;
  background: var(--sand);
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12% auto auto -40px;
  width: 200px;
  height: 200px;
  background: rgba(201, 181, 159, 0.45);
  border-radius: 30px;
}

.layered .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 50px 6vw;
}

.inner .stat {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 6vw;
  background: var(--sky);
}

.form-section form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

.form-section input,
.form-section select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
}

.form-aside {
  flex: 1 1 280px;
}

.testimonial {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial .quote {
  background: var(--sand);
  padding: 18px;
  border-radius: 14px;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #141615;
  color: #e6e6e6;
}

.footer a {
  color: #f1f1f1;
}

.footer .cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer .col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 18px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 18px;
  max-width: 320px;
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-header {
  padding: 40px 6vw 20px;
  background: var(--sand);
}

.simple-header h1 {
  margin: 0 0 10px;
}

.content {
  padding: 20px 6vw 50px;
  max-width: 860px;
}

.content p {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 10px 6vw 60px;
}

.contact-box {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.no-click {
  color: var(--ink);
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    border-radius: 16px;
  }
}
