* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #182319;
  background: #f7f6f2;
  --accent: #2f6f4e;
  --accent-soft: #e3efe7;
  --ink-soft: #50605a;
  --panel: #ffffff;
  --sand: #efe7db;
  --shadow: 0 18px 40px rgba(24, 35, 25, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  background: var(--sand);
  color: #1e2a22;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 48px;
  background: #f2efe7;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #d9e2d8;
  color: #354238;
}

.cta-pill {
  background: var(--accent);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

main {
  flex: 1;
}

.section {
  padding: 64px 48px;
}

.section.tight {
  padding: 48px;
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2,
.panel h3 {
  font-weight: 600;
  letter-spacing: -0.3px;
}

.panel h1 {
  font-size: 38px;
  margin-bottom: 18px;
}

.panel h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.panel h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f3f2f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.image-frame {
  background: #d7e0d6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tall {
  height: 360px;
}

.image-medium {
  height: 280px;
}

.image-short {
  height: 220px;
}

.tag-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.spaced-top {
  margin-top: 16px;
}

.tag {
  background: #e7ece7;
  color: #3c4b42;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.highlight-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-thumb {
  width: 110px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #d7e0d6;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #1f3f2f;
  margin-top: 6px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.stat {
  background: #ecf1ec;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.bg-panel {
  background: #cfe0d3;
  border-radius: 20px;
  padding: 32px;
  color: #1f2d25;
}

.bg-garden {
  background-color: #cfd9cc;
  background-image: url("https://images.unsplash.com/photo-1767617549039-e34a5ff149e4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-garden::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 34, 24, 0.55);
}

.bg-garden .panel {
  position: relative;
  z-index: 1;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: #3d4c44;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7d0c7;
  background: #fefefe;
  font-size: 14px;
}

button {
  border: none;
  background: #2c5a41;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1f3f2f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 32px 48px;
  background: #e9e3d6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #3e4a43;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 14px;
  font-size: 13px;
}

.simple-page {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-page h1 {
  font-size: 34px;
}

.simple-page p {
  color: var(--ink-soft);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  background: #edf3ed;
  padding: 14px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .site-header,
  .section,
  .simple-page,
  .site-footer {
    padding: 32px 24px;
  }

  .panel h1 {
    font-size: 30px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
[hidden] {
  display: none !important;
}