* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f0;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d9d3c8;
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 16px;
  background-color: #e8dfd0;
}

.hero {
  padding: 30px 0 50px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d5dbe3;
  min-height: 320px;
}

.section {
  padding: 64px 0;
}

.section.tint {
  background-color: #efe9df;
}

.section.dark {
  background-color: #1c2a33;
  color: #f7f3ee;
}

.section.scenic {
  background-color: #23333d;
  background-image: url("https://images.unsplash.com/photo-1482192505345-5655af888cc4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f3ee;
}

.section.scenic .notice {
  background-color: rgba(28, 42, 51, 0.78);
  color: #f7f3ee;
}

.section .tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c675f;
}

.section.dark .tag {
  color: #d1c7bb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1c2a33;
  color: #f7f3ee;
  font-size: 14px;
  border: none;
}

.btn.light {
  background-color: #f7f3ee;
  color: #1c2a33;
  border: 1px solid #f7f3ee;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.1);
}

.card .thumb {
  border-radius: 12px;
  overflow: hidden;
  background-color: #cfd6db;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: #1c2a33;
}

.section.dark .price {
  color: #f7f3ee;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #bfb5a5;
  font-size: 13px;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background-color: rgba(233, 205, 165, 0.55);
  z-index: 0;
}

.layered .content {
  position: relative;
  z-index: 1;
}

.form-panel {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 32px rgba(28, 42, 51, 0.18);
}

.form-panel fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-panel input,
.form-panel select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b4;
  font-size: 14px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background-color: #1c2a33;
  color: #f7f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.2);
}

.footer {
  padding: 40px 0;
  font-size: 13px;
  color: #5f5a52;
  border-top: 1px solid #d9d3c8;
  background-color: #f2eee7;
}

.footer .cols {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer .col {
  flex: 1;
  min-width: 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.2);
  max-width: 320px;
  z-index: 12;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.cookie-accept {
  background-color: #1c2a33;
  color: #f7f3ee;
}

.cookie-reject {
  background-color: #e8dfd0;
  color: #1b1b1b;
}

.page-hero {
  padding: 40px 0;
}

.page-hero h1 {
  margin: 0 0 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice {
  background-color: #f7f3ee;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d8d0c3;
}

.references a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 24px auto 0;
  }
}
