:root {
  --bg: #f5efe4;
  --bg-soft: #fbf7f0;
  --forest: #263121;
  --forest-2: #34412d;
  --ink: #241d17;
  --muted: #685b4f;
  --gold: #cb9541;
  --gold-dark: #a76d28;
  --card: #fffaf2;
  --line: rgba(70, 50, 34, 0.12);
  --shadow: 0 12px 35px rgba(34, 24, 14, 0.15);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 25, 18, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.25));
}

.brand-name {
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1;
}

.brand-sub {
  font-size: 0.76rem;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.95;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d4842a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(203, 149, 65, 0.25);
  white-space: nowrap;
}

.mobile-top-cta {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  background: #1c2418;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05) saturate(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 12, 9, 0.56) 0%, rgba(14, 12, 9, 0.40) 42%, rgba(14, 12, 9, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  padding: 18px 0 24px;
  align-items: start;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.eyebrow-pill {
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1,
.section-head h2,
.moose-copy h2,
.extra-copy h2,
.gear-copy h2,
.cta-band h2,
.alert-card h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.3rem);
  max-width: 780px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  max-width: 700px;
  margin: 10px 0 8px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d47d24);
  color: #fff;
  box-shadow: 0 14px 30px rgba(210, 130, 36, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 12px;
  font-size: 0.92rem;
}

.alert-card {
  background: rgba(251, 247, 240, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-top: 0;
}

.alert-icon {
  font-size: 30px;
}

.alert-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #b86418;
}

.alert-card h2 {
  font-size: 2.2rem;
  line-height: 1.05;
  margin: 10px 0 14px;
}

.alert-card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.alert-card a {
  font-weight: 800;
  color: #ba6418;
}

/* Sections */
.stats-bar {
  background: #efe4d3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 22px 0;
}

.stat {
  padding: 8px;
}

.stat-title {
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.stat-copy {
  color: var(--muted);
}

.section {
  padding: 82px 0;
}

.section-head {
  max-width: 980px;
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  margin: 10px 0 0;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.photo-card,
.wide-card,
.review-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.photo-card img {
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  width: 100%;
}

.photo-card-copy,
.wide-card-copy {
  padding: 18px 18px 22px;
}

.photo-card h3,
.wide-card h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.photo-card p,
.wide-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.moose-section {
  background: linear-gradient(180deg, #f0e6d8, #ecdfcd);
}

.moose-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.moose-copy h2,
.extra-copy h2,
.gear-copy h2,
.cta-band h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 10px 0 14px;
}

.moose-copy p,
.extra-copy p,
.gear-copy p {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 640px;
}

.moose-copy blockquote {
  margin: 24px 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.08;
  color: var(--forest);
}

.moose-copy cite {
  font-style: normal;
  font-weight: 700;
  color: #7b5b37;
}

.moose-image-wrap img,
.gear-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.wide-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.extras-section {
  background: var(--bg-soft);
}

.extras-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.photo-card.tall img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.reviews-section {
  background: #efe4d3;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px;
}

.stars {
  font-size: 1.05rem;
  color: #cb9541;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.reviewer {
  margin-top: 14px;
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(135deg, var(--forest), #314028);
  color: #fff;
}

.cta-band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band .section-kicker {
  color: #d5ab6d;
}

.btn.large {
  padding: 17px 28px;
}

.thumb-gallery {
  padding-top: 28px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #171c14;
  color: #fff;
  padding: 22px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.84);
}

/* Sticky mobile CTA */
.sticky-book-now {
  display: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 10px 0 18px;
    gap: 10px;
  }

  .moose-grid,
  .extras-grid,
  .gear-grid,
  .split-grid,
  .card-grid.three,
  .reviews-grid,
  .stats-grid,
  .thumb-grid {
    grid-template-columns: 1fr 1fr;
  }

  .alert-card {
    max-width: 560px;
  }
}

/* Phone */
@media (max-width: 760px) {

  /* Header */
  .site-header {
    position: relative !important;
  }

  .nav-wrap {
    padding: 8px 12px;
    min-height: 76px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: .95rem;
  }

  .brand-sub {
    font-size: .65rem;
  }

  .mobile-top-cta {
    padding: 10px 14px;
    font-size: .85rem;
    background: linear-gradient(135deg, #cb9541, #a76d28);
    color: #fff;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 8px 0 16px;
    gap: 10px;
  }

  .eyebrow-row {
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1;
    margin-bottom: 8px;
  }

  .hero-text {
    font-size: .95rem;
    margin-bottom: 12px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Layout */
  .stats-grid,
  .card-grid.three,
  .moose-grid,
  .split-grid,
  .extras-grid,
  .gear-grid,
  .reviews-grid,
  .thumb-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .section-head h2 {
    font-size: 1.9rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}