* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1c1c1c;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 6%;
  background-color: #f2ece6;
  border-bottom: 1px solid #d9d2c9;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 13px;
  color: #5a5147;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 520px;
}

.hero-text,
.hero-visual {
  flex: 1 1 50%;
  padding: 56px 6%;
}

.hero-visual {
  background-color: #cbbfb0;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 20, 18, 0.35);
}

.hero-visual .hero-overlay {
  position: relative;
  color: #ffffff;
  max-width: 320px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  padding: 12px 18px;
  background-color: #2d4b4f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background-color: #d4c7b4;
  color: #1c1c1c;
}

.section {
  padding: 56px 6%;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .split-text,
.split .split-media {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #d9d2c9;
  padding: 12px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border: 1px solid #ded7cd;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-image {
  background-color: #e4ddd2;
  padding: 8px;
}

.price {
  font-weight: 700;
  color: #2d4b4f;
}

.highlight {
  background-color: #ede6dd;
  border-left: 4px solid #2d4b4f;
  padding: 18px;
}

.layered {
  background-color: #4a4a4a;
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 20, 0.6);
}

.layered-content {
  position: relative;
  max-width: 780px;
}

.inline-link {
  text-decoration: underline;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 28px;
  border: 1px solid #ded7cd;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #cfc6bb;
  font-size: 14px;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-selector button {
  background-color: #ffffff;
  border: 1px solid #2d4b4f;
  padding: 10px 12px;
  cursor: pointer;
}

.status {
  font-size: 14px;
  color: #2d4b4f;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  background-color: #2d4b4f;
  color: #ffffff;
  padding: 12px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}

footer {
  background-color: #f2ece6;
  padding: 32px 6%;
  border-top: 1px solid #d9d2c9;
  font-size: 14px;
}

.footer-cols {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #ffffff;
  border: 1px solid #d8d1c6;
  padding: 16px;
  max-width: 280px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.page-hero {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .page-image {
  flex: 1 1 320px;
  background-color: #d9d2c9;
  padding: 12px;
}

.page-hero .page-text {
  flex: 1 1 320px;
}

.legal-content {
  background-color: #ffffff;
  padding: 24px;
  border: 1px solid #ded7cd;
}

@media (max-width: 900px) {
  .hero-text,
  .hero-visual {
    flex: 1 1 100%;
  }
}
