:root {
  --forest: #214e3b;
  --forest-dark: #17382c;
  --sage: #dce8d7;
  --sand: #f4f0e6;
  --cream: #fffdf7;
  --water: #2f6e89;
  --earth: #6a5940;
  --ink: #263026;
  --muted: #687164;
  --line: rgba(33, 78, 59, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(47, 110, 137, 0.12), transparent 35%),
    var(--sand);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.hero {
  min-height: calc(100vh - 48px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 24px 80px rgba(33, 78, 59, 0.1);
  backdrop-filter: blur(14px);
}

.nav,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: var(--forest);
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--forest);
  font-size: 13px;
}

.social-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  min-height: 680px;
  padding: 50px 0 36px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--earth);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--forest-dark);
}

h1 span {
  display: block;
  color: var(--forest);
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.feature-icon {
  color: var(--earth);
}

.feature-icon.water {
  color: var(--water);
}

.feature-icon.trip {
  color: var(--forest);
}

.status-card {
  max-width: 560px;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(220, 232, 215, 0.45);
}

.status-label {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--forest);
}

.status-text {
  margin: 0;
  line-height: 1.5;
}

.visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(to bottom, #dbe8ed 0%, #e9efe4 58%, #d3c8a8 100%);
  box-shadow: inset 0 0 0 1px rgba(33, 78, 59, 0.08);
}

.sun {
  position: absolute;
  top: 62px;
  right: 74px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #f3cb71;
  box-shadow: 0 0 0 22px rgba(243, 203, 113, 0.16);
}

.mountain {
  position: absolute;
  bottom: 88px;
  left: 50%;
  width: 560px;
  height: 330px;
  transform: translateX(-50%);
  clip-path: polygon(0 100%, 20% 63%, 33% 75%, 52% 24%, 71% 67%, 81% 54%, 100% 100%);
}

.mountain-back {
  bottom: 116px;
  background: #91a693;
  opacity: 0.8;
}

.mountain-front {
  background: #31563a;
}

.trail {
  position: absolute;
  bottom: -48px;
  left: 50%;
  width: 190px;
  height: 310px;
  transform: translateX(-50%) rotate(10deg);
  border-radius: 50%;
  background: #d9c591;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.12);
}

.marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(23, 56, 44, 0.18);
}

.marker-one {
  top: 236px;
  left: 58px;
}

.marker-two {
  top: 142px;
  right: 44px;
}

.marker-three {
  right: 84px;
  bottom: 112px;
}

.marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.marker-dot.cathole {
  background: var(--earth);
}

.marker-dot.water {
  background: var(--water);
}

.marker-dot.trip {
  background: var(--forest);
}

.footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .visual {
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 10px;
  }

  .hero {
    min-height: calc(100vh - 20px);
    padding: 20px 18px;
    border-radius: 20px;
  }

  .hero-grid {
    gap: 34px;
    padding: 38px 0 28px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .intro {
    font-size: 18px;
  }

  .visual {
    min-height: 390px;
    border-radius: 22px;
  }

  .mountain {
    width: 430px;
    height: 280px;
  }

  .marker-one {
    top: 205px;
    left: 20px;
  }

  .marker-two {
    top: 112px;
    right: 18px;
  }

  .marker-three {
    right: 28px;
    bottom: 90px;
  }

  .footer {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
}
