:root {
  color-scheme: light;
  --ink: #1d1f1c;
  --muted: #5b615a;
  --forest: #2c4a3f;
  --moss: #3f6b5a;
  --sage: #e5efe9;
  --sand: #f4efe7;
  --clay: #e0d2c1;
  --accent: #b06b3a;
  --cream: #fbfaf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw 12px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent);
  max-width: 260px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 20px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  min-height: 360px;
  background: var(--sage);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 140px;
  height: 140px;
  background: var(--clay);
  opacity: 0.7;
}

.hero-media img {
  position: absolute;
  inset: 0;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--forest);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.asym-card {
  flex: 1 1 260px;
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(21, 31, 25, 0.08);
}

.asym-card.offset {
  transform: translateY(20px);
}

.image-frame {
  background: var(--sage);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.image-frame.tall {
  min-height: 320px;
}

.ribbon {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(23, 31, 25, 0.08);
}

.service-card .content {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 600;
  color: var(--forest);
}

.bg-panel {
  background: var(--moss);
  color: white;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bg-walk {
  background-color: #284338;
  background-image: url(\"https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80\");
  background-size: cover;
  background-position: center;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.bg-panel p {
  margin: 0 0 16px;
}

.testimonial {
  background: var(--sand);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 220px;
}

.form-wrap {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(25, 33, 27, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d2c8;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw 80px;
  background: var(--forest);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(16, 20, 18, 0.2);
}

.sticky-cta a {
  color: white;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #d8e0d6;
  padding: 16px 6vw;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.notice {
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
}

.section-image {
  max-width: 420px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .text {
  flex: 1 1 280px;
}

.page-hero .media {
  flex: 1 1 240px;
}

@media (max-width: 840px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
