/* =========================================================
   CANADA NORTH LODGE — Ridgeline base, custom palette
   Copper accent + lake-water navy secondary on cream.
   No green anywhere per client direction.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #F8F5EE;
  --bg-alt: #EFEAE0;
  --bg-dark: #0F1A26;
  --bg-darker: #0A1119;
  --ink: #16202C;
  --ink-soft: #2A3441;
  --muted: #6E6A60;
  --line: #D9D3C5;
  --accent: #C0782A;       /* copper / sunset on water */
  --accent-dark: #9A5E1F;
  --accent-2: #1B2A3C;     /* deep lake-water navy */
  --accent-2-soft: #3A4D63;
  --white: #FFFFFF;

  --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  --s-subtle: 0 2px 8px -2px rgba(26, 31, 28, 0.08);
  --s-card:   0 10px 30px -10px rgba(26, 31, 28, 0.22);
  --s-hover:  0 22px 48px -14px rgba(26, 31, 28, 0.35);
  --s-deep:   0 30px 60px -20px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
  --t-slow: 520ms;

  --container: 1240px;
  --nav-h: 84px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h, 92px) + 24px); }
body {
  margin: 0;
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
  background: var(--bg) !important;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; border-radius: var(--r-md); }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; letter-spacing: -0.025em; }
/* MB widget injects a normalize `h1 { font-size: 2em }` rule that ties on
   specificity (0,0,1) and wins on source order. Pin hero h1 with higher
   specificity AND !important so the title doesn't collapse. */
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem) !important;
  margin: 0 0 .4em !important;
  line-height: 1.12 !important;
}
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }

.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Eyebrow accent (small caps) ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  white-space: nowrap;
  box-shadow: var(--s-card);
}
.btn.btn--primary { background: var(--accent); color: #fff; }
.btn.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--s-hover); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--s-hover); color: #fff; }
.btn.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--s-card); }
.btn.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); box-shadow: none; }
.btn.btn--ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); box-shadow: var(--s-hover); }

/* ---------- Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: background-color 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
/* When transparent over hero: light text for readability against the hero gradient */
.site-header:not(.is-scrolled) .nav-main a,
.site-header:not(.is-scrolled) .nav-main button { color: #f3ecdf; }
.site-header:not(.is-scrolled) .nav-cta .btn--ghost {
  color: #f3ecdf;
  border-color: rgba(243, 220, 199, 0.55);
}
.site-header:not(.is-scrolled) .nav-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f3ecdf;
  color: #fff;
}
.site-header.is-scrolled { box-shadow: var(--s-subtle); border-bottom-color: var(--line); }
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand__tag {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: -2px;
}
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  border-radius: var(--r-sm);
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav-main a:hover { color: var(--accent-dark); }
.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
/* Invisible bridge across the 8px gap between trigger and panel so the
   menu doesn't close on cursor traversal. */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px; right: -16px;
  height: 12px;
  pointer-events: auto;
  display: none;
}
.nav-dropdown:hover::after,
.nav-dropdown.open::after { display: block; }
.nav-dropdown > button {
  background: none; border: 0; cursor: pointer;
  padding: 10px 14px;
  font: inherit; font-weight: 500; font-size: .95rem;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-dropdown > button::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t-med) var(--ease);
}
.nav-dropdown:hover > button::after,
.nav-dropdown.open > button::after { transform: rotate(-135deg) translateY(2px); }
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--s-hover);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              visibility var(--t-med) var(--ease);
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown.open .nav-dropdown__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__panel a {
  display: block; padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 500;
  font-size: .92rem;
}
.nav-dropdown__panel a::after { content: none; }
.nav-dropdown__panel a:hover { background: var(--bg-alt); color: var(--accent-dark); }

/* Dark-header builds: white nav-link color cascades into the dropdown panel
   and makes its text invisible on its white background. Pin panel ink with
   higher-specificity rules. */
.site-header .nav-dropdown__panel a {
  color: var(--ink);
  background: transparent;
}
.site-header .nav-dropdown__panel a:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}
.site-header .nav-dropdown__panel a::after { content: none; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
}

