* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #ece6de;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #5c5146;
  background-color: #f7f3ef;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav a:hover,
.cta-link:hover,
.primary-btn:hover,
.secondary-btn:hover,
.sticky-cta:hover,
.chip-btn:hover {
  opacity: 0.82;
}

.side-meta {
  font-size: 13px;
  color: #4a3f35;
}

.main {
  flex: 1;
  padding: 32px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  background-color: #f1ece6;
  padding: 32px;
  border-radius: 18px;
}

.hero-copy {
  flex: 1;
}

.hero-copy h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 18px;
  color: #3f362d;
}

.hero-image {
  flex: 1;
  background-color: #d6c9bb;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 360px;
}

.primary-btn,
.secondary-btn,
.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid #1f1f1f;
}

.primary-btn {
  background-color: #1f1f1f;
  color: #f7f3ef;
}

.secondary-btn {
  background-color: transparent;
  color: #1f1f1f;
}

.chip-btn {
  background-color: #e3d8cc;
  border-color: transparent;
}

.section-grid {
  display: flex;
  gap: 24px;
}

.section-grid.reverse {
  flex-direction: row-reverse;
}

.section-grid .text-block {
  flex: 1.2;
}

.section-grid .image-block {
  flex: 1;
  background-color: #d6c9bb;
  border-radius: 16px;
  overflow: hidden;
}

.section-grid .image-block img {
  width: 100%;
  height: 280px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 190px;
  background-color: #d6c9bb;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1f1f1f;
}

.layered {
  background-color: #ede4db;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -40px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.layered h2 {
  margin-top: 0;
}

.image-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.image-strip .strip-item {
  flex: 1 1 160px;
  background-color: #d6c9bb;
  border-radius: 12px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 140px;
}

.form-section {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 24px;
}

.form-section .form-copy {
  flex: 1;
}

.form-section form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c0b6;
  font-size: 14px;
  background-color: #f7f3ef;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 22px;
  background-color: #1f1f1f;
  color: #f7f3ef;
  padding: 12px 18px;
  border-radius: 30px;
  z-index: 10;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #4a3f35;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.disclaimer {
  background-color: #f1ece6;
  padding: 14px 16px;
  border-radius: 12px;
  color: #4a3f35;
}

.page-title {
  font-size: 30px;
  margin: 0;
}

.narrow {
  max-width: 860px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.simple-section {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background-color: #f7f3ef;
}

.service-row .price {
  min-width: 110px;
  text-align: right;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .main {
    padding: 24px;
  }

  .hero,
  .section-grid,
  .form-section {
    flex-direction: column;
  }
}
