:root {
  --bg: #f4f1ea;
  --paper: #fffdf7;
  --ink: #22312d;
  --muted: #65716d;
  --line: #ded8cc;
  --green: #2f5d50;
  --green-dark: #183d35;
  --reed: #b58b45;
  --shadow: 0 18px 45px rgba(30, 40, 36, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-dark);
  background: #e9efe8;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 30, 26, 0.72), rgba(12, 30, 26, 0.28) 46%, rgba(12, 30, 26, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 90px clamp(20px, 6vw, 72px);
  color: #fffdf7;
}

.hero h1,
.page-title h1,
.split-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.hero p,
.page-title p,
.split-hero p {
  max-width: 640px;
  margin: 0;
  font-size: 18px;
}

.eyebrow,
.meta {
  margin: 0 0 8px;
  color: var(--reed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1cc82;
}

.section,
.page-title,
.split-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 26px;
}

.section h2,
.article-row h2,
.gear-grid h2,
.places-list h2 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.grid {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.quiet-box,
.gear-grid article,
.places-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
}

.card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body,
.note-card {
  padding: 20px;
}

.card h3,
.quiet-box h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.card h3 a {
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--green);
}

.card p,
.quiet-box p,
.article-row p,
.gear-grid p,
.places-list p {
  margin: 0;
  color: var(--muted);
}

.note-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.compact {
  padding-top: 20px;
}

.two-column,
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.quiet-box {
  padding: 24px;
}

.quiet-box ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: #dbe6df;
  background: var(--green-dark);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.page {
  padding-bottom: 30px;
}

.page-title {
  padding: 66px 0 12px;
}

.page-title h1 {
  color: var(--green-dark);
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.split-hero {
  padding: 58px 0 8px;
}

.split-hero.reverse img {
  order: -1;
}

.split-hero img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gear-grid,
.places-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gear-grid article,
.places-list article {
  padding: 24px;
}

.gear-grid img {
  margin-bottom: 16px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 520px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(12, 30, 26, 0.78), rgba(12, 30, 26, 0.2));
  }

  .hero-content {
    padding: 76px 22px 52px;
  }

  .cards,
  .two-column,
  .split-hero,
  .gear-grid,
  .places-list,
  .article-row {
    grid-template-columns: 1fr;
  }

  .split-hero.reverse img {
    order: 0;
  }

  .article-row img,
  .split-hero img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 18px;
  }

  .hero h1,
  .page-title h1,
  .split-hero h1 {
    font-size: 36px;
  }

  .hero p,
  .page-title p,
  .split-hero p {
    font-size: 16px;
  }

  .section {
    padding: 42px 0;
  }
}
