* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  background-color: #f7f1ec;
  border-bottom: 1px solid #e6ded6;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #f2e3d7;
  padding: 6px 10px;
  border-radius: 18px;
}

.btn,
.link-cta,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn {
  background-color: #2c2b29;
  color: #fff;
}

.btn:hover,
.ghost-btn:hover,
.link-cta:hover {
  transform: translateY(-1px);
}

.ghost-btn {
  background-color: transparent;
  border-color: #2c2b29;
  color: #2c2b29;
}

.link-cta {
  background-color: #f0d4b7;
  color: #2c2b29;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 6% 90px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1770751188011-8ab6c81552bf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
  min-width: 260px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 260px;
  background-color: #e8ded5;
  border-radius: 18px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.info-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-chip {
  background-color: #f0d4b7;
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background-color: #e2d7cc;
  height: 180px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2c2b29;
}

.highlight-panel {
  background-color: #f2e9e0;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.background-band {
  background-image: url("https://images.unsplash.com/photo-1749704647804-81338ade5546?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.background-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 43, 41, 0.5);
}

.background-band .content {
  position: relative;
}

.testimonials {
  background-image: url("https://images.unsplash.com/photo-1560185009-dddeb820c7b7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 28px;
  color: #fff;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 22px;
}

.testimonials .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: 16px;
}

.form-panel {
  background-color: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1c6bb;
  font-size: 1rem;
}

.footer {
  background-color: #2c2b29;
  color: #f7f4f1;
  padding: 30px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2c2b29;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f7f1ec;
  border-top: 1px solid #e0d5c8;
  padding: 16px 6%;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .inline-media {
  flex: 1 1 220px;
  background-color: #e8ded5;
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
}

.image-strip img {
  width: 100%;
  height: 100%;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-banner {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 26px;
  color: #fff;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 22px;
}

.page-banner .content {
  position: relative;
}

.about-banner {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
}

.services-banner {
  background-image: url("https://images.unsplash.com/photo-1648475236583-2e25a6cbf3bd?w=1400&q=80");
}

.contact-banner {
  background-image: url("https://images.unsplash.com/photo-1747538454766-9f4f99a2de8f?w=1400&q=80");
}

.privacy-banner {
  background-image: url("https://images.unsplash.com/photo-1731871688430-a3e509d9227e?w=1400&q=80");
}

.gdpr-banner {
  background-image: url("https://images.unsplash.com/photo-1758548157747-285c7012db5b?w=1400&q=80");
}

.cookies-banner {
  background-image: url("https://images.unsplash.com/photo-1543525324-26e03b510586?w=1400&q=80");
}

.terms-banner {
  background-image: url("https://images.unsplash.com/photo-1639091431832-78b11ba58bbe?w=1400&q=80");
}

.thanks-banner {
  background-image: url("https://images.unsplash.com/photo-1631679706909-1844bbd07221?w=1400&q=80");
}

.muted {
  color: #5b5b5b;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.inline-link:hover {
  color: #1e1e1e;
}

@media (max-width: 800px) {
  .hero {
    padding: 32px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
