* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw;
  background: #f7f5f2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid #1c1c1c;
  border-radius: 999px;
  white-space: nowrap;
}

.section {
  padding: 70px 6vw;
}

.section.compact {
  padding: 40px 6vw;
}

.section.dark {
  background: #111111;
  color: #f7f5f2;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  min-width: 280px;
}

.split .visual {
  flex: 1;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
}

.lead {
  font-size: 20px;
  margin-top: 12px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #f7f5f2;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1c1c1c;
}

.btn.light {
  background: #f7f5f2;
  color: #1c1c1c;
  border-color: #f7f5f2;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.image-frame {
  background-color: #ddd8d1;
  padding: 12px;
  border-radius: 18px;
}

.card-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #1a1a1a;
  color: #f7f5f2;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  background: #ede9e2;
  font-size: 12px;
}

.inline-link {
  text-decoration: underline;
  cursor: pointer;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d2cc;
  font-size: 14px;
  background: #faf9f7;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer {
  padding: 40px 6vw 70px;
  background: #0d0d0d;
  color: #f7f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer-links a {
  color: #f7f5f2;
}

.disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: #c9c4bc;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1c1c1c;
  color: #f7f5f2;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: #f7f5f2;
  color: #1c1c1c;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sticky-cta button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7f5f2;
  border-top: 1px solid #d8d3cb;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #f7f5f2;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1c1c1c;
}

.cookie-actions button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-structure {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(13, 13, 13, 0.6);
  padding: 70px 6vw;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
