/* =========================================================
   TEMPLATE 2 — TIMBERLINE
   Heritage outdoors-editorial. Centered logo, split nav.
   Eyebrow labels on every section. Angled section dividers.
   Condensed sans display + serif italic accents.
   ========================================================= */

:root {
  --bg: #191919;
  --bg-alt: #20201D;
  --bg-dark: #111110;
  --bg-darker: #0B0B0A;
  --bg-mid: #262420;
  --ink: #F4F1EA;
  --ink-soft: #CFC8BB;
  --muted: #9C958A;
  --line: #38332C;
  --accent: #B98A5E;        /* antique gold */
  --accent-dark: #917054;
  --accent-2: #EEE4D6;      /* deep forest */
  --white: #FFFFFF;

  --font-display: "Oswald", "Archivo Narrow", Impact, sans-serif;
  --font-serif-italic: "Bree Serif", Georgia, serif;
  --font-body: "Funnel Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  --s-subtle: 0 2px 6px rgba(23, 36, 27, 0.10);
  --s-card:   0 8px 24px -8px rgba(23, 36, 27, 0.28);
  --s-hover:  0 18px 44px -14px rgba(23, 36, 27, 0.38);
  --s-stamp:  0 1px 0 #00000012, 0 8px 22px -8px rgba(23,36,27,.24);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 560ms;

  --container: 1260px;
  --topbar-h: 44px;
  --nav-h: 96px;
  --angle: 2.2deg;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.06;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
/* 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.8rem, 6vw, 5rem) !important;
  margin: 0 0 .4em !important;
  line-height: 1.06 !important;
}
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); letter-spacing: .04em; }
h4 { font-size: 1rem; letter-spacing: .06em; }

.serif-italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -.01em;
}
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 (mandatory on every section title) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
  opacity: .7;
}
.eyebrow::after { display: none; }
.eyebrow--centered { display: inline-flex; margin: 0 auto 18px; }
.eyebrow--centered::after { display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px 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-stamp);
}
.btn.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--s-hover); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.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); }
.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); }
.btn--sm { padding: 9px 18px; font-size: .78rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--bg-darker);
  color: #D7CFB5;
  height: var(--topbar-h);
  font-size: .82rem;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 52;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: #D7CFB5; letter-spacing: .04em; }
.topbar a:hover { color: var(--accent); }
.topbar__left, .topbar__right { display: flex; gap: 22px; align-items: center; }
.topbar__socials { display: flex; gap: 14px; }
.topbar__socials a {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: .75rem;
  letter-spacing: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.topbar__socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.topbar__socials a svg { width: 12px; height: 12px; fill: currentColor; display: block; }
@media (max-width: 820px) {
  .topbar__left span { display: none; }
  .topbar__right .topbar__socials { display: none; }
}

/* ---------- Main header / centered-logo split nav ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  transition: box-shadow var(--t-med) var(--ease);
  height: var(--nav-h);
}
.site-header.is-scrolled { box-shadow: var(--s-subtle); }

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-side { display: flex; justify-content: flex-end; gap: 6px; }
.nav-side--right { justify-content: flex-start; }

.nav-side a, .nav-dropdown > button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 14px;
  position: relative;
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-side a::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav-side a:hover, .nav-dropdown > button:hover { color: var(--accent); }
.nav-side a:hover::after,
.nav-side a[aria-current="page"]::after { transform: scaleX(1); }
.nav-dropdown > button::after {
  content: "";
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px 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 { position: relative; }
/* Invisible bridge across the 6px 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: 10px;
  pointer-events: auto;
  display: none;
}
.nav-dropdown:hover::after,
.nav-dropdown.open::after { display: block; }
.nav-dropdown__panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--s-hover);
  padding: 8px;
  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);
  border-radius: var(--r-md);
}
.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;
  font-size: .82rem; letter-spacing: .12em;
  color: var(--ink); font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.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,
.nav-side .nav-dropdown__panel a {
  color: var(--ink);
  background: transparent;
}
.site-header .nav-dropdown__panel a:hover,
.nav-side .nav-dropdown__panel a:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

/* Centered brand */
.brand {
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
}
.brand__mark {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 2px;
}
.brand__tag {
  display: block;
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  cursor: pointer; padding: 10px;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* Mobile nav */
@media (max-width: 1024px) {
  /* Mobile nav layout: brand hard-left, toggle hard-right.
     Both nav-sides hide until .is-open, then stack in their own rows
     below the brand via grid-template-areas. This replaces the old
     absolute-positioned approach where both .nav-side elements landed
     at the same spot and one silently covered the other (which made
     half the menu items disappear). */
  .site-header { --nav-h: 64px; }
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand spacer toggle";
    gap: 12px;
    align-items: center;
  }
  .brand { grid-area: brand; justify-self: start; }
  .brand img { max-height: 48px; width: auto; }
  .nav-toggle { grid-area: toggle; display: inline-block; justify-self: end; }
  .nav-side { display: none; }

  .site-header.is-open .nav-wrap {
    grid-template-areas:
      "brand  spacer toggle"
      "left   left   left"
      "right  right  right";
    row-gap: 0;
  }
  .site-header.is-open .nav-side {
    display: flex; flex-direction: column; align-items: stretch;
    position: static;
    background: #fff;
    padding: 8px 28px 0;
    gap: 0;
  }
  .site-header.is-open .nav-side:not(.nav-side--right) { grid-area: left; padding-top: 16px; }
  .site-header.is-open .nav-side--right {
    grid-area: right;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--s-hover);
  }
  .site-header.is-open .nav-side a,
  .site-header.is-open .nav-dropdown > button { padding: 14px 4px; width: 100%; justify-content: flex-start; }

  .nav-dropdown__panel { position: static; box-shadow: none; padding: 0 0 8px 14px; border: 0;
    opacity: 1; visibility: visible; transform: none; background: transparent; display: none; }
  .nav-dropdown.open .nav-dropdown__panel { display: block; }
}

body { padding-top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  padding: calc(var(--topbar-h) + var(--nav-h) + 80px) 0 100px;
  display: flex;
  align-items: center;
  text-align: 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);
  z-index: -2;
  animation: t2-pan 26s ease-in-out infinite alternate;
}
@keyframes t2-pan {
  from { transform: scale(1.04); }
  to { transform: scale(1.10); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,11,.45) 0%, rgba(10,14,11,.25) 40%, rgba(10,14,11,.88) 100%);
  z-index: -1;
}
.hero__inner { max-width: 920px; margin: 0 auto; }
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--accent); }
.hero h1 { color: #fff; }
.hero h1 .serif-italic { color: var(--accent); font-weight: 400; text-transform: none; display: inline-block; }
.hero .lead { color: rgba(255,255,255,.88); max-width: 60ch; margin: 0 auto 34px; font-size: 1.15rem; }
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero gold rule */
.hero__rule {
  width: 72px; height: 2px; background: var(--accent);
  margin: 26px auto 26px;
}

.hero--short {
  min-height: 54vh;
  padding: calc(var(--topbar-h) + var(--nav-h) + 40px) 0 64px;
}
.hero--short h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }

/* ---------- Section scaffolding ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-alt) !important; }
.section--dark {
  background: var(--bg-dark) !important;
  color: #E0D8BF;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--accent); }
.section--dark .eyebrow::before, .section--dark .eyebrow::after { background: var(--accent); }

.section__head { max-width: 780px; margin: 0 auto 64px; text-align: center; }

/* Angled dividers — applied to adjacent contrasting sections */
.section--angled-top,
.section--angled-bottom { overflow: hidden; }
.section--angled-top::before {
  content: "";
  position: absolute;
  top: -8px; left: -10vw; right: -10vw;
  height: 96px;
  background: inherit;
  transform-origin: center center;
  transform: skewY(calc(var(--angle) * -1));
  z-index: 0;
}
.section--angled-bottom::after {
  content: "";
  position: absolute;
  bottom: -8px; left: -10vw; right: -10vw;
  height: 96px;
  background: inherit;
  transform-origin: center center;
  transform: skewY(calc(var(--angle) * -1));
  z-index: 0;
}
.section > * { position: relative; z-index: 2; }

