* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dfe7e2;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  color: #ffffff;
  padding: 110px 0 90px;
  background-color: #1c1c1c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  max-width: 520px;
  background: rgba(18, 18, 18, 0.72);
  padding: 28px 32px;
  border-radius: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f2c14e;
  color: #1c1c1c;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: #1c1c1c;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.bg-soft {
  background: #ffffff;
}

.section.bg-forest {
  color: #ffffff;
  background-color: #1f2a24;
}

.section.bg-forest::before,
.section.bg-city::before,
.section.bg-slate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.92;
}

.section.bg-forest > *,
.section.bg-city > *,
.section.bg-slate > * {
  position: relative;
}

.section.bg-city {
  color: #ffffff;
  background-color: #2f3a3f;
}

.section.bg-slate {
  color: #ffffff;
  background-color: #2a2a2a;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media-block {
  flex: 1 1 320px;
  min-width: 280px;
  transform: translateY(-18px);
}

.image-frame {
  background-color: #e7e0d7;
  padding: 10px;
  border-radius: 18px;
}

.image-frame.dark {
  background-color: #2a2a2a;
}

.offset-card {
  background: #fff4e3;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  margin-left: auto;
}

.floating-note {
  background: #dfe7e2;
  padding: 20px 24px;
  border-radius: 18px;
  max-width: 360px;
  margin-top: 22px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #36524d;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.list-item {
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d2cf;
  font-size: 15px;
}

.notice {
  font-size: 14px;
  color: #4c4c4c;
}

.footer {
  padding: 40px 0 60px;
  background: #141414;
  color: #f0f0f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  margin-top: 18px;
  color: #cfcfcf;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #36524d;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #1c1c1c;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 14px;
}

/* Backgrounds per page to keep unique IDs */
.page-home .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.page-home .bg-forest::before {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.page-home .bg-city::before {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.page-home .bg-slate::before {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.page-about .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

.page-about .bg-city::before {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
}

.page-services .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.page-services .bg-slate::before {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
}

.page-contact .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.page-privacy .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1507537297725-24a1c029d3ca?w=1400&q=80");
}

.page-gdpr .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.page-cookies .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
}

.page-terms .bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
}

.page-thanks .bg-hero::before {
  background-image: url("https://images.pexels.com/photos/29406945/pexels-photo-29406945.jpeg");
}

.compact {
  max-width: 860px;
}