/* mobile */
@media (max-width: 1024px) {
  .nav-main { display: none; }
  .nav-toggle { display: inline-block; }
  .site-header.is-open .nav-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 20px 28px 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--s-hover);
  }
  .site-header.is-open .nav-main a { padding: 14px 10px; font-size: 1rem; }
  .nav-dropdown > button { padding: 14px 10px; width: 100%; justify-content: space-between; }
  .nav-dropdown__panel {
    position: static; box-shadow: none; border: 0; padding: 0 0 8px 14px;
    opacity: 1; visibility: visible; transform: none;
    display: none; background: transparent;
  }
  .nav-dropdown.open .nav-dropdown__panel { display: block; }
  .nav-cta .btn--ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img, linear-gradient(135deg, #2A3A2C, #1A241B));
  background-size: cover;
  background-position: var(--hero-pos, center 35%);
  z-index: -2;
  /* slow-pan removed — animation scaled past source resolution and looked grainy */
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 40%, rgba(10,14,11,.85) 100%);
  z-index: -1;
}
.hero__inner { max-width: 780px; }
.hero__eyebrow { color: #F3DCC7; font-weight: 600; }
.hero h1 { color: #fff; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.025em; }
.hero h1 em { font-style: normal; color: #F3DCC7; }
.hero .lead { color: rgba(255,255,255,.88); max-width: 56ch; font-size: 1.15rem; margin-bottom: 34px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero--short { min-height: 70vh; padding: calc(var(--nav-h) + 90px) 0 90px; }
.hero--short h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-style: normal; }

@media (max-width: 720px) {
  .hero { min-height: 64vh; }
  .hero--short { min-height: 52vh; }
}


.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: float 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 28px;
  background: rgba(255,255,255,.7);
}
@keyframes float {
  0%,100% { transform: translate(-50%, 0); }
  50%     { transform: translate(-50%, 6px); }
}

/* ---------- Section scaffolding ---------- */
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--bg-alt) !important; }
.section--dark { background: var(--bg-dark) !important; color: #E8E3D6; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: #F3DCC7; }
.section--dark .lead { color: rgba(255,255,255,.82); }

.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__head .eyebrow { display: inline-block; }

/* ---------- Two-column split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--r-lg);
  box-shadow: var(--s-card);
  transition: transform var(--t-slow) var(--ease);
}
.split__media img:hover { transform: translateY(-4px); }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Hunt cards grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .card-grid { grid-template-columns: 1fr; } }

.hunt-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex; flex-direction: column;
}
.hunt-card:hover { transform: translateY(-6px); box-shadow: var(--s-hover); }
.hunt-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
}
.hunt-card__body { padding: 24px 26px 28px; }
.hunt-card h3 { margin-bottom: 10px; }
.hunt-card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.hunt-card__meta {
  display: flex;
  gap: 18px;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
.hunt-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hunt-card__meta span::before {
  content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block;
}
.hunt-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 600; font-size: .92rem;
  text-decoration: none;
  transition: gap var(--t-med) var(--ease);
}
.hunt-card__cta:hover { gap: 14px; color: var(--accent-dark); }
.hunt-card__cta::after {
  content: "→";
  transition: transform var(--t-med) var(--ease);
}
.hunt-card__cta:hover::after { transform: translateX(4px); }

/* ---------- Feature trio ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 820px) { .feature-row { grid-template-columns: 1fr; } }
.feature {
  text-align: left;
}
.feature__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--s-card);
}
.feature h3 { margin-bottom: 8px; }
.feature p  { color: var(--muted); margin: 0; }

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 45%;
  width: 100%;
  border-radius: var(--r-md);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  box-shadow: var(--s-card);
}
.gallery-strip img:hover { box-shadow: var(--s-hover); }
@media (max-width: 900px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Reviews row ---------- */
.review-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 30px 28px;
  box-shadow: var(--s-card);
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--s-hover); }
.review__stars {
  color: var(--accent); letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px;
}
.review p { color: var(--ink-soft); font-style: italic; }
.review__who { font-weight: 600; color: var(--ink); margin-top: 16px; display: block; font-style: normal; }
.review__when { color: var(--muted); font-size: .85rem; }
@media (max-width: 900px) { .review-row { grid-template-columns: 1fr; } }

