* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3f0;
  --ink: #2a2725;
  --muted: #5b5551;
  --accent: #b1466c;
  --accent-dark: #8a3455;
  --soft: #efe4dd;
  --panel: #ffffff;
  --leaf: #365a3c;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 10px;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
}

.nav-links a {
  padding: 4px 0;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 6vw 90px;
  background-color: #3b2b34;
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(34, 25, 30, 0.75), rgba(34, 25, 30, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 22px;
  color: #f4ebef;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
}

.section {
  padding: 70px 6vw;
}

.section.shift-left {
  margin-right: 8vw;
}

.section.shift-right {
  margin-left: 8vw;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.img-wrap {
  background: #ead9d4;
  border-radius: 16px;
  overflow: hidden;
}

.img-wrap.narrow {
  min-width: 260px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

.floating-block {
  position: relative;
  background: var(--soft);
  padding: 28px;
  border-radius: 18px;
}

.floating-block::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 18px;
  width: 60px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

.trust {
  position: relative;
  color: #ffffff;
  background-color: #352c31;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 35, 40, 0.7);
}

.trust-content {
  position: relative;
  z-index: 1;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 240px;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cbc4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: var(--leaf);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #efe6e0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    align-items: flex-start;
    text-align: left;
  }

  .section.shift-left,
  .section.shift-right {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
