* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1b;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  padding: 28px 8vw 18px;
  background: #f1eae4;
  position: relative;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #5a4a42;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: #1f1d1b;
  text-decoration: none;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 60px 8vw 80px;
  position: relative;
}

.hero-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 44px;
  margin: 0;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 48%;
  background: #d7cdc3;
  padding: 14px;
  margin-top: 28px;
  align-self: flex-end;
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #1f1d1b;
}

.btn {
  background: #1f1d1b;
  color: #f7f3ef;
}

.btn-outline {
  background: transparent;
  color: #1f1d1b;
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section h2 {
  font-size: 30px;
  margin: 0;
}

.section-alt {
  background: #efe7df;
}

.split-asym {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split-asym.reverse {
  flex-direction: row-reverse;
}

.split-asym .media-box {
  flex: 1 1 45%;
  background: #d2c6bb;
  padding: 12px;
}

.split-asym .content-box {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 18px;
  min-width: 230px;
}

.service-card .media-box {
  background: #e2dad3;
  height: 160px;
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 600;
  color: #3a2f28;
}

.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.process-step {
  flex: 1 1 220px;
  background: #fdfbf9;
  padding: 18px;
  border-left: 3px solid #1f1d1b;
}

.quote-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #f8f5f2;
  padding: 16px;
  border-radius: 16px;
  font-style: italic;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f3ef;
  position: relative;
}

.bg-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.62);
}

.bg-story .section-content {
  position: relative;
  z-index: 1;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
}

select,
input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #bfb4ab;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1d1b;
  padding: 12px 18px;
  border-radius: 999px;
}

.sticky-cta a {
  color: #f7f3ef;
  text-decoration: none;
  font-size: 14px;
}

.legal-hero {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 50px 8vw 30px;
}

.legal-hero .media-box {
  flex: 1 1 40%;
  background: #d6ccc2;
  padding: 10px;
}

.legal-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.legal-body {
  padding: 10px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
}

.footer {
  margin-top: auto;
  padding: 30px 8vw 40px;
  background: #1f1d1b;
  color: #f7f3ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7f3ef;
  text-decoration: none;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f1eae4;
  padding: 16px 8vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 10;
}

.cookie-banner button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1f1d1b;
  cursor: pointer;
  background: #1f1d1b;
  color: #f7f3ef;
}

.cookie-banner .reject {
  background: transparent;
  color: #1f1d1b;
}

@media (max-width: 900px) {
  .hero,
  .split-asym,
  .legal-hero {
    flex-direction: column;
  }

  .hero-media {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
    display: flex;
  }
}