/* ---------- Brands strip ---------- */
.brands {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 36px 56px; align-items: center;
  padding: 20px 0;
}
.brands span {
  font-family: var(--font-display);
  color: var(--muted);
  font-size: 1.4rem;
  opacity: .7;
  transition: opacity var(--t-med) var(--ease), color var(--t-med) var(--ease);
  letter-spacing: .02em;
}
.brands span:hover { opacity: 1; color: var(--ink); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 80px 28px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--s-hover);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(1000px 500px at 20% 20%, rgba(255,255,255,.08), transparent 70%);
}
.cta-banner h2 { color: #fff; position: relative; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto 28px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- Forms ---------- */
.form {
  display: grid; gap: 20px;
  max-width: 640px;
}
.form label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(180, 83, 42, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

.mb-form-embed {
  border: 2px dashed var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: #fff;
}
.mb-form-embed strong { display: block; color: var(--ink); margin-bottom: 4px; font-family: var(--font-display); font-size: 1.1rem; }

/* ---------- Contact cards ---------- */
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--s-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--s-hover); }
.contact-card__icon {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); letter-spacing: .02em; }
.contact-card p { color: var(--muted); margin: 0; font-size: .95rem; }
.contact-card a { color: var(--ink); font-weight: 500; }
@media (max-width: 820px) { .contact-row { grid-template-columns: 1fr; } }

/* ---------- FAQ / AEO ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--s-subtle);
  transition: box-shadow var(--t-med) var(--ease);
}
.faq details[open] { box-shadow: var(--s-card); }
.faq summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform var(--t-med) var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 14px 0 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-darker);
  color: #D6D0BF;
  padding: 90px 0 28px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }
.site-footer a { color: #D6D0BF; display: inline-block; padding: 4px 0; font-size: .96rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 4px 0; }
.footer-brand__tag { color: #908976; font-size: .95rem; max-width: 32ch; margin-top: 8px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: #D6D0BF; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: #D6D0BF;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.socials a svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: #8C866F;
  font-size: .85rem;
}
.footer-legal a { color: #8C866F; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Page-title / breadcrumb helpers ---------- */
.breadcrumb {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Price block ---------- */
.price-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--s-card);
}
.price-block > div { padding: 22px 26px; border-bottom: 1px solid var(--line); }
.price-block > div:nth-child(odd) { border-right: 1px solid var(--line); background: var(--bg-alt); font-weight: 600; font-family: var(--font-display); font-size: 1.05rem; }
.price-block > div:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 640px) { .price-block { grid-template-columns: 1fr; } .price-block > div:nth-child(odd) { border-right: 0; } }

/* ---------- Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
.mb-lg { margin-bottom: 60px; }
.divider {
  height: 1px; background: var(--line); margin: 0 auto; max-width: 100px;
}
.hr-fancy {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  max-width: 420px; margin: 0 auto 36px;
}
.hr-fancy::before, .hr-fancy::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}


/* =====================================================================
   Mallard Bay booking widget — defensive overrides
   ---------------------------------------------------------------------
   MB's widget script (loaded at end of body) does three things that will
   visually break this template unless we counter them:

   1) It injects a global Tailwind stylesheet that includes
      `.container { max-width: 640px … }`. Our template avoids this by
      using `.wrap` instead of `.container`.

   2) It sets `body { font-family: "Nunito Sans"; background: #fff; color: #303030 }`
      and other globals. The !important locks at the top of this file
      (on body + .section--alt + .section--dark + .btn.btn--*) defeat
      that.

   3) It WRAPS every decorated .btn-book in nested divs:
        <div class="mb-full-width">
          <div><div>
            <button style="background:none; border:0; padding:0">
              <a class="btn btn--primary btn-book">Book Now</a>
            </button>
          </div></div>
        </div>
      The `.mb-full-width` class expands to 100% — which blows out nav /
      hero / card layouts. The rules below force it to shrink-wrap around
      the inner <a> everywhere EXCEPT inside pricing / feature cards,
      where we want the button to span the card width and pin to the
      card's bottom edge.
   ===================================================================== */

