* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1d21;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e3e0dc;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6c5f51;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f3ebe2;
}

.nav-links a:hover {
  background-color: #eadfd2;
}

.hero {
  position: relative;
  padding: 80px 6%;
  color: #ffffff;
  background-color: #1f2a2f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #ffb457;
  color: #1a140c;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #f3a43c;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ffb457;
  color: #ffb457;
}

.btn-outline:hover {
  background-color: rgba(255, 180, 87, 0.15);
}

.section {
  padding: 64px 6%;
}

.section.light {
  background-color: #ffffff;
}

.section.dark {
  background-color: #1f2a2f;
  color: #f7f4f1;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e4d7c7;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(35, 25, 18, 0.08);
}

.card.media-card {
  padding: 0;
  overflow: hidden;
}

.card.media-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .price {
  font-weight: 700;
  color: #6d3b1a;
}

.inline-cta {
  color: #6d3b1a;
  text-decoration: underline;
  cursor: pointer;
}

.inline-cta:hover {
  color: #4c260e;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #f0e4d7;
  font-size: 14px;
}

.testimonial {
  background-color: #f7f4f1;
  border-left: 4px solid #ffb457;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.form-wrap {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(35, 25, 18, 0.1);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c8b8;
  font-size: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1f2a2f;
  color: #f7f4f1;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: none;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover {
  color: #ffb457;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background-color: #141b1f;
  color: #f7f4f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: #c2b8ae;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #ffb457;
}

.cookie-accept:hover {
  background-color: #f3a43c;
}

.cookie-reject {
  background-color: #e8dfd6;
}

.cookie-reject:hover {
  background-color: #d7cdbf;
}

.simple-hero {
  padding: 70px 6% 40px;
  background-color: #1f2a2f;
  color: #f7f4f1;
}

.simple-hero h1 {
  margin: 0;
  font-size: 36px;
}

.page-content {
  padding: 40px 6% 60px;
  background-color: #ffffff;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip .media {
  flex: 1 1 240px;
  min-height: 200px;
}

.background-panel {
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.background-panel .panel-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
    text-align: center;
  }
}
