:root {
  --bg: #f5f1e8;
  --panel: #fffaf0;
  --panel-strong: #fff6df;
  --ink: #18211d;
  --muted: #5d675f;
  --green: #1e5b43;
  --green-dark: #123a2d;
  --blue: #275f84;
  --rust: #9d4f30;
  --gold: #d4a83f;
  --line: rgba(24, 33, 29, 0.16);
  --shadow: rgba(28, 34, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(245, 241, 232, 0.86), rgba(245, 241, 232, 0.94)),
    url("assets/northwoods-cabin-lake-hero.png") center top / cover fixed;
  line-height: 1.55;
}

a {
  color: inherit;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(90deg, rgba(18, 58, 45, 0.88), rgba(18, 58, 45, 0.58), rgba(39, 95, 132, 0.34)),
    url("assets/northwoods-cabin-lake-hero.png") center / cover;
  color: #fffaf0;
}

.topbar {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.9;
}

.topbar a:hover {
  opacity: 1;
}

.hero-content {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px 86px;
  align-self: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 10vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.92);
  font-size: 1.22rem;
}

.hero-actions,
.activity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.activity-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 250, 240, 0.54);
  border-radius: 6px;
  color: #fffaf0;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -44px 0 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 44px var(--shadow);
}

.intro div {
  padding: 26px;
  background: var(--panel);
}

.stat,
.label {
  display: block;
}

.stat {
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.label {
  color: var(--muted);
  font-weight: 750;
}

.section {
  margin-top: 64px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.activity {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 30px rgba(28, 34, 30, 0.08);
}

.activity.feature {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(227, 241, 234, 0.96));
}

.tag {
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.45rem;
  line-height: 1.15;
}

.activity p:not(.tag) {
  color: var(--muted);
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 0;
}

dt {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 720;
}

.activity-actions {
  align-content: end;
}

.activity-actions a {
  border-color: rgba(30, 91, 67, 0.2);
  background: var(--green);
  color: #fffaf0;
}

.activity-actions a:nth-child(2) {
  background: transparent;
  color: var(--green-dark);
}

.schedule,
.notes {
  padding: 32px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid var(--line);
}

ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

li:first-child {
  border-top: 0;
}

li span {
  display: inline-block;
  min-width: 96px;
  color: var(--green);
  font-weight: 900;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.note-grid p {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
}

@media (max-width: 820px) {
  .topbar {
    justify-content: flex-start;
  }

  .intro,
  .activity-grid,
  .activity.feature,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    margin-top: -28px;
  }

  dl {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 14px;
    padding-inline: 18px;
  }

  .topbar a {
    font-size: 0.74rem;
  }

  .hero-content,
  main {
    padding-inline: 18px;
  }

  .activity,
  .schedule,
  .notes {
    padding: 20px;
  }

  .hero-actions a,
  .activity-actions a {
    width: 100%;
  }
}
