* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1d1f;
  background-color: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1d1d1f;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  background-color: #e5d9c8;
  border-radius: 999px;
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 50%;
}

.split-media {
  flex: 1 1 50%;
}

.image-card {
  background-color: #d9d2c7;
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1517964603305-11c0f6f66012?w=1400&q=80");
  background-color: #d9d2c7;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 340px;
}

.bg-ambient {
  background-image: url("https://images.pexels.com/photos/4498475/pexels-photo-4498475.jpeg");
  background-color: #3a332d;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 28px;
  color: #f7f4f0;
}

.hero-title {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #8b7d70;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background-color: #1d1d1f;
  color: #f7f4f0;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1d1d1f;
  color: #1d1d1f;
  cursor: pointer;
}

.section-note {
  font-size: 14px;
  color: #5a5148;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 16px;
  background-color: #fffaf4;
  border-radius: 14px;
  align-items: center;
}

.service-card img {
  width: 140px;
  height: 100px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: #a24c23;
}

.quote {
  padding: 18px 20px;
  background-color: #efe7dd;
  border-radius: 14px;
  margin-bottom: 14px;
}

.form-card {
  padding: 22px;
  background-color: #fffaf4;
  border-radius: 16px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b6;
  background-color: #fff;
  font-size: 15px;
}

.form-card button {
  align-self: flex-start;
}

.section-bg {
  background-color: #efe7dd;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 40px 0 60px;
  background-color: #1d1d1f;
  color: #f7f4f0;
}

.footer a {
  color: #f7f4f0;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-grid div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  color: #d6cec4;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background-color: #a24c23;
  color: #fffaf4;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #fffaf4;
  border: 1px solid #d7cec4;
  padding: 16px 18px;
  border-radius: 14px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 60px 0 20px;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.content-block {
  padding: 24px 0;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #efe7dd;
  font-size: 12px;
}

@media (max-width: 920px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
