:root {
  --ink: #23302d;
  --muted: #63716b;
  --paper: #fffdf7;
  --white: #ffffff;
  --sand: #f3e6bf;
  --sun: #f2bf4a;
  --tent: #4f8f64;
  --tent-dark: #2f6948;
  --sky: #a7dce3;
  --water: #4aa6b7;
  --coral: #dc6f5d;
  --lavender: #d7d3ed;
  --line: #d8dfd2;
  --shadow: rgba(36, 48, 45, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--tent);
  border-radius: 8px;
}

.peg,
.ground-peg,
.score-peg,
.gold-mark {
  display: inline-block;
  width: 6px;
  height: 26px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(42deg);
}

.brand-mark .peg {
  position: absolute;
  left: 15px;
  top: 8px;
  color: var(--white);
}

.bubble {
  position: absolute;
  right: -3px;
  top: 5px;
  width: 13px;
  height: 10px;
  background: var(--sun);
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: center;
  padding: clamp(56px, 9vw, 104px) clamp(20px, 5vw, 72px) clamp(40px, 7vw, 80px);
  background:
    linear-gradient(180deg, rgba(167, 220, 227, 0.55), rgba(255, 253, 247, 0.95)),
    linear-gradient(90deg, var(--paper), #eef8ed);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--tent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.slogan {
  color: var(--tent-dark);
  font-size: 1.2rem;
  font-weight: 850;
}

.button,
.mail-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--sun);
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.hero-scene {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-bottom: 12px solid var(--sand);
}

.tent {
  position: absolute;
  right: 4%;
  bottom: 28px;
  width: min(310px, 72vw);
  aspect-ratio: 1.18;
  background:
    linear-gradient(115deg, transparent 49%, rgba(255, 255, 255, 0.62) 50% 51%, transparent 52%),
    linear-gradient(140deg, var(--tent) 0 50%, var(--tent-dark) 51%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 22px 28px var(--shadow));
}

.tent::after {
  content: "";
  position: absolute;
  left: 45%;
  bottom: 0;
  width: 28%;
  height: 58%;
  background: #f8d77a;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.ground-peg {
  position: absolute;
  bottom: 16px;
  color: var(--coral);
}

.peg-left {
  left: 24%;
}

.peg-right {
  right: 10%;
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.intro,
.about,
.contact,
.stories,
.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
}

.intro,
.stories {
  background: var(--white);
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quick-stats span,
.status-pill,
.gold-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.quick-stats span {
  gap: 5px;
  background: #ecf5e8;
}

.spotlight {
  background: #fbf2d6;
}

.golden-list {
  display: grid;
  gap: 12px;
}

.golden-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(35, 48, 45, 0.14);
}

.gold-mark {
  color: #b8870f;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.camping-list {
  display: grid;
  gap: 14px;
}

.camping-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.camping-card:hover,
.camping-card.is-active {
  border-color: var(--water);
  box-shadow: 0 14px 32px var(--shadow);
  transform: translateY(-1px);
}

.card-topline,
.meta,
.score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.card-topline {
  margin-bottom: 10px;
}

.meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-visited {
  background: #dff0d8;
  color: #315e36;
}

.status-upcoming {
  background: #d7edf1;
  color: #236370;
}

.status-wishlist {
  background: var(--lavender);
  color: #4d4772;
}

.gold-badge {
  background: #f9df85;
  color: #6d5208;
}

.haring-score {
  display: inline-flex;
  gap: 5px;
  min-width: 92px;
}

.score-peg {
  width: 5px;
  height: 22px;
  color: #d0d7cc;
}

.score-peg.is-full {
  color: var(--tent-dark);
}

.score-peg.is-half {
  background: linear-gradient(90deg, var(--tent-dark) 0 50%, #d0d7cc 51%);
}

.map-panel {
  position: sticky;
  top: 92px;
}

.map-heading h2 {
  font-size: 1.55rem;
}

.map-surface {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.32) 25% 27%, transparent 28%),
    radial-gradient(circle at 35% 44%, rgba(79, 143, 100, 0.28) 0 13%, transparent 14%),
    radial-gradient(circle at 58% 58%, rgba(79, 143, 100, 0.28) 0 11%, transparent 12%),
    linear-gradient(135deg, #bfe7ec, #eef7e9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 4px;
  box-shadow: 0 7px 18px rgba(32, 48, 47, 0.24);
  cursor: pointer;
  transform: rotate(-45deg);
}

.map-pin.is-active {
  outline: 3px solid rgba(242, 191, 74, 0.72);
}

.selected-camping {
  margin-top: 14px;
  padding: 18px;
  background: var(--sand);
  border-radius: 8px;
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .intro,
  .about,
  .contact,
  .stories,
  .spotlight,
  .split {
    display: block;
  }

  .nav {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-scene {
    min-height: 250px;
    margin-top: 22px;
  }

  .camping-list {
    margin-bottom: 24px;
  }

  .map-panel {
    position: static;
  }

  .map-surface {
    min-height: 310px;
  }
}