/* Lock horizontal scroll (prevents the jittery side-swipe some mobile
   browsers let through when any child element overflows the viewport
   by a few pixels). */
html, body { overflow-x: hidden; max-width: 100%; }

.mb-full-width {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
}
.mb-full-width > *,
.mb-full-width > * > *,
.mb-full-width > * > * > * {
  display: inline-block !important;
  width: auto !important;
}
.mb-full-width button {
  display: inline-block !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  width: auto !important;
}
.mb-full-width a.btn { display: inline-flex !important; }

/* Inside pricing / feature cards: wrapper expands to full width AND
   pins to the bottom of the card so side-by-side cards have aligned
   buttons regardless of copy length. */
.feature-card > .mb-full-width {
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: 18px;
}
.feature-card > .mb-full-width > *,
.feature-card > .mb-full-width > * > *,
.feature-card > .mb-full-width > * > * > * {
  display: block !important;
  width: 100% !important;
}
.feature-card > .mb-full-width a.btn {
  display: inline-flex !important;
  width: 100% !important;
  justify-content: center !important;
  padding: 14px 28px !important;
}


/* =====================================================================
   Universal mobile + dark-section polish
   ---------------------------------------------------------------------
   Added after the initial Big Water build surfaced these as latent bugs
   across all templates. Kept here as a single block so future edits can
   tweak thresholds in one place.
   ===================================================================== */

/* Force mobile card stacking even when inline styles try to override. */
@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr !important; }
  .feature-row { grid-template-columns: 1fr !important; }
}

/* Gallery: 2 columns on mobile (was cramped 4-col by default). */
@media (max-width: 720px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Dark-section feature text — the base `.feature p` color token reads
   black against the dark background. Restore contrast. */
.section--dark .feature p,
.section--dark .feature-card p,
.section--dark .feature-card li,
.section--dark .feature h3,
.section--dark .feature h4 { color: rgba(255,255,255,.88); }
.section--dark .feature-card h3,
.section--dark .feature-card h4 { color: #fff; }


/* =====================================================================
   MB widget button-style preservation (CNL hardening, 2026-05-06)
   ---------------------------------------------------------------------
   The .mb-full-width button { padding:0; background:transparent; border:0 }
   reset above neutralizes the MB widget's native picker button — but it
   also strips our own .btn.btn--primary / .btn--dark / .btn--ghost-light
   when they're wrapped by the widget. Restore them with higher-specificity
   selectors targeting the .mb_widget descendant of .mb-full-width.
   ===================================================================== */
.mb-full-width button.btn.mb_widget,
.mb-full-width > * > button.btn.mb_widget,
.mb-full-width > * > * > button.btn.mb_widget,
.mb-full-width > * > * > * > button.btn.mb_widget {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 28px !important;
  border-radius: var(--r-pill) !important;
  border: 1px solid transparent !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: .98rem !important;
  letter-spacing: .02em !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease) !important;
  width: auto !important;
}
.mb-full-width button.btn.btn--primary.mb_widget,
.mb-full-width > * > button.btn.btn--primary.mb_widget,
.mb-full-width > * > * > button.btn.btn--primary.mb_widget,
.mb-full-width > * > * > * > button.btn.btn--primary.mb_widget {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  box-shadow: var(--s-card) !important;
}
.mb-full-width button.btn.btn--primary.mb_widget:hover,
.mb-full-width > * > button.btn.btn--primary.mb_widget:hover,
.mb-full-width > * > * > button.btn.btn--primary.mb_widget:hover,
.mb-full-width > * > * > * > button.btn.btn--primary.mb_widget:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--s-hover) !important;
}
.mb-full-width button.btn.btn--dark.mb_widget,
.mb-full-width > * > button.btn.btn--dark.mb_widget,
.mb-full-width > * > * > button.btn.btn--dark.mb_widget,
.mb-full-width > * > * > * > button.btn.btn--dark.mb_widget {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
  box-shadow: var(--s-card) !important;
}
.mb-full-width button.btn.btn--dark.mb_widget:hover,
.mb-full-width > * > button.btn.btn--dark.mb_widget:hover,
.mb-full-width > * > * > button.btn.btn--dark.mb_widget:hover,
.mb-full-width > * > * > * > button.btn.btn--dark.mb_widget:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--s-hover) !important;
}
.mb-full-width button.btn.btn--ghost-light.mb_widget,
.mb-full-width > * > button.btn.btn--ghost-light.mb_widget,
.mb-full-width > * > * > button.btn.btn--ghost-light.mb_widget,
.mb-full-width > * > * > * > button.btn.btn--ghost-light.mb_widget {
  background: transparent !important;
  border-color: rgba(255,255,255,.7) !important;
  color: #fff !important;
}
.mb-full-width button.btn.btn--ghost-light.mb_widget:hover,
.mb-full-width > * > button.btn.btn--ghost-light.mb_widget:hover,
.mb-full-width > * > * > button.btn.btn--ghost-light.mb_widget:hover,
.mb-full-width > * > * > * > button.btn.btn--ghost-light.mb_widget:hover {
  background: #fff !important;
  color: var(--ink) !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--s-hover) !important;
}

