/* =========================================================
   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 {
  /* ===== RAPID ROOSTER — 60-30-10 =====
     60% dominant : #373B30  (header, dark sections, footer, large surfaces)
     30% secondary: #6B7650  (cards, borders, muted text, supporting elements)
     10% accent   : #AF5A20  (CTAs, highlights, badges, focus)            */
  --bg: #F7F4EC;            /* paper canvas */
  --bg-alt: #ECE8DA;
  --bg-dark: #373B30;       /* DOMINANT */
  --bg-darker: #2B2E25;
  --bg-mid: #434838;
  --ink: #373B30;           /* DOMINANT */
  --ink-soft: #4A4F40;
  --muted: #6B7650;         /* SECONDARY */
  --line: #C9CDBB;
  --accent: #AF5A20;        /* ACCENT — rust */
  --accent-dark: #8E4718;
  --accent-2: #6B7650;      /* SECONDARY — olive */
  --white: #FFFFFF;

  --font-display: "Oswald", "Archivo Narrow", Impact, sans-serif;
  --font-serif-italic: "DM Serif Display", "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "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: 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; }

/* ===== RECURRING-FIX HARDENING (v4 2026-07-28) ===== */

/* 1. Kill hero zoom (crops faces) — neutralize the t2-pan scale animation. */
.hero::before{animation:none!important;transform:none!important;}

/* 2. Logo-only header + footer brand (build.py emits the logo <img> when set,
      else the text spans). Centered brand -> center the logo. */
.brand__logo{height:52px;width:auto;display:block;margin:0 auto;}
.site-header:not(.is-scrolled) .brand__logo{height:64px;}
.footer-brand__logo{height:40px;width:auto;display:block;}

/* 3. Header/topbar phone — keep one line & legible; hide any nav-cta phone on
      mobile. (Timberline's tap-to-call lives in the slim topbar, which already
      drops the email + socials on mobile, so the phone is kept there.) */
.topbar__left a[href^="tel:"]{white-space:nowrap;}
.nav-cta a[href^="tel:"]{white-space:nowrap;}
@media(max-width:820px){.nav-cta a[href^="tel:"],.nav-cta .btn--ghost{display:none!important;}}

/* 4. Final CTA band — keep inner content at content width (never flush-left). */
.cta-banner{max-width:var(--container);margin-left:auto;margin-right:auto;}

/* 5. Contrast safety — hero overlay text over photos stays legible. */
.hero .eyebrow{text-shadow:0 1px 3px rgba(0,0,0,.45);}
.hero .lead,.hero h1{text-shadow:0 1px 4px rgba(0,0,0,.4);}

/* 6. Gallery — justified masonry, consistent gaps, full-size tiles (no crop). */
.gallery-strip{display:block!important;column-count:4;column-gap:12px;grid-template-columns:none!important;}
.gallery-strip img{width:100%;height:auto;display:block;aspect-ratio:auto!important;object-fit:initial!important;margin:0 0 12px;break-inside:avoid;-webkit-column-break-inside:avoid;border-radius:var(--r-sm);}
@media(max-width:900px){.gallery-strip{column-count:2!important;}}
@media(max-width:600px){.gallery-strip{column-count:1!important;}}

