/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1e4d3a;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section--tight {
  padding: 48px 0;
}

.section--contrast {
  background: #e9efe6;
}

.section--dark {
  background: #1e2b25;
  color: #f3f6f0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #4b6c5b;
}

.title-xl {
  font-size: 40px;
  line-height: 1.15;
  margin: 16px 0 24px;
}

.title-lg {
  font-size: 32px;
  line-height: 1.2;
  margin: 12px 0 20px;
}

.title-md {
  font-size: 24px;
  margin: 8px 0 16px;
}

.lead {
  font-size: 18px;
  margin-bottom: 24px;
  color: #2b3f35;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  background: #fff2c1;
  color: #5a4b10;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
}

.hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero--forest {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #1f3a2c;
}

.hero--ridge {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-color: #20352f;
}

.hero--valley {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-color: #1d332a;
}

.section-bg--trail {
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2e27;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 26, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #f7f6f2;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  gap: 16px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e4d3a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button--ghost {
  background: transparent;
  border: 1px solid #1e4d3a;
  color: #1e4d3a;
}

.button--light {
  background: #f7f6f2;
  color: #1e2b25;
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-box {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(16, 32, 24, 0.08);
  position: relative;
  top: 24px;
}

.overlap-card {
  background: #1f2a24;
  color: #f7f6f2;
  padding: 26px;
  border-radius: 18px;
  margin-top: -48px;
  max-width: 420px;
}

.image-frame {
  background: #d7e3d9;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-frame--tall {
  height: 360px;
}

.image-frame--wide {
  height: 280px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.card .price {
  font-weight: 700;
  color: #1e4d3a;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.split-band {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.split-band .band {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(16, 32, 24, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d6cc;
  font-size: 15px;
}

.inline-cta {
  font-weight: 600;
  color: #1e4d3a;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 10px 20px rgba(16, 32, 24, 0.2);
}

.footer {
  padding: 36px 0 48px;
  background: #122019;
  color: #d9e2d8;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
}

.footer a {
  color: #d9e2d8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(16, 32, 24, 0.18);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.reference-list a {
  color: #f7f6f2;
}

.muted {
  color: #516458;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dfe8df;
  font-size: 12px;
  color: #355143;
}

@media (max-width: 860px) {
  .asym-row,
  .split-band,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta button {
    width: 100%;
  }
}
