* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #d6d2cb;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  padding: 20px 0;
  background-color: #f6f4f1;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  background-color: #1b1b1b;
  color: #f6f4f1;
  padding: 6px 10px;
  border-radius: 20px;
}

.cta-button,
.ghost-button {
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.cta-button {
  background-color: #1b1b1b;
  color: #f6f4f1;
}

.ghost-button {
  background-color: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 70px 0;
}

.backdrop-section {
  background-image: url("https://images.unsplash.com/photo-1488747279002-c8523379faaa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.backdrop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(246, 244, 241, 0.88);
}

.backdrop-section > * {
  position: relative;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-text h1,
.split-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.split-text h3 {
  font-size: 24px;
}

.muted {
  color: #5a5a5a;
}

.highlight {
  background-color: #f0e7db;
  padding: 20px;
  border-radius: 16px;
}

.image-frame {
  background-color: #d6d2cb;
  border-radius: 18px;
  overflow: hidden;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 16px;
}

.service-card img {
  width: 110px;
  height: 80px;
  border-radius: 12px;
}

.price-tag {
  font-weight: 700;
  font-size: 16px;
}

.split-media .panel {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7c2bb;
  font-size: 14px;
  font-family: inherit;
  background-color: #fffdf9;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonial {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

footer {
  margin-top: auto;
  padding: 50px 0 70px;
  background-color: #1b1b1b;
  color: #f6f4f1;
}

footer a {
  color: #f6f4f1;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.small-text {
  font-size: 13px;
  color: #d6d2cb;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 12;
}

.cookie-banner p {
  font-size: 13px;
  max-width: 420px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-page {
  padding: 50px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-page h1 {
  font-size: clamp(30px, 4vw, 44px);
}

.simple-page section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col .panel {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