/* In nav: the MB widget wrapper doesn't push the button to a new line. */
.nav-cta .mb-full-width { vertical-align: middle !important; }


/* =====================================================================
   Brand logos strip (Brands We Trust)
   ===================================================================== */
.brands--logos {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.brands--logos .brand-logo {
  height: 38px;
  width: auto;
  max-width: 180px;
  opacity: .82;
  filter: grayscale(100%) brightness(0.4) contrast(1);
  transition: opacity var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
  border-radius: 0;
}
.brands--logos .brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1) contrast(1);
}
@media (max-width: 720px) {
  .brands--logos { gap: 1.8rem; }
  .brands--logos .brand-logo { height: 26px; max-width: 130px; }
}


/* =====================================================================
   Brand-as-logo (CNL — replaces .brand__mark + text spans)
   ===================================================================== */
.brand.brand--image {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.brand.brand--image .brand__logo {
  height: 110px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
  border-radius: 0;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease);
}
.brand.brand--image:hover .brand__logo {
  transform: scale(1.03);
}
.brand--image-footer .brand__logo {
  height: 140px !important;
  max-width: none !important;
}

/* Header gets a touch more headroom now that the logo has visual weight. */
@media (min-width: 901px) {
  .site-header { --nav-h: 128px; }
  .nav-wrap { min-height: 128px; }
}

/* Mobile: keep generous but fit on one row alongside the hamburger. */
@media (max-width: 720px) {
  .brand.brand--image .brand__logo {
    height: 78px !important;
  }
}


/* =====================================================================
   American Plan — 4-up pricing row (CNL)
   ===================================================================== */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--s-subtle);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--s-card); }
