/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --color-primary:    #2D4A2D;   /* Forest Green */
  --color-secondary:  #8B5E3C;   /* Cedar Brown */
  --color-stone:      #A89880;
  --color-cream:      #F4EDE0;
  --color-river:      #7AADBE;

  --color-text:       #3A2E22;
  --color-heading:    #2D4A2D;
  --color-muted:      #7A6A58;
  --color-bg:         #FDFAF6;
  --color-border:     #E0D5C4;

  --color-footer-bg:  #1E3320;
  --color-footer-text:#D6CCB8;

  --font-heading: 'Abril Fatface', Georgia, serif;
  --font-body:    'Merriweather', Georgia, serif;

  --container: 1140px;
  --radius: 6px;
  --shadow-soft: 0 2px 12px rgba(46, 74, 45, 0.08);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-heading); line-height: 1.2; font-weight: 400; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--cream { background: var(--color-cream); }
.section--green { background: var(--color-primary); color: #fff; }
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }

/* ── Header / Nav ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 246, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; position: relative; }
.brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-primary); }
.brand:hover { text-decoration: none; }
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
.nav-menu a { color: var(--color-primary); font-weight: 700; }
.nav-menu a:hover { color: var(--color-secondary); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--color-primary); cursor: pointer; padding: 0.25rem 0.5rem; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-body);
  border: 2px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
  cursor: pointer;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--color-secondary); color: #fff; }
.btn--primary:hover { background: #6f4a2e; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn--outline:hover { background: var(--color-secondary); color: #fff; }
.btn--light { background: #fff; color: var(--color-primary); }
.btn--light:hover { background: var(--color-cream); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding: 2rem 0; text-align: center; }
.site-footer a { color: var(--color-footer-text); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,51,32,0.45) 0%, rgba(30,51,32,0.65) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 6rem 1.5rem; }
.hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 38rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Section heads ───────────────────────────────────────────────────────── */
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.lead--light { color: rgba(255,255,255,0.85); }
.section--green p { color: rgba(255,255,255,0.92); }
.cta-row { margin-top: 2.5rem; }

/* ── Two-column layout ───────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1.4fr; gap: 3rem; } }

/* ── Cabin features ──────────────────────────────────────────────────────── */
.features li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.features li::before {
  content: '\2726';
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ── Cards (hikes & products) ────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(46,74,45,0.12); }
.card h3 { font-size: 1.6rem; }
.card .btn { align-self: flex-start; margin-top: auto; }
.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.reviews { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #fff;
  border-left: 4px solid var(--color-secondary);
  padding: 1.5rem;
  border-radius: var(--radius);
  font-style: italic;
  box-shadow: var(--shadow-soft);
}
.review cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; text-align: center; padding: 0.5rem 0; }
  .nav-menu .btn { display: inline-block; margin: 0.5rem auto; }
  .section { padding: 3rem 0; }
}
