/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1d1d1f;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 16px;
  background: #ebe7df;
}

.nav-toggle {
  display: none;
  border: 1px solid #1d1d1f;
  background: transparent;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #f2d9a6;
}

.hero {
  background: #102a21 url("https://images.pexels.com/photos/33621635/pexels-photo-33621635.jpeg") center/cover no-repeat;
  color: #fff;
  padding: 90px 0 80px;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

.hero-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1d1f;
  padding: 22px;
  border-radius: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 20px;
  background: #1d1d1f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #e3a83f;
  color: #1d1d1f;
}

.section {
  padding: 70px 0;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d3c7;
}

.media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .media {
  height: 160px;
}

.band {
  background: #efe9df;
}

.band-dark {
  background: #1f2a1f;
  color: #f8f4ec;
}

.band-dark a {
  color: #f8f4ec;
}

.quote {
  font-style: italic;
  background: #fff7e6;
  padding: 20px;
  border-radius: 16px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border-radius: 14px;
  gap: 10px;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc7b8;
  font-size: 14px;
  background: #faf8f4;
}

.footer {
  padding: 40px 0 80px;
  font-size: 13px;
  color: #5a5a5a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d1d1f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e1d9c9;
  padding: 16px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.hero-note {
  font-size: 14px;
  opacity: 0.9;
}

.bg-route {
  background: #e7e1d6 url("https://images.pexels.com/photos/37424003/pexels-photo-37424003.jpeg") center/cover no-repeat;
}

.bg-map {
  background: #25303a url("https://images.pexels.com/photos/18188341/pexels-photo-18188341.jpeg") center/cover no-repeat;
  color: #fff;
}

.bg-forest {
  background: #f0f4ec url("https://images.pexels.com/photos/3905838/pexels-photo-3905838.jpeg") center/cover no-repeat;
}

.note {
  font-size: 13px;
  color: #4f4f4f;
}

@media (max-width: 900px) {
  .hero-inner,
  .split {
    flex-direction: column;
  }

  .hero-card {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    position: absolute;
    right: 4vw;
    top: 70px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
