* {
  box-sizing: border-box;
}

:root {
  --sand: #f4f0ea;
  --forest: #1f3a33;
  --moss: #4c6b5a;
  --stone: #e7e0d6;
  --sun: #d79b45;
  --ink: #1a1f1d;
  --mist: #f7f6f3;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

header {
  padding: 24px 7vw;
  background: var(--mist);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--stone);
  color: var(--forest);
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 7vw 80px;
}

section {
  padding: 32px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  padding-top: 10px;
}

.hero .panel {
  justify-content: center;
}

.image-panel {
  min-height: 320px;
  border-radius: 20px;
  background-color: #d4d8d2;
  background-size: cover;
  background-position: center;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.trail-image {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=800&q=80");
}

.forest-image {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=800&q=80");
}

.workshop-image {
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=800&q=80");
}

.services-image {
  background-image: url("https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?w=800&q=80");
}

.contact-image {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=800&q=80");
}

.thanks-image {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=800&q=80");
}

.img-frame {
  background-color: #d9d6cf;
  border-radius: 16px;
  overflow: hidden;
  display: inline-flex;
  align-self: flex-start;
}

.img-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.max-360 {
  max-width: 360px;
}

.accent {
  color: var(--moss);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  color: var(--forest);
}

.inline-link {
  color: var(--moss);
  font-weight: 600;
  text-decoration: underline;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: var(--sand);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.band {
  background: var(--stone);
  border-radius: 24px;
  padding: 24px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e3ded5;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c4ba;
  font-size: 1rem;
}

.form-wrap button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  background: var(--sun);
  color: #2d1b07;
  font-weight: 700;
  cursor: pointer;
}

footer {
  background: var(--forest);
  color: #f9f6f0;
  padding: 32px 7vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f6e7cf;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #c9c4ba;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 40;
  max-width: 520px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.alt {
  background: transparent;
  color: var(--forest);
}

.notice {
  background: #fff6e5;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #ead6b3;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-body h2 {
  margin-bottom: 0;
}

.muted {
  color: #4d4d4d;
}

@media (max-width: 820px) {
  header,
  main,
  footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
