* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  color: #1e1e1e;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1e1e1e;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fdfbf9;
  border-bottom: 1px solid #e4ded7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: #6b5b4b;
  border: 1px solid #d4c9bd;
  padding: 4px 8px;
  border-radius: 14px;
}

.section {
  padding: 60px 40px;
}

.section-tight {
  padding: 40px 40px 60px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #ddd4c8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.large {
  min-height: 360px;
}

.image-frame.small {
  min-height: 240px;
}

.hero-title {
  font-size: 42px;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  color: #4b3e33;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  background-color: #1e1e1e;
  color: #fdfbf9;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-light {
  background-color: #fdfbf9;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.panel {
  background-color: #fdfbf9;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background-color: #fdfbf9;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
}

.price {
  font-weight: 700;
  color: #2f4b3a;
}

.highlight {
  background-color: #ede4d7;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.metric {
  flex: 1 1 180px;
  background-color: #fdfbf9;
  padding: 18px;
  border-radius: 14px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border: 1px solid #c9bfb4;
  border-radius: 10px;
  font-size: 15px;
  background-color: #fffdfb;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background-color: #1e1e1e;
  color: #f7f2ee;
  padding: 40px;
}

.footer a {
  color: #f7f2ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #2f4b3a;
  color: #fdfbf9;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fdfbf9;
  border: 1px solid #d4c9bd;
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid #1e1e1e;
  background-color: #fdfbf9;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #1e1e1e;
  color: #fdfbf9;
}

.muted {
  color: #6b5b4b;
}

.bg-image {
  background-color: #d9cfc3;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px;
  color: #1e1e1e;
}

.bg-experience {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.list {
  padding-left: 18px;
}

.small-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b5b4b;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    position: static;
    margin: 0 40px 20px auto;
  }
}
