* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1a4b43;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e7e1d8;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 24px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-disclosure {
  background: #efe5d8;
  color: #3a2e22;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cta-button,
button {
  background: #1a4b43;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.ghost-button {
  background: transparent;
  border: 1px solid #1a4b43;
  color: #1a4b43;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-visual,
.image-frame {
  background-color: #d9d0c5;
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e7e1d8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #6a5a45;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece6dd;
}

.service-card img {
  border-radius: 14px;
  height: 160px;
  width: 100%;
}

.price {
  font-weight: 700;
  color: #1a4b43;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #ece6dd;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #ece6dd;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9d0c5;
  font-size: 15px;
  font-family: inherit;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.selected-service {
  font-weight: 600;
  color: #3f5c55;
}

.footer {
  background: #1f2624;
  color: #ffffff;
  padding: 48px 0;
}

.footer a {
  color: #f4dcc0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns > div {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #e7e1d8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1a4b43;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e7e1d8;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.muted {
  color: #6f675a;
}

@media (max-width: 760px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