/* 7. Gallery lightbox — styles paired with the vanilla-JS lightbox in main.js. */
.mb-lightbox{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;background:rgba(8,10,9,.93);}
.mb-lightbox.is-open{display:flex;}
.mb-lightbox__img{max-width:90vw;max-height:90vh;width:auto;height:auto;display:block;border-radius:4px;box-shadow:0 12px 60px rgba(0,0,0,.6);}
.mb-lightbox__btn{position:absolute;display:flex;align-items:center;justify-content:center;width:54px;height:54px;border:0;border-radius:50%;background:rgba(0,0,0,.42);color:#fff;font-size:34px;line-height:1;cursor:pointer;transition:background .2s ease;}
.mb-lightbox__btn:hover{background:rgba(255,255,255,.22);}
.mb-lightbox__close{top:20px;right:24px;font-size:30px;}
.mb-lightbox__prev{left:24px;top:50%;transform:translateY(-50%);}
.mb-lightbox__next{right:24px;top:50%;transform:translateY(-50%);}
.gallery-strip img,.gallery-grid img,.gallery img{cursor:zoom-in;}
@media(max-width:600px){.mb-lightbox__btn{width:44px;height:44px;font-size:26px;}.mb-lightbox__prev{left:8px;}.mb-lightbox__next{right:8px;}.mb-lightbox__close{top:12px;right:12px;}}

/* 8. Pricing "$" superscript never overlaps the number. */
.price sup,.price-card .price sup{margin-right:2px;top:-.05em;position:relative;}

/* 9. Nav dropdown hover bridge — keep the panel open across the trigger->panel gap. */
.nav-dropdown:hover::after{display:block;}
.nav-dropdown:hover .nav-dropdown__panel{opacity:1;visibility:visible;transform:translateY(0);}

/* 10. Booking-widget hero-text-shrink guard — pin hero h1 above MB normalize CSS. */
.hero h1{font-size:clamp(2.8rem,6vw,5rem)!important;line-height:1.06!important;}

/* =========================================================
   RAPID ROOSTER — BUILD LAYER
   Dark-dominant header, animated mobile drawer, and the
   components this build adds on top of Timberline.
   ========================================================= */

.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--accent);color:#fff;
  padding:12px 20px;font-family:var(--font-display);letter-spacing:.14em;text-transform:uppercase;font-size:.85rem}