/* ---------- Two-column split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--s-card);
  border: 1px solid var(--line);
  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 (stamped rectangle style) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@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-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--s-stamp);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex; flex-direction: column;
}
.hunt-card:hover { transform: translateY(-5px); box-shadow: var(--s-hover); }
.hunt-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(.95);
  transition: transform var(--t-slow) var(--ease), filter var(--t-med) var(--ease);
}
.hunt-card:hover .hunt-card__img { transform: scale(1.04); filter: saturate(1.1); }
.hunt-card__body { padding: 22px 24px 26px; }
.hunt-card__eyebrow {
  font-family: var(--font-body);
  font-weight: 700; letter-spacing: .22em;
  font-size: .7rem; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.hunt-card h3 { margin-bottom: 10px; }
.hunt-card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.hunt-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 500; font-size: .82rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .18em;
  transition: gap var(--t-med) var(--ease), color var(--t-fast) var(--ease);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}
.hunt-card__cta::after { content: "→"; transition: transform var(--t-med) var(--ease); }
.hunt-card__cta:hover { color: var(--accent); }
.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: center; padding: 10px; }
.feature__num {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--ink-soft); max-width: 32ch; margin: 0 auto; }

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-strip img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), filter var(--t-med) var(--ease);
  filter: saturate(.92);
}
.gallery-strip img:hover { transform: scale(1.02); box-shadow: var(--s-hover); filter: saturate(1.1); }
@media (max-width: 900px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

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

/* ---------- Brands strip ---------- */
.brands {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 56px; align-items: center;
  padding: 12px 0;
}
.brands span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  font-size: .95rem;
  opacity: .8;
  transition: color var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.brands span:hover { color: var(--ink); opacity: 1; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 28px;
  text-align: center;
  border-radius: var(--r-md);
  position: relative; overflow: hidden;
  border: 1px solid var(--accent);
  box-shadow: var(--s-hover);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(192,138,62,.12), transparent 70%),
    radial-gradient(700px 500px at 90% 90%, rgba(192,138,62,.08), transparent 70%);
}
.cta-banner .eyebrow { color: var(--accent); position: relative; }
.cta-banner .eyebrow::before, .cta-banner .eyebrow::after { background: var(--accent); }
.cta-banner h2 { color: #fff; position: relative; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.82); max-width: 56ch; margin: 0 auto 28px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- Form ---------- */
.form { display: grid; gap: 20px; max-width: 680px; }
.form label {
  display: block;
  font-family: var(--font-display);
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--ink); margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  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(192, 138, 62, 0.18);
}
.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(--accent);
  border-radius: var(--r-sm);
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: #fff;
  position: relative;
}
.mb-form-embed strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1rem;
}

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

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 22px 26px;
  box-shadow: var(--s-subtle);
  transition: box-shadow var(--t-med) var(--ease);
}
.faq details[open] { box-shadow: var(--s-stamp); border-color: var(--accent); }
.faq summary {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋"; font-size: 1.2rem; 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); font-family: var(--font-body); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-darker);
  color: #D7CFB5;
  padding: 90px 0 28px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@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: #D7CFB5; display: inline-block; padding: 4px 0; font-size: .95rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}
.footer-brand__tag { color: #948974; font-size: .95rem; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  color: #D7CFB5;
  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; flex-wrap: wrap; gap: 16px;
  color: #8E866D;
  font-size: .85rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.footer-legal a { color: #8E866D; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Price block ---------- */
.price-block {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-sm);
  overflow: hidden; box-shadow: var(--s-stamp);
}
.price-row {
  display: grid; grid-template-columns: 2fr 1fr; padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .98rem; font-weight: 500; color: var(--ink); }
.price-row__value { font-family: var(--font-serif-italic); font-style: italic; font-size: 1.4rem; color: var(--accent); text-align: right; }

/* ---------- Reveal 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; }


/* =====================================================================
   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; }

/* ============================================================
   BROKEN PLAINS — dark-theme overrides + new components (v-bpoc)
   ============================================================ */
body { background: var(--bg) !important; color: var(--ink) !important; }
h1,h2,h3,h4 { color: var(--ink); }
.serif-italic { font-style: normal; color: var(--accent); }
img { border-radius: var(--r-md); }

/* Primary CTA = brand tan #917054 (matches live site) */
.btn.btn--primary { background: var(--accent-dark) !important; color: #fff !important; border-color: var(--accent-dark) !important; }
.btn.btn--primary:hover { background: #7d5f45 !important; border-color:#7d5f45 !important; }
.btn.btn--ghost { color: var(--ink); border:1px solid var(--line); background:transparent; }
.btn.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Top bar (dark) ---------- */
.topbar { background:#101010 !important; border-bottom:1px solid var(--line); }
.topbar__inner { display:flex; align-items:center; justify-content:space-between; }
.topbar a { color:#C9C2B6 !important; font-size:.78rem; letter-spacing:.04em; display:inline-flex; align-items:center; gap:6px; }
.topbar a:hover { color:var(--accent) !important; }
.topbar__right { display:flex; gap:22px; }
.topbar__socials { display:flex; gap:12px; }
.topbar__socials svg { width:16px; height:16px; fill:#C9C2B6; }
.topbar__socials a:hover svg { fill:var(--accent); }

/* ---------- Header (dark, centered logo) ---------- */
.site-header { background: rgba(20,20,20,.96) !important; border-bottom:1px solid var(--line); backdrop-filter:saturate(120%) blur(6px); }
.site-header.is-scrolled { background: rgba(16,16,16,.98) !important; }
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:14px; }
.brand { display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.brand img { height:74px; width:auto; border-radius:0; transition:height var(--t-fast) var(--ease); }
.site-header.is-scrolled .brand img { height:58px; }
.nav-side { display:flex; align-items:center; gap:20px; flex:1 1 0; }
.nav-side--right { justify-content:flex-end; }
.nav-side a, .nav-dropdown > button {
  font-family: var(--font-display); text-transform:uppercase; letter-spacing:.06em;
  font-size:.84rem; font-weight:500; color:#EDE8DE; background:none; border:0; cursor:pointer; padding:6px 0;
}
.nav-side a:hover, .nav-dropdown > button:hover, .nav-side a[aria-current="page"], .nav-dropdown > button[aria-current="page"] { color:var(--accent); }
.nav-dropdown { position:relative; }
.nav-dropdown > button::after { content:"\25BE"; font-size:.62em; margin-left:6px; opacity:.7; }
.nav-dropdown__panel {
  position:absolute; top:100%; left:0; transform:translateY(10px);
  background:#1c1c1a; border:1px solid var(--line); border-radius:var(--r-md);
  box-shadow:var(--s-card); padding:8px; min-width:230px; display:flex; flex-direction:column;
  opacity:0; visibility:hidden; transition:opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); z-index:120;
}
/* right-hand nav dropdowns (e.g. Recipes) align right so they don't clip off-screen */
.nav-side--right .nav-dropdown__panel { left:auto; right:0; }
.nav-dropdown::after { content:""; position:absolute; top:100%; left:0; right:0; height:14px; }
.nav-dropdown:hover .nav-dropdown__panel, .nav-dropdown:focus-within .nav-dropdown__panel { opacity:1; visibility:visible; transform:translateY(4px); }
/* dark-header dropdown panel ink fix */
.nav-dropdown__panel a { color:#EDE8DE !important; text-transform:none; font-family:var(--font-body); letter-spacing:0; font-size:.92rem; padding:9px 12px; border-radius:6px; }
.nav-dropdown__panel a:hover { background:#2a2926; color:var(--accent) !important; }
.nav-side .btn.btn--primary { color:#fff; }

/* ---------- Hero on dark ---------- */
.hero, .hero--short { background:#0d0d0c; }
.hero::after, .hero--short::after { background:linear-gradient(180deg, rgba(12,12,11,.45), rgba(12,12,11,.82)) !important; }
.hero h1, .hero--short h1 { color:#fff !important; }
.hero .lead, .hero--short .lead { color:#EDE8DE; }
.breadcrumb a { color:var(--accent); }
.btn--ghost-light { color:#fff; border:1px solid rgba(255,255,255,.55); background:transparent; }
.btn--ghost-light:hover { background:#fff; color:#191919; }

/* ---------- Sections ---------- */
.section--alt { background:var(--bg-alt) !important; }
.section--dark { background:var(--bg-dark) !important; }
.section--dark h2, .section--dark h3 { color:#fff; }
.section__sub { max-width:60ch; margin:8px auto 0; color:var(--muted); }
.prose-narrow { max-width:760px; margin:0 auto; }
.fineprint { font-size:.82rem; color:var(--muted); margin-top:10px; }

/* ---------- Split media radius ---------- */
.split__media img { border-radius:var(--r-lg); }

/* ---------- Card grid (pursuits) ---------- */
.card-grid--3 { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.card-grid--2 { display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.hunt-card { background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--s-card); }
.hunt-card__img { width:100%; height:230px; object-fit:cover; border-radius:0; }
.hunt-card__body { padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; }
.hunt-card__body h3 { color:#fff; }
.hunt-card__body p { color:var(--ink-soft); font-size:.96rem; margin:0; }
.hunt-card__cta { margin-top:auto; color:var(--accent); font-family:var(--font-display); text-transform:uppercase; letter-spacing:.08em; font-size:.8rem; }

/* ---------- Info grid (target / bag limits / expect) ---------- */
.info-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:30px; }
.info-col h3 { color:var(--accent); margin-bottom:14px; }
.ticklist { list-style:none; margin:0; padding:0; }
.ticklist li { position:relative; padding-left:24px; margin-bottom:9px; color:var(--ink-soft); line-height:1.5; }
.ticklist li::before { content:"\2713"; position:absolute; left:0; top:0; color:var(--accent); font-weight:700; }
.ticklist li em { color:var(--muted); font-style:italic; }
.booking-note { margin-top:30px; padding:16px 20px; background:rgba(185,138,94,.10); border-left:3px solid var(--accent); border-radius:6px; color:var(--ink-soft); }

/* ---------- Price feature ---------- */
.price-feature { display:grid; grid-template-columns:300px 1fr; gap:0; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--s-card); }
.price-feature__tag { background:var(--bg-dark); color:#fff; padding:36px 28px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; gap:6px; }
.price-feature__amt { font-family:var(--font-display); font-size:2.8rem; font-weight:700; color:#fff; line-height:1; }
.price-feature__unit { color:var(--accent); font-size:.86rem; letter-spacing:.06em; text-transform:uppercase; }
.price-feature__body { padding:30px 32px; background:var(--bg-alt); }
.price-feature__body h4 { color:var(--accent); text-transform:uppercase; letter-spacing:.1em; font-size:.82rem; margin:0 0 12px; }
.price-feature__body h4 + ul { margin-bottom:22px; }

/* ---------- Team ---------- */
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:28px; }
.team-card { background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--s-card); }
.team-card img { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:0; }
.team-card__body { padding:20px 22px 24px; }
.team-card__body h3 { color:#fff; margin-bottom:2px; }
.team-card__role { display:block; color:var(--accent); font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px; }
.team-card__body p { color:var(--ink-soft); font-size:.92rem; }

/* ---------- Carousel (horizontal scroll-snap) ---------- */
.carousel { display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory; padding:6px 2px 16px; -webkit-overflow-scrolling:touch; scrollbar-width:thin; scrollbar-color:var(--accent) transparent; }
.carousel img { flex:0 0 auto; width:min(420px,80vw); height:300px; object-fit:cover; scroll-snap-align:start; border-radius:var(--r-md); }
.carousel::-webkit-scrollbar { height:8px; }
.carousel::-webkit-scrollbar-thumb { background:var(--accent-dark); border-radius:8px; }
.carousel::-webkit-scrollbar-track { background:var(--line); border-radius:8px; }

/* ---------- Recipes ---------- */
.recipe-jump { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.recipe-jump a { font-family:var(--font-display); text-transform:uppercase; letter-spacing:.05em; font-size:.76rem; padding:8px 14px; border:1px solid var(--line); border-radius:30px; color:var(--ink-soft); }
.recipe-jump a:hover { border-color:var(--accent); color:var(--accent); }
.recipe-card { max-width:920px; margin:0 auto; }
.recipe-card__head { border-bottom:1px solid var(--line); padding-bottom:14px; margin-bottom:18px; }
.recipe-meta { color:var(--accent); font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; }
.recipe-blurb { color:var(--ink-soft); font-style:italic; max-width:70ch; }
.recipe-cols { display:grid; grid-template-columns:1fr 1.4fr; gap:36px; margin-top:22px; }
.recipe-cols h3 { color:var(--accent); margin-bottom:12px; }
.steps { margin:0; padding-left:20px; }
.steps li { margin-bottom:12px; color:var(--ink-soft); line-height:1.55; }

/* ---------- Contact form shell ---------- */
.contact-form-shell { max-width:760px; margin:0 auto; min-height:120px; }
.contact-card { background:var(--bg-alt); border:1px solid var(--line); }
.contact-card h3 { color:#fff; }

/* ---------- Footer (centered) ---------- */
.site-footer { background:#0d0d0c !important; border-top:1px solid var(--line); }
.footer-center { display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; }
.footer-logo img { height:88px; width:auto; border-radius:0; }
.footer-h { color:var(--accent); text-transform:uppercase; letter-spacing:.18em; font-size:.86rem; margin:6px 0 2px; }
.footer-center .socials { display:flex; gap:16px; }
.footer-center .socials svg { width:20px; height:20px; fill:#C9C2B6; }
.footer-center .socials a:hover svg { fill:var(--accent); }
.footer-contact { list-style:none; padding:0; margin:6px 0 0; display:flex; flex-direction:column; gap:8px; }
.footer-contact a { color:#C9C2B6; font-size:.95rem; }
.footer-contact a:hover { color:var(--accent); }
.footer-legal { margin-top:18px; padding-top:18px; border-top:1px solid var(--line); width:100%; display:flex; flex-direction:column; gap:6px; color:var(--muted); font-size:.82rem; }

/* ---------- Brands strip (logos/text, no boxes) ---------- */
.brands { display:flex; flex-wrap:wrap; gap:34px 48px; justify-content:center; align-items:center; }
.brands span, .brands a { font-family:var(--font-display); text-transform:uppercase; letter-spacing:.1em; font-size:1.05rem; color:var(--ink-soft); }
.brands a:hover { color:var(--accent); }

/* ---------- MB widget defenses (button styling + container) ---------- */
.mb-full-width > div > div > button,
.mb-full-width button.btn.btn--primary { background:var(--accent-dark) !important; color:#fff !important; }
.hero h1 { font-size:clamp(2.6rem,5.5vw,4.6rem) !important; }

/* ---------- Responsive ---------- */
@media (max-width:1180px){
  .card-grid--3 { grid-template-columns:repeat(2,1fr); }
  .price-feature { grid-template-columns:1fr; }
  .recipe-cols { grid-template-columns:1fr; gap:20px; }
}
/* mobile menu open: keep dark panel + ensure right-side stacks below logo */
@media (max-width:1024px){
  .site-header.is-open .nav-side { display:flex !important; flex-direction:column; align-items:flex-start; background:#161614; width:100%; }
  .site-header.is-open .nav-dropdown__panel { position:static; transform:none; opacity:1; visibility:visible; box-shadow:none; border:0; background:#1f1f1c; min-width:0; width:100%; }
  .nav-side .btn.btn--primary { margin:12px 0 0 !important; }
}
@media (max-width:640px){
  .card-grid--3, .card-grid--2 { grid-template-columns:1fr; }
  .brand img { height:58px; }
  .topbar__right .icon-mail, .topbar__right span { font-size:.72rem; }
}


/* ===== BPOC review round 2 ===== */
/* Pursuit card CTA → real button */
.hunt-card__btn {
  margin-top:auto; align-self:flex-start; display:inline-block;
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.08em; font-size:.8rem;
  color:#fff; background:var(--accent-dark); padding:11px 22px; border-radius:var(--r-sm);
  border:1px solid var(--accent-dark); transition:all var(--t-fast) var(--ease);
}
.hunt-card__btn:hover { background:transparent; color:var(--accent); border-color:var(--accent); }

/* Beyond the Breaks — taller images so subjects aren't cut off */
.hunt-card--tall .hunt-card__img { height:380px; object-position:center 30%; }

/* Recent Hunts — auto-looping marquee banner */
.marquee { position:relative; overflow:hidden; width:100%; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.marquee__track { display:flex; gap:18px; width:max-content; animation:bp-marquee 55s linear infinite; }
.marquee:hover .marquee__track { animation-play-state:paused; }
.marquee img { height:280px; width:auto; flex:0 0 auto; border-radius:var(--r-md); object-fit:cover; }
@keyframes bp-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion:reduce){ .marquee__track{ animation:none; overflow-x:auto; } }

/* Brands We Trust — actual logos on a light band, no per-logo boxes */
.brands-band { background:var(--accent-2); }
.brands-band .eyebrow, .brands-band .eyebrow::before, .brands-band .eyebrow::after { color:#7d5f45; }
.brands-band .eyebrow::before, .brands-band .eyebrow::after { background:#7d5f45; }
.brands { display:flex; flex-wrap:wrap; gap:30px 56px; justify-content:center; align-items:center; }
.brand-logo { display:inline-flex; align-items:center; }
.brand-logo img { height:54px; width:auto; border-radius:0; opacity:.92; transition:opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.brand-logo:hover img { opacity:1; transform:translateY(-2px); }
@media (max-width:640px){ .brand-logo img { height:40px; } .marquee img{ height:200px; } }


/* ===== BPOC review round 3 fixes ===== */
/* Book buttons: MB widget strips padding/border to 0 -> force a real button box */
button.btn.mb_widget, a.btn.mb_widget,
.mb-full-width button, .mb-full-width a.btn,
.hero .mb_widget, .nav-side .mb_widget, .cta-banner .mb_widget {
  display:inline-block !important;
  padding:15px 34px !important;
  border:1px solid var(--accent-dark) !important;
  border-radius:var(--r-sm) !important;
  line-height:1.1 !important;
  height:auto !important;
  width:auto !important;
  font-family:var(--font-display) !important;
  text-transform:uppercase; letter-spacing:.08em; font-size:.86rem !important;
  background:var(--accent-dark) !important; color:#fff !important;
}
.nav-side .mb_widget { padding:11px 20px !important; font-size:.76rem !important; }
button.btn.mb_widget:hover, .hero .mb_widget:hover, .nav-side .mb_widget:hover, .cta-banner .mb_widget:hover {
  background:#7d5f45 !important; border-color:#7d5f45 !important;
}

/* Top utility bar: center all items together; clearer icons */
.topbar__inner { justify-content:center !important; gap:30px; flex-wrap:wrap; }
.topbar__left, .topbar__right { display:flex; align-items:center; gap:22px; }
.topbar__socials { gap:14px; }
.topbar__socials svg { width:15px; height:15px; }
.topbar__socials a { display:inline-flex; align-items:center; }

/* Add-ons: clean side-by-side cards instead of the numbered feature style */
.addons { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; max-width:900px; margin:26px auto 0; }
.addon { display:flex; gap:16px; align-items:flex-start; background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--r-lg); padding:22px 24px; text-align:left; }
.addon__plus { flex:0 0 auto; width:40px; height:40px; border-radius:50%; background:var(--accent-dark); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:700; line-height:1; }
.addon h3 { color:#fff; margin:2px 0 8px; font-size:1.05rem; }
.addon p { color:var(--ink-soft); font-size:.92rem; margin:0; }


/* ===== BPOC review round 4 ===== */
/* Center social glyphs inside their topbar circles */
.topbar__socials a { justify-content:center !important; }
/* Kill the brown halo: MB wraps the real button in an outer <button>/<a> with no .btn class.
   Style ONLY the real .btn; neutralize the wrapper so no tan box bleeds around it. */
.mb-full-width button:not(.btn):not(.mb_widget),
.mb-full-width a:not(.btn):not(.mb_widget) {
  background:transparent !important; padding:0 !important; border:0 !important;
  box-shadow:none !important; height:auto !important; min-height:0 !important;
  width:auto !important; border-radius:0 !important;
}
.mb-full-width, .mb-full-width > *, .mb-full-width > * > *, .mb-full-width > * > * > * { background:transparent !important; }


/* ===== BPOC review round 5 ===== */
/* Headings → Permanent Marker (client now wants it everywhere) */
:root { --font-display:"Permanent Marker", cursive; --font-serif-italic:"Permanent Marker", cursive; }
h1,h2,h3,h4 { letter-spacing:.01em; }
.serif-italic { font-style:normal; }
/* Permanent Marker is a busy face — ease the all-caps on smaller headings for legibility */
h3, h4 { text-transform:none; }

/* Nav: keep every item on a single line */
:root { --container:1420px; }
.nav-side { gap:15px !important; }
.nav-side a, .nav-dropdown > button { white-space:nowrap !important; }

/* Home hero: taller + lighter overlay */
.hero { min-height:100vh !important; }
.hero::after { background:linear-gradient(180deg, rgba(12,12,11,.22) 0%, rgba(12,12,11,.30) 45%, rgba(12,12,11,.62) 100%) !important; }
.hero--short::after { background:linear-gradient(180deg, rgba(12,12,11,.40), rgba(12,12,11,.70)) !important; }


/* ===== BPOC review round 6 ===== */
/* Nav items + buttons → Funnel Sans (headings h1-h4 stay Permanent Marker) */
.nav-side a, .nav-dropdown > button, .nav-main a, .nav-main .nav-dropdown > button {
  font-family:var(--font-body) !important; font-weight:600 !important; letter-spacing:.03em !important; text-transform:uppercase;
}
.btn, .hunt-card__btn, .recipe-jump a,
button.btn.mb_widget, a.btn.mb_widget, .hero .mb_widget, .cta-banner .mb_widget, .nav-side .mb_widget, .nav-wrap > .mb_widget {
  font-family:var(--font-body) !important; font-weight:700 !important;
}

/* Logo-LEFT nav layout (was centered logo) */
.nav-wrap { display:flex !important; align-items:center; gap:24px; justify-content:flex-start; }
.brand { margin:0; flex:0 0 auto; }
.brand img { height:60px; }
.site-header.is-scrolled .brand img { height:50px; }
.nav-main { display:flex; align-items:center; gap:16px; flex:1 1 auto; flex-wrap:nowrap; justify-content:flex-start; }
.nav-wrap > .mb_widget { margin-left:auto; flex:0 0 auto; }
/* Recipes is the last dropdown and sits near the right edge → open its panel right-aligned */
.nav-main .nav-dropdown:last-of-type .nav-dropdown__panel { left:auto; right:0; }

/* "What We Hunt / Bag Limits / What to Expect" (+ Licensing/Packing) as cards */
.info-grid { gap:22px; }
.info-col { background:#211f1b; border:1px solid var(--line); border-radius:var(--r-lg); padding:26px 26px 28px; box-shadow:var(--s-card); }

/* Mobile: hide standalone book btn (booking via hero/CTA); keep toggle right */
@media (max-width:1024px){
  .nav-wrap > .mb_widget { display:none !important; }
  .nav-toggle { margin-left:auto; }
}


/* ===== BPOC review round 7 ===== */
/* Desktop: group nav links + book button together on the right (no big gap) */
.nav-main { margin-left:auto !important; flex:0 1 auto !important; gap:16px; }
.nav-book { display:inline-flex; align-items:center; margin-left:6px; }

/* Hamburger toggle (own styling so it animates to an X) */
.nav-toggle { display:none; flex-direction:column; justify-content:center; gap:5px; width:32px; height:26px; background:none; border:0; cursor:pointer; padding:0; }
.nav-toggle span { display:block; width:100%; height:2px; border-radius:2px; background:#EDE8DE; transition:transform .3s var(--ease), opacity .2s; }

@media (max-width:1024px){
  .nav-wrap { gap:12px; justify-content:flex-start; }
  .nav-toggle { display:inline-flex; margin-left:auto; position:relative; z-index:230; }
  /* Off-canvas slide-in panel */
  .nav-main {
    position:fixed !important; top:0; right:0; height:100dvh; width:min(85vw,340px);
    margin:0 !important; padding:92px 24px 40px; gap:2px;
    flex-direction:column !important; align-items:stretch !important; justify-content:flex-start !important;
    background:#141312 !important; border-left:1px solid var(--line);
    box-shadow:-24px 0 60px rgba(0,0,0,.55);
    transform:translateX(108%); transition:transform .42s cubic-bezier(.2,.85,.25,1);
    overflow-y:auto; z-index:200; display:flex !important;
  }
  .site-header.is-open .nav-main { transform:translateX(0) !important; }
  /* dim backdrop */
  .site-header::after { content:""; position:fixed; inset:0; background:rgba(10,10,9,.55); opacity:0; visibility:hidden; transition:opacity .35s var(--ease); z-index:190; }
  .site-header.is-open::after { opacity:1; visibility:visible; }
  /* stacked links */
  .nav-main a, .nav-main .nav-dropdown > button { width:100%; padding:15px 6px !important; font-size:1rem !important; border-bottom:1px solid rgba(255,255,255,.06); justify-content:space-between; }
  .nav-dropdown { width:100%; }
  .nav-dropdown__panel { position:static !important; transform:none !important; opacity:1 !important; visibility:visible !important; box-shadow:none !important; border:0 !important; background:transparent !important; min-width:0 !important; padding:0 0 6px 14px !important; max-height:0; overflow:hidden; transition:max-height .32s var(--ease); display:block !important; }
  .nav-dropdown.open .nav-dropdown__panel { max-height:420px; }
  .nav-dropdown.open > button::after { transform:rotate(180deg); }
  .nav-dropdown__panel a { padding:11px 6px !important; font-size:.92rem !important; border-bottom:0; }
  .nav-book { margin:20px 0 0; width:100%; }
  .nav-book .mb_widget { width:100% !important; text-align:center; }
  /* hamburger -> X */
  .site-header.is-open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .site-header.is-open .nav-toggle span:nth-child(2){ opacity:0; }
  .site-header.is-open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* Mobile: info cards one per row (What We Hunt / Bag Limits / What to Expect + Licensing/Packing) */
@media (max-width:768px){ .info-grid { grid-template-columns:1fr !important; } }


/* ===== BPOC review round 8 ===== */
/* Logo sits close to the nav items (remove the auto gap that pushed nav right) */
.nav-wrap { gap:26px; justify-content:flex-start; }
.nav-main { margin-left:0 !important; }

/* Button hover legibility — the dark-theme var flip left --ink light, so
   .btn--ghost / .btn--ghost-light hovers were rendering light-on-white. Pin them. */
.btn.btn--ghost-light { color:#fff !important; border-color:rgba(255,255,255,.6) !important; }
.btn.btn--ghost-light:hover { background:var(--accent-2) !important; color:#191919 !important; border-color:var(--accent-2) !important; }
.btn.btn--ghost { color:var(--ink) !important; border:1px solid var(--line) !important; background:transparent !important; }
.btn.btn--ghost:hover { background:var(--accent-dark) !important; color:#fff !important; border-color:var(--accent-dark) !important; }


/* ===== BPOC review round 9 ===== */
/* Center the whole nav cluster (logo + items + book button) */
.nav-wrap { justify-content:center !important; }
.nav-main { margin-left:0 !important; }

/* Mobile: base template grid was suppressing the hamburger — force flex + show it */
@media (max-width:1024px){
  .site-header .nav-wrap { display:flex !important; justify-content:space-between !important; align-items:center; }
  .site-header .nav-toggle { display:inline-flex !important; margin-left:auto; }
}


/* ===== BPOC review round 10 (mobile + hero seam) ===== */
/* HAMBURGER FIX: base ".nav-toggle span{margin:5px 0}" + flex gap overflowed the
   26px button, so flex-shrink collapsed the bars to height:0 (invisible). Pin them. */
.nav-toggle span { margin:0 !important; height:3px !important; flex:0 0 3px !important; border-radius:2px; }
.nav-toggle { height:auto !important; padding:4px 0 !important; }

/* Prevent horizontal overflow from the off-canvas panel (kept page from going mobile) */
html, body { overflow-x:hidden; }

/* HERO: fade the overlay into the page background so there's no hard gradient seam
   at the bottom of the home hero (only the full home hero, not the short heroes). */
.hero:not(.hero--short)::after {
  background:linear-gradient(180deg, rgba(12,12,11,.20) 0%, rgba(12,12,11,.30) 42%, rgba(21,20,18,.72) 80%, #191919 100%) !important;
}

/* SLIDERS on mobile: auto-scroll marquees can stall on phones — make them swipeable */
@media (max-width:768px){
  .marquee { overflow-x:auto; -webkit-overflow-scrolling:touch; -webkit-mask-image:none; mask-image:none; scroll-snap-type:x proximity; }
  .marquee__track { animation:none; }
  .marquee img { height:230px; scroll-snap-align:start; }
  .carousel img { height:240px; }
}


/* ===== BPOC review round 11 ===== */
/* Remove the top utility bar on mobile (socials/phone/email) */
@media (max-width:1024px){ .topbar { display:none !important; } }


/* ===== BPOC review round 12 ===== */
/* Mobile: header flush to top of screen (topbar is hidden there, so the old top:44px left a gap) */
@media (max-width:1024px){ .site-header { top:0 !important; } }

/* Clean hamburger bars + a proper X when open */
.nav-toggle { width:30px; height:20px; gap:0 !important; padding:0 !important; justify-content:space-between !important; }
.nav-toggle span { height:3px !important; flex:0 0 3px !important; margin:0 !important; transform-origin:center; }
.site-header.is-open .nav-toggle span:nth-child(1){ transform:translateY(8.5px) rotate(45deg) !important; }
.site-header.is-open .nav-toggle span:nth-child(2){ opacity:0 !important; }
.site-header.is-open .nav-toggle span:nth-child(3){ transform:translateY(-8.5px) rotate(-45deg) !important; }

/* Parallax on hero background images (desktop only — fixed attachment is janky on iOS) */
@media (min-width:1025px){
  .hero, .hero--short { background-attachment:fixed; }
}


/* ===== BPOC review round 13 (mobile hamburger + carets) ===== */
/* Force a real 3-bar hamburger (round-10 height:auto was collapsing the bars into one block) */
.nav-toggle { width:30px !important; height:22px !important; gap:0 !important; padding:0 !important;
  display:none; flex-direction:column !important; align-items:stretch !important; justify-content:space-between !important; }
@media (max-width:1024px){ .site-header .nav-toggle { display:inline-flex !important; } }
.nav-toggle span { width:100% !important; height:3px !important; flex:0 0 3px !important; margin:0 !important; border-radius:2px; background:#EDE8DE !important; }
.site-header.is-open .nav-toggle span:nth-child(1){ transform:translateY(9.5px) rotate(45deg) !important; }
.site-header.is-open .nav-toggle span:nth-child(2){ opacity:0 !important; }
.site-header.is-open .nav-toggle span:nth-child(3){ transform:translateY(-9.5px) rotate(-45deg) !important; }

/* Dropdown caret: draw a crisp CSS triangle instead of a font glyph (renders everywhere) */
.nav-dropdown > button::after {
  content:"" !important; display:inline-block; width:0; height:0; margin-left:8px; vertical-align:middle;
  border-left:4px solid transparent; border-right:4px solid transparent; border-top:5px solid currentColor;
  transition:transform .2s var(--ease); opacity:.8;
}
.nav-dropdown:hover > button::after, .nav-dropdown.open > button::after { transform:rotate(180deg); }


/* ===== BPOC review round 14 ===== */
/* Remove the Book Your Hunt button from the mobile slide-in menu */
@media (max-width:1024px){ .nav-book { display:none !important; } }


/* ===== BPOC review round 15 ===== */
/* Replace pseudo-element caret (was getting a stray rotate) with clean inline SVG chevron */
.nav-dropdown > button::after { content:none !important; display:none !important; }
.nav-chev { width:11px; height:8px; margin-left:7px; display:inline-block; vertical-align:middle; opacity:.85; transition:transform .2s var(--ease); flex:0 0 auto; }
.nav-dropdown:hover .nav-chev, .nav-dropdown.open .nav-chev { transform:rotate(180deg); }

/* Hero overlay: reach solid background sooner so the bottom blends seamlessly (no seam on mobile) */
.hero:not(.hero--short)::after {
  background:linear-gradient(180deg, rgba(12,12,11,.30) 0%, rgba(12,12,11,.32) 45%, rgba(20,19,18,.85) 74%, #191919 92%, #191919 100%) !important;
}


/* ===== BPOC review round 16 — footer 2-column layout ===== */
.site-footer { background:#0d0d0c; border-top:1px solid var(--line); padding:0; }
.footer-grid { display:grid; grid-template-columns:1.15fr 1fr; gap:48px; align-items:center; max-width:var(--container); margin:0 auto; padding:58px 28px; }
.footer-col--left { text-align:center; }
.footer-logo { display:inline-block; }
.footer-logo img { height:135px; width:auto; border-radius:0; }
.footer-nav { margin-top:22px; line-height:2.2; }
.footer-nav a { font-family:var(--font-body); font-weight:600; text-transform:uppercase; letter-spacing:.05em; font-size:.84rem; color:#DCD6CB; }
.footer-nav a:hover { color:var(--accent); }
.footer-nav .sep { color:var(--muted); }
.footer-col--right { display:flex; flex-direction:column; align-items:flex-end; text-align:right; }
.site-footer .footer-h { font-family:var(--font-display); font-size:clamp(1.6rem,2.4vw,2.1rem); color:#fff; letter-spacing:.04em; margin:0 0 18px; text-transform:none; }
.footer-col--right .socials { display:flex; gap:18px; justify-content:flex-end; margin-bottom:20px; }
.footer-col--right .socials svg { width:22px; height:22px; fill:#D9D3C8; }
.footer-col--right .socials a:hover svg { fill:var(--accent); }
.footer-contact { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:13px; align-items:flex-end; }
.footer-contact a { display:inline-flex; align-items:center; gap:10px; color:#D9D3C8; font-size:1rem; }
.footer-contact a:hover { color:var(--accent); }
.footer-contact .ci { width:17px; height:17px; fill:var(--accent); flex:0 0 auto; }
/* bottom credit bar */
.footer-bottom { background:#1b1a15; border-top:1px solid var(--line); }
.footer-bottom__inner { display:flex; justify-content:space-between; align-items:center; gap:16px; max-width:var(--container); margin:0 auto; padding:18px 28px; font-size:.82rem; color:var(--muted); letter-spacing:.03em; }
.footer-bottom__inner a { color:var(--accent); }
.footer-bottom__inner a:hover { color:#fff; }
@media (max-width:820px){
  .footer-grid { grid-template-columns:1fr; gap:34px; text-align:center; padding:46px 24px; }
  .footer-col--right { align-items:center; text-align:center; }
  .footer-col--right .socials { justify-content:center; }
  .footer-contact { align-items:center; }
  .footer-logo img { height:110px; }
  .footer-bottom__inner { flex-direction:column; text-align:center; gap:8px; }
}


/* ===== BPOC review round 17 — Gallery page: real grid galleries + bigger titles ===== */
.gallery-grid { columns:4 250px; column-gap:14px; margin-top:6px; }
.gallery-grid .gx { display:block; margin:0 0 14px; break-inside:avoid; border-radius:var(--r-md); overflow:hidden; }
.gallery-grid img { width:100%; height:auto; display:block; border-radius:var(--r-md); transition:transform .4s var(--ease), filter .3s; }
.gallery-grid .gx:hover img { transform:scale(1.04); filter:brightness(1.08); }
@media (max-width:900px){ .gallery-grid { columns:2 160px; } }
@media (max-width:560px){ .gallery-grid { columns:2 140px; column-gap:10px; } .gallery-grid .gx{ margin-bottom:10px; } }
.gallery-title { font-family:var(--font-display); text-transform:none; text-align:center; color:#fff;
  font-size:clamp(2.4rem, 5vw, 3.8rem); line-height:1.05; margin:0 0 30px; }


/* ===== BPOC review round 18 — recipe jump 4/3 split ===== */
.recipe-jump--balanced { max-width:1040px; margin:0 auto; }
.recipe-jump--balanced .rj-break { flex-basis:100%; width:100%; height:0; margin:0; padding:0; }
@media (max-width:760px){ .recipe-jump--balanced .rj-break { display:none; } }


/* ===== BPOC review round 19 — fonts, centered logo, centered footer, horizontal galleries ===== */

/* (1) FONTS — drop Permanent Marker; restore clean display + serif faces */
:root { --font-display:"Oswald","Archivo Narrow",Impact,sans-serif; --font-serif-italic:"Bree Serif",Georgia,serif; }
.serif-italic { font-style:normal; }

/* (2) CENTERED LOGO HEADER (desktop) — logo on its own centered row, nav centered beneath it */
@media (min-width:1025px){
  .site-header .nav-wrap { flex-direction:column !important; align-items:center !important; justify-content:center !important; gap:13px !important; }
  .site-header .brand { margin:0 auto !important; order:0; }
  .site-header .nav-main { margin:0 auto !important; justify-content:center !important; flex:0 1 auto !important; flex-wrap:wrap !important; order:1; }
  .site-header .brand img { height:74px; }
  .site-header.is-scrolled .brand img { height:54px; transition:height .25s var(--ease); }
}

/* (3) CENTERED FOOTER — single centered column, everything centered (client request) */
.site-footer .footer-grid { grid-template-columns:1fr !important; gap:30px !important; text-align:center !important; justify-items:center !important; }
.site-footer .footer-col--left { text-align:center !important; }
.site-footer .footer-col--right { align-items:center !important; text-align:center !important; }
.site-footer .footer-col--right .socials { justify-content:center !important; }
.site-footer .footer-contact { align-items:center !important; }
.site-footer .footer-bottom__inner { flex-direction:column !important; justify-content:center !important; align-items:center !important; text-align:center !important; gap:8px; }

/* (4) GALLERY — horizontal scrolling filmstrip per category (client wanted horizontal scroll, not masonry) */
.gallery-grid { columns:auto !important; column-gap:0 !important; display:flex !important; flex-wrap:nowrap !important; gap:14px !important; overflow-x:auto !important; -webkit-overflow-scrolling:touch; scroll-snap-type:x proximity; padding-bottom:16px; scrollbar-width:thin; }
.gallery-grid .gx { flex:0 0 auto !important; width:min(72vw,380px) !important; margin:0 !important; scroll-snap-align:start; }
.gallery-grid img { width:100% !important; height:270px !important; object-fit:cover !important; }
.gallery-grid::-webkit-scrollbar { height:8px; }
.gallery-grid::-webkit-scrollbar-thumb { background:rgba(255,255,255,.25); border-radius:8px; }
@media (max-width:560px){ .gallery-grid .gx { width:78vw !important; } .gallery-grid img { height:230px !important; } }


/* ===== BPOC review round 22 — sitewide round-2 edits (buttons, dashes, +signs, paragraph color, parallax CTA) ===== */

/* (1) BUTTONS — all buttons get the "Our Story" ghost treatment: subtle accent outline + text, fills accent on hover.
   Dark text on light sections, white text on dark/hero/CTA contexts. */
.btn.btn--primary, button.mb_widget, button.mb_widget.btn--primary, a.btn.mb_widget {
  background:transparent !important; border:1.6px solid var(--accent) !important;
  color:var(--ink) !important; box-shadow:none !important;
}
.btn.btn--primary:hover, button.mb_widget:hover, button.mb_widget.btn--primary:hover, a.btn.mb_widget:hover {
  background:var(--accent) !important; color:#fff !important; border-color:var(--accent) !important;
}
.hero .btn--primary, .hero button.mb_widget, .cta-banner .btn--primary, .cta-banner button.mb_widget,
.site-header .btn--primary, .site-header button.mb_widget, .section--dark .btn--primary, .section--dark button.mb_widget {
  color:#fff !important;
}

/* (2) Checkmarks → dashes */
.ticklist li::before { content:"\2014" !important; font-weight:400 !important; color:var(--accent) !important; }

/* (3) Add-on "+" badges look clickable but aren't — remove them, keep the text */
.addon__plus { display:none !important; }
.addon { gap:0 !important; }

/* (4) Two-paragraph color mismatch — normalize lead + body paragraphs to the same tone */
.prose-narrow p, .prose-narrow p.lead, .split p, .split p.lead, .split__text p { color:var(--ink-soft) !important; }

/* (5) Parallax image background for "Book Your Trip With Us" CTA banners.
   Per-page sets style="--cta-img:url('...')"; the existing ::before overlay keeps text legible. */
.cta-banner[style*="--cta-img"] {
  background-image:var(--cta-img) !important; background-size:cover !important;
  background-position:center !important; background-repeat:no-repeat !important;
}
@media (min-width:1025px){ .cta-banner[style*="--cta-img"] { background-attachment:fixed !important; } }
.cta-banner[style*="--cta-img"]::before { background:rgba(15,15,14,.62) !important; }

/* (6) Pursuit "image to the left of text" standard for package pages */
.pursuit-split { display:grid; grid-template-columns:0.85fr 1.15fr; gap:40px; align-items:center; }
.pursuit-split__media img { width:100%; height:100%; max-height:520px; object-fit:cover; border-radius:var(--r-lg); display:block; }
@media (max-width:860px){ .pursuit-split { grid-template-columns:1fr; gap:24px; } .pursuit-split__media img { max-height:340px; } }


/* ===== BPOC review round 20 — fix centered header: Book button was floating far-right & overflowing the bar ===== */
@media (min-width:1025px){
  .site-header .nav-wrap { flex-direction:column !important; align-items:center !important; justify-content:center !important; gap:11px !important; padding:10px 24px 15px !important; }
  /* nav row sizes to its content and centers as one group (logo already centered on the row above) */
  .site-header .nav-main { width:auto !important; max-width:100% !important; margin:0 auto !important; justify-content:center !important; align-items:center !important; flex-wrap:wrap !important; gap:12px 18px !important; flex:0 1 auto !important; }
  /* kill every right-push margin (rounds 6-7 left margin-left:auto; the MB widget wrapper adds its own) so the CTA sits inline with the links, not pinned to the edge */
  .site-header .nav-main .nav-book,
  .site-header .nav-main .mb_widget,
  .site-header .nav-main .mb-full-width,
  .site-header .nav-wrap > .mb_widget { margin-left:0 !important; margin-right:0 !important; }
  /* trim CTA height so it stays inside the header instead of spilling into the hero */
  .site-header .nav-book .mb_widget { padding:11px 22px !important; }
}


/* ===== BPOC review round 21 — header was a FIXED single-row height (96px) clipping the centered two-row logo+nav; grow it to fit both rows ===== */
@media (min-width:1025px){
  /* --nav-h drives both the header height AND the hero content offset (calc(topbar+nav-h+...)), so bumping it keeps everything aligned */
  :root { --nav-h:140px; }
  .site-header { height:var(--nav-h) !important; }
  .site-header .nav-wrap { height:100% !important; padding-top:12px !important; padding-bottom:14px !important; gap:9px !important; }
  .site-header .brand { display:flex; align-items:center; }
  .site-header .brand img { height:66px !important; width:auto !important; }
  .site-header.is-scrolled .brand img { height:52px !important; }
}


/* ===== BPOC round 23 — final embossed logo: near-black header/footer so the logo's black matte blends seamlessly ===== */
.topbar { background:#070707 !important; }
.site-header { background:rgba(7,7,7,.97) !important; }
.site-header.is-scrolled { background:rgba(4,4,4,.99) !important; }
.site-footer { background:#060606 !important; }
.footer-bottom { background:#0d0d0b !important; }


/* ===== BPOC round 24 — keep .mb_widget booking buttons in the ghost style after MB widget hydration ===== */
.mb_widget[class], button.mb_widget[class], a.mb_widget[class],
.mb-full-width button[class], .mb-full-width .mb_widget[class] {
  background:transparent !important; border:1.6px solid var(--accent) !important; color:#fff !important; box-shadow:none !important;
}
.mb_widget[class]:hover, button.mb_widget[class]:hover, .mb-full-width button[class]:hover {
  background:var(--accent) !important; color:#fff !important; border-color:var(--accent) !important;
}
/* light-section booking buttons (e.g. under pricing) → dark text for contrast */
.section:not(.section--dark) .price-feature .mb_widget[class],
.section:not(.section--dark) .price-feature ~ p .mb_widget[class] { color:var(--ink) !important; }


/* ===== BPOC round 25 — home polish ===== */
/* Choose Your Pursuit / Fishing cards: center the text + button */
.hunt-card__body { text-align:center; align-items:center; }
.hunt-card__body .hunt-card__btn { margin-left:auto; margin-right:auto; }
/* Home hero: show more of the landscape (less zoomed) */
body[data-page="home"] .hero { background-position:center 38% !important; }

/* home hero subline on one line */
body[data-page="home"] .hero .lead { font-size:clamp(.92rem,1.5vw,1.12rem) !important; max-width:none !important; }


/* ===== BPOC round 26 — round-3 client feedback ===== */

/* (A) LOGO bigger (transparent now); taller header before scroll */
@media (min-width:1025px){
  :root { --nav-h:178px; }
  .site-header .brand img { height:96px !important; }
  .site-header.is-scrolled .brand img { height:64px !important; }
}
.site-header .brand img { height:74px; }

/* (B) ALL BUTTONS = ghost (transparent bg + accent border + fill on hover). Beats MB widget + any fill. */
.btn, a.btn, button.btn, .btn--primary, .btn--ghost, .btn--ghost-light,
.mb_widget, button.mb_widget, a.mb_widget, .mb_widget[class], .mb-full-width button[class] {
  background:transparent !important; background-color:transparent !important; background-image:none !important;
  border:1.6px solid var(--accent) !important; box-shadow:none !important; color:var(--ink) !important;
}
.btn:hover, a.btn:hover, button.btn:hover, .btn--primary:hover, .btn--ghost:hover, .btn--ghost-light:hover,
.mb_widget:hover, button.mb_widget:hover, a.mb_widget:hover, .mb_widget[class]:hover, .mb-full-width button[class]:hover {
  background:var(--accent) !important; background-color:var(--accent) !important; color:#fff !important; border-color:var(--accent) !important;
}
/* white text on dark contexts */
.hero .btn, .hero .mb_widget, .cta-banner .btn, .cta-banner .mb_widget,
.site-header .btn, .site-header .mb_widget, .section--dark .btn, .section--dark .mb_widget,
.marquee ~ * .btn, .btn--ghost-light { color:#fff !important; }

/* (C) FOOTER — compact, flowing across one row (not stacked) */
.site-footer .footer-grid { display:flex !important; flex-direction:row !important; align-items:center !important;
  justify-content:space-between !important; gap:46px !important; text-align:left !important; padding:34px 40px !important; max-width:var(--container); margin:0 auto; }
.site-footer .footer-col--left { display:flex !important; align-items:center !important; gap:26px !important; text-align:left !important; flex:1 1 auto; }
.site-footer .footer-logo img { height:84px !important; }
.site-footer .footer-blurb { margin:0 !important; max-width:46ch; font-size:.9rem; color:#C9C2B6; }
.site-footer .footer-col--right { align-items:flex-end !important; text-align:right !important; flex:0 0 auto; }
.site-footer .footer-h { margin:0 0 10px !important; font-size:1.2rem !important; }
.site-footer .footer-col--right .socials { justify-content:flex-end !important; margin-bottom:10px !important; }
.site-footer .footer-contact { align-items:flex-end !important; gap:7px !important; }
.site-footer .footer-bottom__inner { flex-direction:row !important; justify-content:space-between !important; }
@media (max-width:860px){
  .site-footer .footer-grid { flex-direction:column !important; text-align:center !important; gap:24px !important; }
  .site-footer .footer-col--left { flex-direction:column !important; text-align:center !important; }
  .site-footer .footer-col--right { align-items:center !important; text-align:center !important; }
  .site-footer .footer-col--right .socials, .site-footer .footer-contact { justify-content:center !important; align-items:center !important; }
  .site-footer .footer-bottom__inner { flex-direction:column !important; gap:8px; }
}

/* (D) PARALLAX glitch fix — the reveal transform on the banner broke background-attachment:fixed (jump on scroll).
   Neutralize transform/opacity on CTA banners that carry a bg image so the fixed bg stays smooth. */
.cta-banner[style*="--cta-img"] { transform:none !important; opacity:1 !important; }

/* (E) Choose Your Pursuit heading: wider so the first line stays on one line */
body[data-page="home"] .section__head { max-width:1140px !important; }
body[data-page="home"] .section__head h2 { font-size:clamp(2rem,3.4vw,2.9rem) !important; }

/* book button placed under the price, in the price column */
.price-feature__book { margin-top:22px; }
.price-feature__book .btn, .price-feature__book .mb_widget { width:100%; }


/* ===== BPOC round 27 — beat the MB widget's runtime [data-mb-loaded] fill (higher specificity + !important) ===== */
html body .mb_widget[data-mb-loaded],
html body button.mb_widget[data-mb-loaded],
html body a.mb_widget[data-mb-loaded] {
  background:transparent !important; background-color:transparent !important; background-image:none !important;
  border:1.6px solid var(--accent) !important; box-shadow:none !important;
}
html body .mb_widget[data-mb-loaded]:hover,
html body button.mb_widget[data-mb-loaded]:hover,
html body a.mb_widget[data-mb-loaded]:hover {
  background:var(--accent) !important; background-color:var(--accent) !important; color:#fff !important; border-color:var(--accent) !important;
}
/* text color by context */
html body .site-header .mb_widget[data-mb-loaded], html body .hero .mb_widget[data-mb-loaded],
html body .cta-banner .mb_widget[data-mb-loaded], html body .section--dark .mb_widget[data-mb-loaded] { color:#fff !important; }
html body .price-feature .mb_widget[data-mb-loaded] { color:var(--ink) !important; }


/* ===== BPOC round 28 — Speck Ops style header: socials + contact flank centered logo; remove announcement bar ===== */
.topbar { display:none !important; }
:root { --topbar-h:0px; }
.site-header { top:0 !important; }

@media (min-width:1025px){
  .site-header .nav-wrap { flex-direction:column !important; align-items:stretch !important; }
  .site-header .header-top { display:grid !important; grid-template-columns:1fr auto 1fr; align-items:center; width:100%; gap:24px; }
  .site-header .header-top .brand { justify-self:center; margin:0 !important; }
  .site-header .header-social { justify-self:start; }
  .site-header .header-contact { justify-self:end; }
  .site-header .nav-main { justify-content:center !important; }
}
.header-social, .header-contact { display:flex; align-items:center; gap:18px; }
.header-social a, .header-contact a {
  display:inline-flex; align-items:center; justify-content:center; color:#EDE8DE;
  border:0 !important; background:transparent !important; width:auto; height:auto; padding:0;
  transition:transform .18s var(--ease), color .18s var(--ease);
}
.header-social a svg, .header-contact a svg { width:25px; height:25px; fill:currentColor; display:block; }
.header-social a:hover, .header-contact a:hover { color:var(--accent) !important; transform:scale(1.18); }

/* mobile: drop the flank icons, keep logo centered + hamburger */
@media (max-width:1024px){
  .site-header .nav-wrap { flex-direction:row !important; justify-content:space-between !important; align-items:center; }
  .site-header .header-top { display:flex !important; justify-content:flex-start; align-items:center; flex:0 1 auto; }
  .site-header .header-social, .site-header .header-contact { display:none !important; }
}


/* ===== BPOC round 29 — header: icons closer to logo, divider line, distinct on-scroll compact header ===== */
@media (min-width:1025px){
  :root { --nav-h:200px; }

  /* TOP STATE: socials + logo + contact clustered in the center (icons near the logo), divider under, big logo */
  .site-header:not(.is-scrolled) .header-top {
    display:flex !important; justify-content:center !important; align-items:center !important;
    gap:54px !important; width:100%;
    border-bottom:1px solid rgba(212,196,160,.28); padding-bottom:16px; margin-bottom:6px;
  }
  .site-header:not(.is-scrolled) .header-social,
  .site-header:not(.is-scrolled) .header-contact { justify-self:auto !important; }
  .site-header:not(.is-scrolled) .brand img { height:112px !important; }
  .site-header .nav-social { display:none; }

  /* SCROLLED STATE: compact single row — small logo left, nav centered, book + socials right */
  .site-header.is-scrolled { height:88px !important; }
  .site-header.is-scrolled .nav-wrap { flex-direction:row !important; align-items:center !important; gap:30px !important; padding:0 28px !important; }
  .site-header.is-scrolled .header-top { display:block !important; border:0 !important; padding:0 !important; margin:0 !important; flex:0 0 auto; }
  .site-header.is-scrolled .header-social, .site-header.is-scrolled .header-contact { display:none !important; }
  .site-header.is-scrolled .brand { margin:0 !important; }
  .site-header.is-scrolled .brand img { height:52px !important; }
  .site-header.is-scrolled .nav-main { flex:1 1 auto !important; justify-content:center !important; margin:0 !important; }
  .site-header.is-scrolled .nav-social { display:inline-flex !important; align-items:center; gap:14px; margin-left:6px; }
}
/* nav-social icon styling (scrolled) */
.nav-social a { color:#EDE8DE; display:inline-flex; align-items:center; border:0 !important; background:transparent !important; transition:transform .18s var(--ease), color .18s var(--ease); }
.nav-social a svg { width:22px; height:22px; fill:currentColor; display:block; }
.nav-social a:hover { color:var(--accent) !important; transform:scale(1.16); }
.site-header.is-scrolled .nav-book { margin-left:auto; }


/* ===== BPOC round 30 — fix scrolled header: force clean single row (no wrap) ===== */
@media (min-width:1025px){
  .site-header.is-scrolled .nav-wrap {
    display:flex !important; flex-direction:row !important; flex-wrap:nowrap !important;
    align-items:center !important; justify-content:flex-start !important; gap:26px !important; height:100%; padding:0 30px !important;
  }
  .site-header.is-scrolled .header-top { flex:0 0 auto !important; display:flex !important; align-items:center; }
  .site-header.is-scrolled .nav-main {
    flex:1 1 auto !important; flex-wrap:nowrap !important; margin:0 !important;
    justify-content:center !important; gap:18px !important; align-items:center !important;
  }
  .site-header.is-scrolled .nav-main > a,
  .site-header.is-scrolled .nav-dropdown > button { white-space:nowrap !important; }
  .site-header.is-scrolled .nav-book { margin-left:8px !important; }
  .site-header.is-scrolled .nav-social { margin-left:4px !important; }
}


/* ===== BPOC round 31 — scrolled header-top must shrink to the logo (was filling full width as a block) ===== */
@media (min-width:1025px){
  .site-header.is-scrolled .header-top { display:inline-flex !important; width:auto !important; max-width:max-content !important; flex:0 0 auto !important; align-items:center !important; }
  .site-header.is-scrolled .nav-main { flex:1 1 auto !important; justify-content:center !important; min-width:0 !important; }
}


/* ===== BPOC round 32 — social icon hover: no background fill, keep icon visible (was filling + hiding the glyph) ===== */
.header-social a:hover, .nav-social a:hover, .site-footer .socials a:hover, .topbar__socials a:hover {
  background:transparent !important; background-color:transparent !important; border-color:transparent !important;
  box-shadow:none !important; transform:scale(1.18);
}
.header-social a:hover svg, .nav-social a:hover svg, .site-footer .socials a:hover svg, .topbar__socials a:hover svg {
  fill:var(--accent) !important; color:var(--accent) !important;
}


/* ===== BPOC round 33 — uniform paragraph color within sections (lead was muted vs white body text) ===== */
.lead { color:var(--ink) !important; }
.prose-narrow p, .prose-narrow p.lead, .split p, .split p.lead, .split__text p, .section .wrap > p { color:var(--ink) !important; }
/* preserve the intentionally-styled contexts */
.hero .lead, .hero--short .lead { color:#EDE8DE !important; }
.cta-banner p, .cta-banner .lead { color:rgba(255,255,255,.9) !important; }


/* ===== BPOC round 34 — remove box border around footer social icons (icon-only, like header) ===== */
.site-footer .socials a { border:0 !important; width:auto !important; height:auto !important; background:transparent !important; box-shadow:none !important; }
.site-footer .socials a:hover { background:transparent !important; box-shadow:none !important; transform:translateY(-2px); }
.site-footer .socials a:hover svg { fill:var(--accent) !important; }


/* ===== BPOC round 35 ===== */
/* 35b — fixed/parallax hero: background stays static while the page scrolls over it (desktop; mobile falls back to scroll) */
.hero::before { background-attachment: fixed !important; animation: none !important; transform: none !important; }


/* ===== BPOC round 36 — one-pass carousels (scroll through once, stop at end; no continuous loop) ===== */
.marquee--once .marquee__track { animation:none !important; width:max-content; margin:0 auto; will-change:transform; }
@media (max-width:640px){ .marquee--once .marquee__track { margin:0; } }


/* ===== BPOC round 37 — contact: center the Get In Touch copy + cards (were left-aligned after removing the third card) ===== */
body[data-page="contact"] .section__head .lead { text-align:center; margin-left:auto; margin-right:auto; }
body[data-page="contact"] .contact-row { grid-template-columns:repeat(2, minmax(220px, 330px)) !important; justify-content:center; }
body[data-page="contact"] .contact-card { text-align:center; }
body[data-page="contact"] .contact-card__icon { margin-left:auto; margin-right:auto; }
@media (max-width:640px){ body[data-page="contact"] .contact-row { grid-template-columns:1fr !important; } }

/* ===== edit round (Jun-26): footer license line + carousel lightbox ===== */
.footer-contact li.lic{list-style:none;}
.footer-contact .lic-line{display:inline-flex;align-items:center;gap:8px;color:#D9D3C8;font-size:.92rem;white-space:nowrap;}
.footer-contact .lic-line .ci{width:17px;height:17px;fill:var(--accent);flex:0 0 auto;}

.marquee__track img,.gallery-grid img{cursor:zoom-in;}
.bp-lightbox{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;background:rgba(10,10,9,.93);padding:24px;cursor:zoom-out;opacity:0;transition:opacity .25s ease;}
.bp-lightbox.is-open{display:flex;opacity:1;}
.bp-lightbox img{max-width:94vw;max-height:90vh;width:auto;height:auto;border-radius:6px;box-shadow:0 24px 70px rgba(0,0,0,.6);cursor:default;}
.bp-lightbox__close{position:absolute;top:14px;right:22px;width:44px;height:44px;font-size:34px;line-height:1;color:#EDE8DE;background:none;border:none;cursor:pointer;font-family:inherit;}
.bp-lightbox__close:hover{color:var(--accent);}
