/* =========================================================
   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: #F3F6F9;            /* cool fog / light water */
  --bg-alt: #E2EBF2;        /* slightly darker cool wash */
  --bg-dark: #0B1A24;       /* deep water navy */
  --bg-darker: #050D14;     /* near-black (logo bg) */
  --bg-mid: #11263A;        /* mid deep navy */
  --ink: #0A0F14;
  --ink-soft: #1B2630;
  --muted: #5A6874;
  --line: #CCD8E0;
  --accent: #36AADE;        /* logo blue — bright lake blue */
  --accent-dark: #1E8AB8;   /* hover / deeper state */
  --accent-2: #0E2A3D;      /* deep navy — layering + sections */
  --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(14, 42, 61, 0.10);
  --s-card:   0 8px 24px -8px rgba(14, 42, 61, 0.28);
  --s-hover:  0 18px 44px -14px rgba(14, 42, 61, 0.38);
  --s-stamp:  0 1px 0 #00000012, 0 8px 22px -8px rgba(14,42,61,.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) !important;
  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; }
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--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.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--ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); box-shadow: none; }
.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(--accent);
  color: #FFFFFF;
  height: var(--topbar-h);
  font-size: .82rem;
  font-weight: 500;
  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: center;
  gap: 28px;
}
.topbar a { color: #FFFFFF; letter-spacing: .04em; }
.topbar a:hover { color: rgba(255, 255, 255, 0.78); }
.topbar__left, .topbar__right { display: flex; gap: 22px; align-items: center; justify-content: center; }
.topbar__socials { display: none; }
@media (max-width: 820px) {
  .topbar__left span { display: none; }
  .topbar__inner { gap: 16px; padding: 0 16px; }
}

/* ---------- Main header / centered-logo split nav ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  background: #000000;                                /* pure black — matches logo bg */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 50;
  transition: box-shadow var(--t-med) var(--ease);
  height: var(--nav-h);
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.35); }

.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:not(.btn), .nav-dropdown > button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ECEFF3;
  padding: 10px 14px;
  position: relative;
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-side a:not(.btn)::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:not(.btn):hover, .nav-dropdown > button:hover { color: var(--accent); }
.nav-side a:not(.btn):hover::after,
.nav-side a:not(.btn)[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; }
.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); }

/* Centered brand — logo image */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.brand__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  border-radius: 0;
  transition: transform var(--t-fast) var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.02); }

.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: #ECEFF3;
  margin: 5px 0;
}

/* Mobile nav */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 18px;
  }
  .nav-side { display: none; }
  .nav-toggle { display: inline-block; grid-column: 3; justify-self: end; }
  .brand { grid-column: 1; justify-self: start; }
  .brand__logo { height: 48px; }

  /* When open: header expands into a column — brand on top, both nav-sides stacked below */
  .site-header.is-open { height: auto; }
  .site-header.is-open .nav-wrap {
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--nav-h) auto auto;
    grid-template-areas:
      "brand toggle"
      "left left"
      "right right";
    height: auto;
    padding-bottom: 18px;
    row-gap: 0;
    background: #000000;
  }
  .site-header.is-open .brand { grid-area: brand; justify-self: start; padding-left: 0; }
  .site-header.is-open .nav-toggle { grid-area: toggle; align-self: center; }
  .site-header.is-open .nav-side,
  .site-header.is-open .nav-side--right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: static;
    padding: 0 20px;
    gap: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-header.is-open .nav-side { grid-area: left; padding-top: 8px; }
  .site-header.is-open .nav-side--right { grid-area: right; padding-bottom: 12px; }
  .site-header.is-open .nav-side a,
  .site-header.is-open .nav-side--right a,
  .site-header.is-open .nav-dropdown > button {
    padding: 14px 8px;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  /* full-width Book Now button in mobile menu */
  .site-header.is-open .nav-side--right a.btn {
    margin-top: 10px;
    margin-left: 0 !important;
    text-align: center;
    justify-content: center;
    border-bottom: 0;
  }
  .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: rgba(255, 255, 255, 0.9);
}
.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--dark .feature p { color: rgba(255, 255, 255, 0.82); }
.section--dark .feature h3 { color: #fff; }

.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; }

/* ---------- Feature card (solid panel variant — pricing cards, guest-info cards) ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--s-card);
  text-align: left;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  display: flex;
  flex-direction: column;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--s-hover); }
.feature-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.25rem;
}
.feature-card p {
  color: var(--ink-soft);
  margin: 0 0 10px;
  font-size: .98rem;
}
.feature-card ul { padding: 0; }
.section--dark .feature-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.section--dark .feature-card h3 { color: #fff; }
.section--dark .feature-card p { color: rgba(255,255,255,.82); }

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

/* ---------- Mobile polish (client feedback 2026-04-22) ---------- */

/* Lock horizontal scroll so users can't accidentally swipe sideways */
html, body { overflow-x: hidden; max-width: 100%; }

/* Stack all card grids to single column on mobile, overriding inline grid styles */
@media (max-width: 720px) {
  .card-grid,
  .hero-cards,
  section .card-grid[style],
  section .feature-row[style] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  /* Stacked pricing / feature cards get comfortable padding on mobile */
  .feature-card { padding: 28px 22px; }
  .feature-row { grid-template-columns: 1fr; gap: 22px; }
  /* Tighten section vertical padding on mobile so stacked content doesn't feel endless */
  .section { padding: 70px 0; }
  /* Split layouts: media on top, text below */
  .split { grid-template-columns: 1fr !important; gap: 24px !important; }
  .split__media img { width: 100%; }
  /* Contact row already stacks via its own media query — ensure consistent gap */
  .contact-row { gap: 18px; }
}

/* Gallery: 2 columns on mobile instead of cramped 4-col */
@media (max-width: 720px) {
  .gallery-strip,
  section .gallery-strip[style] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* Hunt-card grid (home "Two ways to fish" etc.) — stack on mobile */
@media (max-width: 720px) {
  .hunt-card { min-height: 0; }
}

/* ---------- Defend against MB widget wrapper ----------
   When MB's booking widget mounts, it wraps each .btn-book in:
     <div class="mb-full-width">
       <div><div>
         <button style="background:none;border:none;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
   layouts. Force it to shrink-wrap and strip the button wrapper's
   inline styling so our .btn styles on the inner <a> show through.
*/
.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;
}
/* Keep inner anchor visible with full .btn styling */
.mb-full-width a.btn { display: inline-flex !important; }

/* Inside pricing / feature cards: wrapper is full-width and pinned
   to the bottom of the card so both cards line up regardless of copy
   length. Override the generic .mb-full-width shrink-wrap rules. */
.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;
}

/* ---------- Defend hero h1 against MB widget's normalize.css ----------
   The MB booking widget script injects its own stylesheet (containing
   normalize.css) AFTER our styles.css. That stylesheet redeclares
     h1 { font-size: 2em; margin: 0.67em 0; }
   which ties our `h1 { font-size: clamp(...) }` on specificity (0,0,1)
   and wins by source order — collapsing the hero title to 2em.

   Bumping to `.hero h1` (specificity 0,1,1) beats the injected rule.
   Mirror the same trick for `.hero--short` and reset the runaway
   `0.67em` margin too. */
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0 0 0.4em;
}
.hero--short h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin: 0 0 0.4em;
}
