* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b1d;
  --muted: #6b5f64;
  --accent: #c67d8b;
  --accent-dark: #9a5a67;
  --soft: #f6ecef;
  --sand: #f2efe9;
  --line: #eadfe3;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 720px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 6vw 70px;
  gap: 30px;
  background-color: #d7c7ce;
  background-image: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 16, 20, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.soft {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 2rem;
  max-width: 720px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media-block {
  flex: 1 1 280px;
  background: #d7c7ce;
  padding: 14px;
  border-radius: 18px;
}

.media-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #d7c7ce;
}

.inline-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #d7c7ce;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d7c7ce;
}

.card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 220px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed var(--line);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.testimonial {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: var(--white);
}

.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-btn.secondary {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.simple-hero {
  padding: 70px 6vw 40px;
  background-color: #d7c7ce;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1595051665600-afd01ea7c446?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1512207855369-643452a63d46?w=1400&q=80");
}

.simple-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 16, 20, 0.55);
}

.simple-hero h1,
.simple-hero p {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.legal-section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-section h2 {
  font-size: 1.6rem;
}

.legal-section ul {
  padding-left: 18px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