.pricing-card__eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .5rem;
}
.pricing-card h3 {
  font-size: 1.18rem;
  margin: 0 0 .4rem;
  line-height: 1.2;
}
.pricing-card__sub {
  font-size: .86rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
  line-height: 1.45;
  min-height: 4.5em;
}
.pricing-rows {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}
.pricing-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.pricing-rows li:last-child { border-bottom: 0; }
.pricing-rows li span { color: var(--ink-soft); }
.pricing-rows li strong { color: var(--ink); font-weight: 600; }
.pricing-card--featured {
  border: 2px solid var(--accent);
  background: var(--bg);
  position: relative;
}
.pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .pricing-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-card__sub { min-height: 0; }
}
@media (max-width: 540px) {
  .pricing-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   Contact form — contained card with border + radius (CNL feedback 2026-05-06)
   ===================================================================== */
.section.section--form {
  background: var(--white);
  padding-top: 3.4rem;
  padding-bottom: 4.4rem;
}
.contact-form-shell {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--r-md);
  padding: 2.4rem 2.2rem 2.6rem;
  box-shadow: var(--s-card);
}
/* Make embedded MB form labels & helper text readable on the dark card. */
.contact-form-shell label,
.contact-form-shell .mb-form-label,
.contact-form-shell legend { color: #fff !important; }
.contact-form-shell p,
.contact-form-shell small { color: rgba(255,255,255,.8) !important; }
.contact-form-shell a { color: var(--accent) !important; }
@media (max-width: 720px) {
  .contact-form-shell { padding: 1.8rem 1.3rem 2rem; }
}


/* =====================================================================
   FAQ readability — borders on each item (CNL feedback)
   ===================================================================== */
.faq-list .faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  padding: 0;
  transition: box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.faq-list .faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--s-subtle);
}
.faq-list .faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--s-card);
}
.faq-list .faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.08rem;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-list .faq-item summary::-webkit-details-marker { display: none; }
.faq-list .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--t-fast) var(--ease);
}
.faq-list .faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%);
}
.faq-list .faq-item p {
  padding: 0 1.4rem 1.2rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* =====================================================================
   /trips card grid — force 4 in a row
   ===================================================================== */
.card-grid.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1100px) {
  .card-grid.card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid.card-grid--4 { grid-template-columns: 1fr; }
}
/* When cards are 4-up they're narrower — tighten card padding/typography. */
.card-grid.card-grid--4 .hunt-card__body { padding: 1.2rem 1.1rem 1.3rem; }
.card-grid.card-grid--4 .hunt-card h3 { font-size: 1.15rem; }
.card-grid.card-grid--4 .hunt-card p { font-size: .92rem; }

/* =====================================================================
   .pricing-row variants for fewer cards
   ===================================================================== */
.pricing-row.pricing-row--3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; margin-left: auto; margin-right: auto; }
.pricing-row.pricing-row--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px;  margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .pricing-row.pricing-row--3 { grid-template-columns: 1fr; }
  .pricing-row.pricing-row--2 { grid-template-columns: 1fr; }
}


/* =====================================================================
   .feature-card — proper card styling for Guest Info (CNL feedback)
   Used on /faqs for the 3 guest-info columns (Getting Here, Lodging,
   What to Bring), and could be reused for any 3-up text-card grid.
   ===================================================================== */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--s-subtle);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-card);
  border-color: var(--accent);
}
.feature-card h3 {
  font-size: 1.15rem;
  margin: 0 0 .6rem;
  line-height: 1.25;
}
.feature-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: .95rem;
  margin: 0;
}


/* GALLERY CATEGORY JUMP STRIP */
.gallery-jumps { padding-top: 36px; padding-bottom: 24px; }
.gallery-jumps__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; align-items: stretch; }
.gallery-jump {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 22px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill, 999px);
  background: var(--white, #fff);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: .04em;
  transition: all var(--t-fast) var(--ease);
  min-width: 140px;
}
.gallery-jump:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: translateY(-2px); box-shadow: var(--s-hover);
}
.gallery-jump:hover .gallery-jump__count { color: rgba(255,255,255,.85); }
.gallery-jump__count {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.8rem; line-height: 1; color: var(--accent); font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}
.gallery-jump__label {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
@media (max-width: 720px) {
  .gallery-jumps { padding-top: 24px; padding-bottom: 16px; }
  .gallery-jumps__nav { gap: 8px; }
  .gallery-jump { min-width: 0; flex: 1 1 calc(50% - 8px); padding: 10px 14px 8px; }
  .gallery-jump__count { font-size: 1.4rem; }
  .gallery-jump__label { font-size: .68rem; }
}


/* ============================================================
   Hero carousel (home page)
   ============================================================ */
.hero--carousel { padding: 0; position: relative; overflow: hidden; }
.hero--carousel .hero__slides { position: relative; width: 100%; min-height: 90vh; }
.hero--carousel .hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 900ms ease, visibility 0s linear 900ms;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  color: #fff;
}
.hero--carousel .hero__slide.is-active {
  opacity: 1; visibility: visible;
  transition: opacity 900ms ease, visibility 0s linear 0s;
  z-index: 1;
}
.hero--carousel .hero__slide::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: var(--hero-pos, center 50%);
  z-index: -2;
}
.hero--carousel .hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.12) 40%, rgba(10,14,11,.78) 100%);
  z-index: -1;
}
.hero--carousel .hero__inner { max-width: 780px; }

