* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1f24;
  background-color: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #1b3a57;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e4ded6;
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  background-color: #f1e6d8;
  color: #5a3d20;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-image {
  flex: 1 1 420px;
  background-color: #d4d6da;
  border-radius: 18px;
  overflow: hidden;
}

.lead {
  font-size: 20px;
}

.section {
  padding: 52px 24px;
}

.section-muted {
  background-color: #ffffff;
}

.section-contrast {
  background-color: #efe4d5;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #1b1f24;
  background-color: #d4d6da;
}

.bg-travel {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.bg-river {
  background-image: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1400&q=80");
}

.mag-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.column-wide {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.column-narrow {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  background-color: #dfe3e8;
  border-radius: 14px;
  overflow: hidden;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #6b5a4a;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1b3a57;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1b3a57;
  border: 1px solid #1b3a57;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e5dfd7;
}

.card img {
  border-radius: 12px;
  height: 160px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #274c6b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1b3a57;
}

.quote {
  border-left: 3px solid #1b3a57;
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e5dfd7;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c1b7;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  background-color: #141a1f;
  color: #f7f4f0;
  padding: 40px 24px;
}

.footer a {
  color: #f7f4f0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e1d9cf;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e5dfd7;
}

.split-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.split-note .note-text {
  flex: 1 1 320px;
}

.split-note .note-media {
  flex: 1 1 280px;
  background-color: #dfe3e8;
  border-radius: 14px;
  overflow: hidden;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-title {
  font-size: 36px;
  line-height: 1.2;
}

.subtle {
  color: #6b5a4a;
}

.centered {
  text-align: center;
}

@media (max-width: 860px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