.skip-link:focus{left:12px;top:12px;color:#fff}

/* ---------- Topbar ---------- */
.topbar{background:var(--bg-darker);color:#E4E0D2}
.topbar a{color:#E4E0D2}
.topbar__season{letter-spacing:.14em;text-transform:uppercase;font-size:.72rem;color:#A9B096;
  font-family:var(--font-display);white-space:nowrap}
.topbar__right .btn{white-space:nowrap}
@media(max-width:1024px){.topbar__season{display:none}}

/* ---------- DARK HEADER (60% dominant surface) ---------- */
.site-header{background:rgba(55,59,48,.97) !important;backdrop-filter:saturate(1.1) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10)}
.site-header.is-scrolled{box-shadow:0 10px 34px -12px rgba(0,0,0,.5)}
.nav-side a,.nav-dropdown>button{color:#F2EFE4}
.nav-side a:hover,.nav-dropdown>button:hover{color:var(--accent)}
.nav-side a[aria-current="page"]{color:var(--accent)}
.nav-dropdown.is-active>button{color:var(--accent)}

/* Dropdown panel must NOT inherit the white nav-link colour (dark-header fix) */
.site-header .nav-dropdown__panel{background:#FFFFFF;border:1px solid var(--line);
  box-shadow:0 22px 48px -18px rgba(0,0,0,.45)}
.site-header .nav-dropdown__panel a,
.site-header .nav-dropdown__panel a:visited{color:var(--ink) !important}
.site-header .nav-dropdown__panel a:hover{color:#fff !important;background:var(--accent-2)}

/* Logo sizing */
.brand__logo{height:56px;width:auto;transition:height var(--t-med) var(--ease);border-radius:0}
.site-header.is-scrolled .brand__logo{height:46px}
@media(max-width:1024px){.brand__logo{height:44px}}

/* ---------- ANIMATED HAMBURGER ---------- */
.nav-toggle{width:46px;height:40px;position:relative;background:transparent;border:0;cursor:pointer;padding:0}
.nav-toggle span{position:absolute;left:9px;width:28px;height:2.5px;background:#F2EFE4;border-radius:2px;
  transition:transform 380ms cubic-bezier(.65,.05,.36,1),opacity 200ms ease,width 380ms cubic-bezier(.65,.05,.36,1),background 200ms ease}
.nav-toggle span:nth-child(1){top:12px}
.nav-toggle span:nth-child(2){top:19px;width:20px}
.nav-toggle span:nth-child(3){top:26px}
.nav-toggle:hover span{background:var(--accent)}
.site-header.is-open .nav-toggle span:nth-child(1){top:19px;transform:rotate(45deg);background:var(--accent)}
.site-header.is-open .nav-toggle span:nth-child(2){opacity:0;width:0;transform:translateX(14px)}
.site-header.is-open .nav-toggle span:nth-child(3){top:19px;transform:rotate(-45deg);background:var(--accent)}

/* ---------- MOBILE DRAWER ---------- */
.mobile-menu{position:fixed;left:0;right:0;top:calc(var(--topbar-h) + 64px);
  bottom:0;background:var(--bg-dark);
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateY(-14px);
  transition:opacity 320ms var(--ease),transform 420ms var(--ease),visibility 0s linear 420ms;
  overflow-y:auto;z-index:49;display:none}
.mobile-menu__inner{padding:28px 26px 60px;display:flex;flex-direction:column}
.mobile-menu a{font-family:var(--font-display);text-transform:uppercase;letter-spacing:.16em;
  font-size:1.12rem;color:#F2EFE4;padding:17px 4px;border-bottom:1px solid rgba(255,255,255,.10);
  opacity:0;transform:translateX(-26px)}
.mobile-menu a:hover,.mobile-menu a:active{color:var(--accent)}
.mobile-menu__cta{padding-top:28px;display:flex;flex-direction:column;gap:16px;align-items:stretch;
  opacity:0;transform:translateX(-26px)}
.mobile-menu__cta .btn{width:100%;justify-content:center}
.mobile-menu__phone{text-align:center;border-bottom:0 !important;color:var(--accent) !important;
  opacity:1 !important;transform:none !important;font-size:1rem}
body.menu-open .mobile-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);
  transition:opacity 260ms var(--ease),transform 380ms var(--ease),visibility 0s}
body.menu-open .mobile-menu a,
body.menu-open .mobile-menu__cta{
  animation:mmIn 460ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay:calc(60ms + (var(--i,1) * 48ms))}
@keyframes mmIn{from{opacity:0;transform:translateX(-26px)}to{opacity:1;transform:translateX(0)}}
body.menu-open{overflow:hidden}
@media(max-width:1024px){
  .mobile-menu{display:block}
  .nav-side{display:none !important}
}

/* ---------- Hero ---------- */
.hero::before,.hero--short::before{background-position:var(--hero-pos,center) !important;background-size:cover !important}
.hero h1,.hero--short h1{text-shadow:0 3px 26px rgba(0,0,0,.55)}
.hero .lead,.hero .eyebrow,.hero .breadcrumb{text-shadow:0 2px 14px rgba(0,0,0,.6)}
.hero__ctas{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}

/* ---------- Creed strip ---------- */
.creed{font-family:var(--font-display);text-transform:uppercase;letter-spacing:.34em;
  font-size:clamp(.95rem,2.4vw,1.35rem);color:var(--accent-2);margin:0}
.creed span{color:var(--accent)}

/* ---------- Layout helpers ---------- */
.wrap--narrow{max-width:880px}
.section--tall{padding-top:150px;padding-bottom:120px}
.small-note{color:var(--muted);font-size:.9rem}
.card-grid--2{grid-template-columns:repeat(auto-fit,minmax(340px,1fr))}
.feature-row--3{grid-template-columns:repeat(auto-fit,minmax(270px,1fr))}
.thanks-title{font-size:clamp(2.6rem,7vw,4.6rem) !important}

/* ---------- Pricing ---------- */
.price-wrap{max-width:760px;margin:0 auto}
.section--dark .price-block{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-md);padding:6px 26px}
.section--dark .price-row{border-bottom-color:rgba(255,255,255,.13)}
.section--dark .price-row__name,.section--dark .price-row__value{color:#F2EFE4}
.price-row{display:flex;justify-content:space-between;align-items:center;gap:20px;
  padding:20px 0;border-bottom:1px solid var(--line)}
.price-row:last-child{border-bottom:0}
.price-row__name{font-family:var(--font-display);text-transform:uppercase;letter-spacing:.1em;
  font-size:.95rem;line-height:1.35}
.price-row__name small{display:block;font-family:var(--font-body);text-transform:none;
  letter-spacing:0;font-size:.83rem;color:var(--muted);margin-top:5px}
.section--dark .price-row__name small{color:#A9B096}
.price-row__value{font-family:var(--font-display);font-weight:700;font-size:1.6rem;
  color:var(--accent);white-space:nowrap}
.price-row__value small{font-size:.78rem;font-weight:500;letter-spacing:.06em;color:var(--muted)}
.section--dark .price-row__value small{color:#A9B096}
.price-note{max-width:700px;margin:26px auto 0;text-align:center;font-size:.95rem;color:var(--muted)}
.section--dark .price-note{color:#C9CEB8}
.section--dark .price-note strong{color:var(--accent)}
.section--dark .price-note a{color:var(--accent)}

/* ---------- Video ---------- */
.video-frame{max-width:780px;margin:0 auto;border-radius:var(--r-lg);overflow:hidden;
  box-shadow:var(--s-card);background:#000;border:1px solid var(--line)}
.video-frame video{width:100%;height:auto;display:block;border-radius:0}

/* ---------- Tick lists ---------- */
.tick-list{list-style:none;padding:0;margin:0 0 18px}
.tick-list li{position:relative;padding-left:28px;margin-bottom:11px;line-height:1.6}
.tick-list li::before{content:"";position:absolute;left:0;top:.6em;width:9px;height:9px;
  background:var(--accent);transform:rotate(45deg)}
.tick-list__note{color:var(--muted);font-size:.88rem}

/* ---------- Info cards ---------- */
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:26px}
.info-card{background:#fff;border:1px solid var(--line);border-top:4px solid var(--accent-2);
  border-radius:var(--r-md);padding:32px 30px;box-shadow:var(--s-subtle)}
.info-card h3{font-size:1.15rem;margin-bottom:18px;color:var(--ink)}

/* ---------- Pull quote ---------- */
.pull-quote{font-family:var(--font-serif-italic);font-style:italic;font-size:clamp(1.35rem,3vw,2.1rem);
  line-height:1.45;color:#F2EFE4;max-width:900px;margin:14px auto 0;border:0;padding:0;
  position:relative}
.pull-quote::before,.pull-quote::after{content:'"';color:var(--accent);font-size:1.1em;line-height:0}

/* ---------- Contact ---------- */
.contact-form-shell{background:#fff;border:1px solid var(--line);border-radius:var(--r-md);
  padding:34px 30px;box-shadow:var(--s-card);min-height:120px}
.map-frame{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line);
  box-shadow:var(--s-card);line-height:0}
.map-frame iframe{display:block}
.cta-banner__btns{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:22px}

/* ---------- Gallery (masonry, natural aspect, lightbox) ---------- */
.gallery-grid{column-count:3;column-gap:18px}
.gallery-grid img{width:100%;margin:0 0 18px;break-inside:avoid;border-radius:var(--r-md);
  cursor:zoom-in;transition:transform var(--t-med) var(--ease),box-shadow var(--t-med) var(--ease)}
.gallery-grid img:hover{transform:translateY(-4px);box-shadow:var(--s-hover)}
.gallery-strip{column-count:3;column-gap:18px;display:block}
.gallery-strip img{width:100%;margin:0 0 18px;break-inside:avoid;border-radius:var(--r-md);cursor:zoom-in;
  transition:transform var(--t-med) var(--ease),box-shadow var(--t-med) var(--ease)}
.gallery-strip img:hover{transform:translateY(-4px);box-shadow:var(--s-hover)}
@media(max-width:900px){.gallery-grid,.gallery-strip{column-count:2}}
@media(max-width:560px){.gallery-grid,.gallery-strip{column-count:1}}

/* ---------- Footer ---------- */
.footer-brand__logo{height:52px;width:auto;border-radius:0;margin-bottom:18px}

/* ---------- MB booking widget: keep our buttons OUR buttons ---------- */
button.btn.mb_widget{font-family:var(--font-display) !important;text-transform:uppercase !important;
  letter-spacing:.14em !important;cursor:pointer}
.mb-full-width>div>div>button,.mb-full-width button.btn.btn--primary{
  background:var(--accent) !important;color:#fff !important;border-color:var(--accent) !important}

/* ---------- Reduced motion ---------- */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;
    transition-duration:.01ms !important;scroll-behavior:auto !important}
}

/* Short heroes sit over lighter photos (snow, sky) — deepen the scrim so
   the headline and eyebrow stay legible on every one of them. */
.hero--short::after{background:linear-gradient(180deg,rgba(24,26,20,.66) 0%,rgba(24,26,20,.52) 45%,rgba(24,26,20,.90) 100%) !important}
.hero--short .lead{color:rgba(255,255,255,.94)}

/* =========================================================
   REVISION PASS — 2026-08-07
   ========================================================= */

/* ---------- 1. Topbar: no CTA, everything centred ---------- */
.topbar__inner{justify-content:center;gap:18px}
.topbar__sep{width:1px;height:14px;background:rgba(255,255,255,.22);flex:0 0 auto}
.topbar__socials{gap:10px}
@media(max-width:1024px){
  /* season + its separators drop; keep phone and Facebook centred */
  .topbar__season,.topbar__sep{display:none}
}
@media(max-width:820px){.topbar__right .topbar__socials{display:flex}}

/* ---------- 2. Header CTA now reads "Book Your Hunt" ---------- */
.nav-side--right .btn--sm{padding:9px 15px;font-size:.72rem;letter-spacing:.11em}
@media(max-width:1180px){
  .nav-wrap{gap:18px}
  .nav-side a,.nav-dropdown>button{padding:10px 9px;font-size:.82rem;letter-spacing:.12em}
}

/* ---------- 3. Four-across feature rows ---------- */
.feature-row--4{grid-template-columns:repeat(4,1fr);gap:26px}
@media(max-width:1080px){.feature-row--4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.feature-row--4{grid-template-columns:1fr}}
.feature-row--4 .feature p{max-width:26ch;font-size:.95rem}

/* ---------- 4. Feature icons (replaces the serif diamond glyph) ---------- */
.feature__icon{display:inline-flex;align-items:center;justify-content:center;
  width:58px;height:58px;margin:0 auto 16px;border-radius:50%;
  border:1.5px solid var(--accent-2);background:rgba(107,118,80,.10);color:var(--accent)}
.feature__icon svg{width:26px;height:26px;display:block}
.section--dark .feature__icon{border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.07)}
.section--alt .feature__icon{background:rgba(107,118,80,.13)}

/* ---------- 5. Contact form: no white card ---------- */
.contact-form-shell--bare{background:transparent !important;border:0 !important;
  box-shadow:none !important;padding:0 !important}

/* ---------- 6. Mobile drawer must fit without scrolling ---------- */
@media(max-width:1024px){
  .mobile-menu{
    /* dvh tracks collapsing browser chrome; vh is the fallback */
    height:calc(100vh - (var(--topbar-h) + 64px));
    height:calc(100dvh - (var(--topbar-h) + 64px));
    bottom:auto;overflow-y:auto;-webkit-overflow-scrolling:touch}
  .mobile-menu__inner{min-height:100%;padding:14px 24px 20px;justify-content:space-between}
  .mobile-menu a{padding:clamp(9px,1.55vh,15px) 4px;font-size:clamp(.95rem,2.5vh,1.08rem)}
  .mobile-menu__cta{padding-top:clamp(12px,2vh,20px);gap:clamp(8px,1.4vh,14px)}
  .mobile-menu__cta .btn{padding:clamp(11px,1.7vh,15px) 24px}
  .mobile-menu__phone{padding:2px 4px !important;font-size:.95rem}
}
/* Very short viewports (landscape phones, small Androids) */
@media(max-width:1024px) and (max-height:620px){
  .mobile-menu a{padding:7px 4px;font-size:.9rem}
  .mobile-menu__inner{padding:8px 24px 14px}
}

/* Contact cards share the feature icon treatment */
.contact-card__icon{display:inline-flex;align-items:center;justify-content:center;
  width:56px;height:56px;margin:0 auto 14px;border-radius:50%;font-size:0;
  border:1.5px solid var(--accent-2);background:rgba(107,118,80,.10);color:var(--accent)}
.contact-card__icon svg{width:25px;height:25px;display:block}

/* Nav labels stay on one line now that the CTA reads "Book Your Hunt" */
.nav-side a,.nav-dropdown>button{white-space:nowrap}
@media(max-width:1280px){.nav-wrap{gap:14px;padding:0 20px}}

/* Important license-purchase callout (license-pricing page) */
.license-alert{max-width:680px;margin:0 auto 40px;padding:26px 28px;text-align:center;
  background:var(--white);border:1.5px solid var(--accent);border-left:5px solid var(--accent);
  border-radius:var(--r-md);box-shadow:var(--s-card)}
.license-alert__label{margin:0 0 8px;font-family:var(--font-display);text-transform:uppercase;
  letter-spacing:.14em;font-size:.82rem;color:var(--accent)}
.license-alert__text{margin:0 0 18px;color:var(--ink-soft);line-height:1.55}
.license-alert .btn{margin:0}
@media(max-width:640px){.license-alert{padding:22px 20px;margin-bottom:30px}}

/* ---------- Facebook reel embed (gallery) ----------
   The player is a fixed-size third-party iframe. Facebook's docs say not to
   CSS-resize the plugin, so the frame is sized to the player rather than the
   other way round, and the dark frame absorbs the player's own control band. */
.reel-media{display:flex;justify-content:center}
.reel-frame{width:340px;max-width:100%;background:#000;border:1px solid var(--line);
  border-radius:var(--r-md);box-shadow:var(--s-card);overflow:hidden;line-height:0}
.reel-frame iframe{display:block;width:340px;height:420px;border:0}
.reel-copy .eyebrow{margin-bottom:14px}
.reel-copy h2{margin-bottom:20px}
.reel-copy p{color:var(--ink-soft);line-height:1.65}
.reel-copy__more{font-size:.94rem}
.reel-copy .btn{margin-top:10px}
@media (max-width:900px){
  .reel-media{margin-bottom:4px}
}
@media (max-width:359px){
  /* the player cannot shrink below its requested width, so scale the frame */
  .reel-frame{transform:scale(.86);transform-origin:top center}
}


/* --- feedback 2026-08-26: owner asked to make the video layout "a little less
   wide to show the video better". Both source files are 960x540, so the old
   940px frame was rendering them at ~98% scale where any softness shows.
   780px keeps them comfortably under native size, which reads sharper and
   tightens the column. Applies to all three video sections for consistency. */
.video-frame{max-width:780px}
@media (max-width:820px){.video-frame{max-width:100%}}


/* --- CLIENT FEEDBACK 2026-08-31: "additional videos for the website".
       Two more landscape clips from the owner, sitting under the existing
       story video as a two-up. Same click-to-load pattern as the first one
       (poster + preload="none") so nothing downloads until someone presses
       play, which matters because the sound is the point of these. --- */
.video-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
  max-width:1040px; margin:26px auto 0;
}
.video-frame--sm{max-width:none; margin:0; display:flex; flex-direction:column}
.video-frame--sm figcaption{
  background:var(--surface,#fff); color:var(--ink);
  font-size:.92rem; line-height:1.4; padding:12px 16px; margin:0;
}
@media (max-width:760px){
  .video-grid{grid-template-columns:1fr; gap:16px; margin-top:20px}
}


/* --- CLIENT FEEDBACK 2026-09-02: third clip added to the same section (the
       Facebook one from the 8/25 note, now self-hosted like the others).
       Three landscape clips read better as a three-up than a two-up with an
       orphan on the second row, and at ~333px each they sit well under the
       960px native width, which is the sharpness the owner asked for on 8/26.
       minmax(0,1fr) rather than 1fr so a long caption word cannot push one
       column wider than the others. Tablet drops to two-up, phone to one. --- */
.video-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){
  .video-grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  .video-grid--3{grid-template-columns:minmax(0,1fr)}
}
/* At three-up the tiles are narrower, so captions wrap to different line
   counts and the grid's default stretch left a band of the black frame
   showing under the shortest caption. Letting the caption box absorb the
   leftover height keeps every card bottom flush and white instead. */
.video-grid--3 .video-frame--sm figcaption{flex:1 1 auto}