/* Nav arrows */
.hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.hero__nav:hover { background: rgba(0,0,0,.6); border-color: rgba(255,255,255,.7); }
.hero__nav--prev { left: 24px; }
.hero__nav--next { right: 24px; }

/* Dots */
.hero__dots {
  position: absolute; left: 50%; bottom: 86px; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: 0; cursor: pointer;
  padding: 0;
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.hero__dot.is-active { background: #fff; transform: scale(1.3); }
.hero__dot:hover { background: rgba(255,255,255,.8); }

@media (max-width: 720px) {
  .hero--carousel .hero__slides { min-height: 70vh; }
  .hero__nav { width: 40px; height: 40px; font-size: 22px; }
  .hero__nav--prev { left: 12px; }
  .hero__nav--next { right: 12px; }
  .hero__dots { bottom: 64px; }
}

/* Lighter, more modern hero typography (font weight feedback from Jacob) */
.hero h1,
.hero--carousel .hero__slide h1 {
  font-weight: 500 !important;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem) !important;
  line-height: 1.08 !important;
}

/* Header — transparent at top; dark wood-grain on scroll so the maple-leaf logo stays visible. */
.site-header {
  transition: background 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.site-header.is-scrolled {
  background-color: #1a120c;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.35)),
    url('/images/textures/wood-grain.svg');
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 600px 160px;
  box-shadow: 0 2px 14px rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header.is-scrolled .nav-main a,
.site-header.is-scrolled .nav-main button {
  color: #f3ecdf;
}
.site-header.is-scrolled .nav-dropdown__panel {
  background: #1a1410;
  border-color: rgba(255,255,255,.10);
}
.site-header.is-scrolled .nav-dropdown__panel a { color: #f3ecdf; }
.site-header.is-scrolled .nav-dropdown__panel a:hover { background: rgba(255,255,255,.08); }
/* Phone-number ghost button: readable on dark wood */
.site-header.is-scrolled .nav-cta .btn--ghost {
  color: #f3ecdf;
  border-color: rgba(243, 220, 199, 0.6);
  background: rgba(0, 0, 0, 0.18);
}
.site-header.is-scrolled .nav-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f3ecdf;
  color: #fff;
}
/* Logo on dark background — give a subtle drop-shadow so it pops */
.site-header.is-scrolled .brand__logo {
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
}

/* Write-a-review CTA on review section */
.review-cta {
  margin-top: 36px; text-align: center;
}


/* 5-up card grid for the home Plan Your Trip strip (added with Grouse) */
.card-grid.card-grid--5 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.card-grid.card-grid--5 .hunt-card__body { padding: 1.4rem 1.4rem 1.6rem; }
.card-grid.card-grid--5 .hunt-card h3 { font-size: 1.18rem; }
.card-grid.card-grid--5 .hunt-card p { font-size: .96rem; }
@media (max-width: 1024px) {
  .card-grid.card-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid.card-grid--5 { grid-template-columns: 1fr; }
}


/* Gallery preview — smooth CSS marquee (auto-scrolling, pause on hover) */
.gallery-strip-carousel {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.gallery-strip-carousel .gsc-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0 24px;
  animation: gsc-marquee 180s linear infinite;
  will-change: transform;
}
.gallery-strip-carousel:hover .gsc-track { animation-play-state: paused; }
@keyframes gsc-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.gallery-strip-carousel .gsc-card {
  flex: 0 0 auto;
  width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--s-card);
  position: relative;
  background: var(--ink);
}
.gallery-strip-carousel .gsc-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.gallery-strip-carousel .gsc-card:hover img { transform: scale(1.03); }
@media (max-width: 720px) {
  .gallery-strip-carousel .gsc-card { width: 280px; }
}


/* ============================================================
   Reviews carousel (replaces 3-card review-row)
   ============================================================ */
.review-carousel {
  position: relative;
  margin-top: 40px;
  padding: 0 60px;
}
.review-carousel .rc-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 24px;
}
.review-carousel .rc-track::-webkit-scrollbar { display: none; }
.review-carousel .rc-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--s-card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-height: 220px;
}
.review-carousel .rc-card .review__stars { color: #E1A93B; letter-spacing: 2px; font-size: .95rem; margin-bottom: 12px; }
.review-carousel .rc-card p { color: var(--ink); font-size: .98rem; line-height: 1.55; margin: 0 0 16px; flex: 1; font-style: italic; }
.review-carousel .rc-card .review__who { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; }
.review-carousel .rc-card .review__when { display: block; color: var(--ink-soft); font-size: .82rem; margin-top: 2px; }
.review-carousel .rc-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink); font-size: 22px; line-height: 1;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: var(--s-card);
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.review-carousel .rc-nav:hover { background: var(--bg-alt); box-shadow: var(--s-hover); }
.review-carousel .rc-prev { left: 0; }
.review-carousel .rc-next { right: 0; }
@media (max-width: 1024px) {
  .review-carousel .rc-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 720px) {
  .review-carousel { padding: 0 16px; }
  .review-carousel .rc-card { flex: 0 0 88%; }
  .review-carousel .rc-prev { left: -4px; }
  .review-carousel .rc-next { right: -4px; }
}

