* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2326;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: #1f2326;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #f1eee7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #b9b1a6;
  border-radius: 999px;
  background: #f8f2e6;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #efe8dc;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #5d6164;
}

h1,
h2,
h3 {
  margin: 10px 0 14px;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2f5d41;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: #b24a1d;
}

.btn.light {
  background: #f6f1e7;
  color: #1f2326;
  border: 1px solid #b9b1a6;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  padding: 16px;
  background: #f7f5f1;
  border: 1px solid #d8d1c6;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.mini-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #d8d1c6;
  align-items: center;
}

.mini-card .image-frame {
  flex: 0 0 140px;
  height: 110px;
}

.service-name {
  font-weight: 600;
}

.price {
  font-weight: 700;
  color: #2f5d41;
  white-space: nowrap;
}

.image-frame {
  background: #dcd3c7;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote {
  padding: 18px;
  border-left: 3px solid #2f5d41;
  background: #f7f5f1;
}

.form-card {
  padding: 26px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #d8d1c6;
  max-width: 480px;
}

.form-card label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  font-size: 1rem;
  background: #fdfbf7;
}

.inline-link {
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f2326;
  color: #f6f1e7;
}

.footer a {
  color: #f6f1e7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: flex-start;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #d6d0c8;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 6vw;
  background: rgba(31, 35, 38, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #f6f1e7;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #d8d1c6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  max-width: 520px;
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.muted {
  color: #5d6164;
}

.page-title {
  max-width: 620px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #d8d1c6;
}

.content-block {
  max-width: 680px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.background-slab {
  position: relative;
  overflow: hidden;
}

.background-slab .bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: #dcd3c7;
}

.background-slab .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-slab .content {
  position: relative;
}