/* Brand logo links (wraps the existing brand-logo img) */
.brand-link {
  display: inline-flex;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.brand-link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* ============================================================
   CTA banner — flat orange + subtle topographic overlay
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 56px 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('/images/textures/topo.svg');
  background-size: 600px 400px;
  background-repeat: repeat;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.95); max-width: 560px; margin: 0 auto 24px; }
.cta-banner .btn--dark { box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* wf-fix: mobile open-menu readability. When the mobile hamburger menu is
   open, .nav-main has a white (#fff) background, but the transparent-header
   rule (.site-header:not(.is-scrolled) .nav-main a) keeps link text cream
   (#f3ecdf) => cream-on-white is nearly invisible ("white screen, hard to
   see"). Force dark ink for all open-menu text regardless of scroll state. */
@media (max-width: 1024px) {
  .site-header.is-open .nav-main a,
  .site-header.is-open .nav-main button,
  .site-header.is-open .nav-dropdown > button,
  .site-header.is-open .nav-dropdown__panel a { color: var(--ink) !important; }
  .site-header.is-open .nav-toggle span { background: var(--ink) !important; }
}

/* ---------- Our Portage Lakes (about page) ---------- */
.portage-media { margin-bottom: 48px; }
.portage-media img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 55%;
  border-radius: var(--r-lg);
  box-shadow: var(--s-card);
  display: block;
}
.portage-media--wide { margin-top: 48px; margin-bottom: 0; }
.lake-card .hunt-card__body { padding: 26px 28px 28px; }
.lake-card h3 { margin-bottom: 12px; }
.lake-card p { font-size: .93rem; line-height: 1.65; margin-bottom: 0; }

/* Hide runtime-injected theme/init script leaking as visible text (MB widget) */
.mb-full-width script,.mb-full-width style,.mb-full-width template,.mb-full-width noscript,.feature-card .mb-full-width script{display:none!important}

/* Hide runtime-injected theme/init script leaking as visible text (MB widget) */
.mb-full-width script,.mb-full-width style,.mb-full-width template,.mb-full-width noscript,.feature-card .mb-full-width script{display:none!important}


/* Fix: dropdown panel text invisible on transparent (top-of-page) header */
.site-header:not(.is-scrolled) .nav-dropdown__panel a { color: var(--ink) !important; }
.site-header:not(.is-scrolled) .nav-dropdown__panel a:hover { color: var(--accent-dark) !important; }

/* Portage lakes: single-column, tighter title-to-description spacing (match old-site feel) */
#portage-lakes .card-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
#portage-lakes .lake-card { display: block !important; }
#portage-lakes .lake-card .hunt-card__body { padding: 18px 24px 20px !important; }
#portage-lakes .lake-card h3 { margin-bottom: 5px !important; }

/* Portage planning bullet list */
.portage-plan-list{list-style:disc outside;padding-left:1.35rem;margin-top:1.1rem;}
.portage-plan-list li{margin-bottom:.8rem;line-height:1.7;}
