/* ==========================================================================
   BeauHaunt subpages — shared layout, theme, components
   ========================================================================== */

:root {
  --bh-ink: #1e1410;
  --bh-ink-muted: #3d2e26;
  --bh-parchment: #f4efe4;
  --bh-parchment-deep: #e8dfd0;
  --bh-sea: #1a2f3d;
  --bh-sea-light: #2c4a5e;
  --bh-accent-red: #8b2323;
  --bh-accent-red-hover: #6e1b1b;
  --bh-gold: #b8860b;
  --bh-gold-muted: #c9a227;
  --bh-border: rgba(62, 42, 24, 0.22);
  --bh-radius: 12px;
  --bh-radius-sm: 8px;
  --bh-shadow: 0 8px 32px rgba(20, 12, 8, 0.12);
  --bh-shadow-deep: 0 18px 48px rgba(12, 8, 4, 0.22);
  --bh-max: 720px;
  --bh-wide: 1100px;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-display: "Pirata One", "Source Serif 4", serif;
  --bh-space: clamp(1rem, 3vw, 1.75rem);
  /* Shared type scale (map labels / cards / body) */
  --bh-text-body: 1.0625rem;
  --bh-text-lead: 1.125rem;
  --bh-text-h2: clamp(1.38rem, 3.5vw, 1.72rem);
  --bh-text-h3: clamp(1.12rem, 2.2vw, 1.28rem);
  --bh-text-nav-title: clamp(1.15rem, 3vw, 1.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.bh-subpage {
  position: relative;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--bh-text-body);
  line-height: 1.65;
  color: var(--bh-ink);
  /* Aged chart + candlelit parchment */
  background-color: #2c2418;
  background-image:
    radial-gradient(circle at calc(100% - 2.5rem) min(4.5rem, 11vh), rgba(201, 162, 39, 0.08) 0%, transparent 42%),
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(255, 248, 235, 0.35) 0%, transparent 48%),
    linear-gradient(168deg, #c4b396 0%, #e3d8c4 28%, #f2ebe0 58%, #dcd0b8 100%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(62, 42, 24, 0.04) 31px,
      rgba(62, 42, 24, 0.04) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 31px,
      rgba(62, 42, 24, 0.035) 31px,
      rgba(62, 42, 24, 0.035) 32px
    ),
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 72px,
      rgba(139, 35, 35, 0.02) 72px,
      rgba(139, 35, 35, 0.02) 73px
    );
  background-attachment: scroll;
}

/* Night sea + lantern glow + vignette (non-interactive) */
body.bh-subpage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(26, 47, 61, 0.14) 0%, transparent 42%),
    radial-gradient(ellipse 70% 50% at 4% 8%, rgba(139, 45, 45, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 65% 55% at 96% 88%, rgba(26, 47, 61, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 35%, rgba(20, 14, 8, 0.18) 100%);
}

/* Corner marks: anchor + compass rose cue */
body.bh-subpage::after {
  content: "⚓";
  position: fixed;
  bottom: min(1rem, 3vw);
  left: min(1rem, 3vw);
  z-index: 0;
  font-size: clamp(2.75rem, 11vmin, 4.5rem);
  line-height: 1;
  opacity: 0.09;
  pointer-events: none;
  transform: rotate(-14deg);
  filter: drop-shadow(0 2px 0 rgba(26, 47, 61, 0.25));
}


/* ----- Skip link ----- */
.bh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--bh-sea);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 var(--bh-radius-sm) 0;
}
.bh-skip:focus {
  left: 0;
}

/* ----- Site header ----- */
.bh-site-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: max(0.65rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(0.65rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  padding-left: max(clamp(1rem, 4vw, 2rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1rem, 4vw, 2rem), env(safe-area-inset-right, 0px));
  background:
    linear-gradient(185deg, rgba(14, 28, 38, 0.99) 0%, rgba(26, 47, 61, 0.97) 45%, rgba(18, 32, 44, 0.98) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 8px,
      rgba(255, 255, 255, 0.025) 8px,
      rgba(255, 255, 255, 0.025) 9px
    ),
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(201, 162, 39, 0.12) 0%, transparent 55%);
  border-bottom: 4px double rgba(184, 134, 11, 0.55);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(139, 35, 35, 0.08),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bh-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f5efe3;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.bh-logo-link img {
  display: block;
  height: 40px;
  width: auto;
}
.bh-logo-link:hover,
.bh-logo-link:focus-visible {
  color: var(--bh-gold-muted);
  outline: none;
}
.bh-logo-link:focus-visible {
  outline: 2px solid var(--bh-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.bh-page-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--bh-text-nav-title);
  font-weight: 400;
  color: #f8f0e4;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 24px rgba(201, 162, 39, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ----- Nav (dropdown) ----- */
.bh-nav-wrap {
  position: relative;
}

#bh-menu-mount {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 1001;
  min-width: min(280px, 92vw);
  background:
    linear-gradient(178deg, #fffefb 0%, #f4ece0 55%, #ebe2d4 100%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
  border: 1px solid rgba(62, 42, 24, 0.28);
  border-top: 4px solid rgba(184, 134, 11, 0.65);
  border-radius: var(--bh-radius);
  box-shadow:
    var(--bh-shadow-deep),
    0 0 0 1px rgba(26, 47, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bh-nav-wrap.is-open #bh-menu-mount {
  display: block;
}

.bh-nav-panel {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.bh-nav-panel li {
  margin: 0;
}

.bh-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #f0e8dc;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--bh-radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.bh-nav-toggle:hover,
.bh-nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}
.bh-nav-toggle:focus-visible {
  outline: 2px solid var(--bh-gold);
  outline-offset: 2px;
}

.bh-nav-panel a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--bh-ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: background 0.15s ease;
}
.bh-nav-panel a:hover,
.bh-nav-panel a:focus-visible {
  background: var(--bh-parchment-deep);
  outline: none;
}
.bh-nav-panel a[aria-current="page"] {
  font-weight: 600;
  color: var(--bh-accent-red);
  border-left: 3px solid var(--bh-accent-red);
}

/* ----- Main shell ----- */
.bh-main {
  position: relative;
  z-index: 1;
  max-width: var(--bh-wide);
  margin: 0 auto;
  padding: var(--bh-space);
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
}
@media (min-width: 900px) {
  .bh-main::before,
  .bh-main::after {
    content: "";
    position: absolute;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 6px;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0.65;
    background:
      linear-gradient(
        180deg,
        rgba(184, 134, 11, 0.55) 0%,
        rgba(26, 47, 61, 0.2) 38%,
        rgba(139, 35, 35, 0.15) 72%,
        rgba(184, 134, 11, 0.45) 100%
      ),
      repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 5px,
        rgba(62, 42, 24, 0.12) 5px,
        rgba(62, 42, 24, 0.12) 6px
      );
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 235, 0.12),
      2px 0 8px rgba(0, 0, 0, 0.06);
  }
  .bh-main::before {
    left: 0;
  }
  .bh-main::after {
    right: 0;
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 235, 0.12),
      -2px 0 8px rgba(0, 0, 0, 0.06);
  }
}

/* Center narrative blocks on subpages (forms/calendar keep their own alignment) */
body.bh-subpage .bh-main {
  text-align: center;
}
body.bh-subpage .bh-main .bh-form {
  text-align: left;
}
body.bh-subpage .bh-card > p,
body.bh-subpage .bh-card > .bh-lead {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.bh-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4vw, 2rem);
}

/* Prose links — blood-red ink, chart feel */
body.bh-subpage .bh-main a:not(.bh-btn):not(.bh-cta-tile):not(.bh-logo-link) {
  color: var(--bh-accent-red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(139, 35, 35, 0.4);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
body.bh-subpage .bh-main a:not(.bh-btn):not(.bh-cta-tile):not(.bh-logo-link):hover {
  color: var(--bh-accent-red-hover);
  text-decoration-color: rgba(110, 27, 27, 0.75);
}

body.bh-subpage ::selection {
  background: rgba(201, 162, 39, 0.35);
  color: var(--bh-ink);
}

/* ----- Cards ----- */
.bh-card {
  position: relative;
  background:
    linear-gradient(168deg, rgba(255, 252, 246, 0.99) 0%, rgba(250, 245, 236, 0.96) 42%, rgba(242, 235, 222, 0.98) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 248, 235, 0.5) 0%, transparent 55%);
  border: 1px solid rgba(62, 42, 24, 0.28);
  border-top: 4px solid rgba(184, 134, 11, 0.65);
  border-radius: var(--bh-radius);
  padding: clamp(1.25rem, 4vw, 1.85rem);
  box-shadow:
    0 2px 0 rgba(62, 42, 24, 0.1),
    var(--bh-shadow),
    var(--bh-shadow-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(62, 42, 24, 0.06);
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}
.bh-card::before {
  content: "☠";
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  filter: grayscale(0.3);
}

.bh-card h2,
.bh-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #142a36;
  margin-top: 0;
}

.bh-card h2 {
  font-size: var(--bh-text-h2);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(184, 134, 11, 0.45);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 248, 235, 0.9);
}

.bh-card h3 {
  font-size: var(--bh-text-h3);
  margin-bottom: 0.5rem;
  text-align: center;
}

.bh-card p:last-child {
  margin-bottom: 0;
}

.bh-hero {
  text-align: left;
  max-width: var(--bh-max);
}
.bh-hero .bh-lead {
  font-size: var(--bh-text-lead);
  color: var(--bh-ink-muted);
  margin: 0 0 0.5rem;
}

.bh-lead {
  font-size: var(--bh-text-lead);
  line-height: 1.7;
  color: var(--bh-ink-muted);
  font-style: italic;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 4px solid rgba(184, 134, 11, 0.55);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08) 0%, transparent 88%);
  border-radius: 0 var(--bh-radius-sm) var(--bh-radius-sm) 0;
}

body.bh-subpage .bh-main .bh-lead {
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Buttons ----- */
.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--bh-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}
.bh-btn:focus-visible {
  outline: 2px solid var(--bh-sea);
  outline-offset: 3px;
}

.bh-btn--primary {
  background: var(--bh-accent-red);
  color: #fff;
  border-color: var(--bh-accent-red-hover);
}
.bh-btn--primary:hover {
  background: var(--bh-accent-red-hover);
}

.bh-btn--secondary {
  background: transparent;
  color: var(--bh-sea);
  border-color: var(--bh-sea-light);
}
.bh-btn--secondary:hover {
  background: rgba(26, 47, 61, 0.06);
}

.bh-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ----- CTA grid (about, thank-you) ----- */
.bh-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  justify-items: center;
}

.bh-cta-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: var(--bh-ink);
  background:
    linear-gradient(165deg, rgba(255, 252, 246, 0.95) 0%, rgba(236, 228, 214, 0.9) 100%);
  border: 1px solid rgba(62, 42, 24, 0.22);
  border-top: 3px solid rgba(184, 134, 11, 0.5);
  border-radius: var(--bh-radius-sm);
  box-shadow: 0 4px 14px rgba(20, 12, 8, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.bh-cta-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 47, 61, 0.14);
  border-color: rgba(184, 134, 11, 0.45);
}
.bh-cta-tile strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bh-sea);
}
.bh-cta-tile span {
  font-size: 0.9rem;
  color: var(--bh-ink-muted);
}

.bh-cta-tile--calendar {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 0 14px rgba(255, 255, 255, 0.75),
    0 4px 14px rgba(20, 12, 8, 0.1);
}
.bh-cta-tile--calendar:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(26, 47, 61, 0.14);
}

/* ----- Attractions: section + NEW badge ----- */
.bh-section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--bh-text-h2);
  font-weight: 400;
  color: #142a36;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0 rgba(255, 248, 235, 0.85);
}

.bh-section-title h2,
.bh-section-title h3 {
  margin: 0;
  font: inherit;
  color: inherit;
}

.bh-badge-new {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-family: system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bh-accent-red);
  border-radius: 4px;
}

/* ----- Accent cards (single hero shots, subtle motion) ----- */
.bh-card--accent {
  position: relative;
  overflow: visible;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.bh-card--accent::before {
  content: "⚓";
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.14;
  pointer-events: none;
}
.bh-card--accent:hover {
  transform: translateY(-4px);
  box-shadow:
    0 3px 0 rgba(62, 42, 24, 0.12),
    0 20px 52px rgba(12, 8, 4, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.bh-attraction-shot {
  margin: 1rem 0 0;
  padding: 0;
  border: none;
  overflow: visible;
  background: transparent;
  max-width: 100%;
}
.bh-attraction-shot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: contain;
  margin: 0 auto;
  vertical-align: bottom;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
  box-sizing: border-box;
  background: rgba(40, 28, 18, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .bh-card--accent {
    transition: none;
  }
  .bh-card--accent:hover {
    transform: none;
  }
  body.bh-subpage::after {
    opacity: 0.03;
  }
}

/* ----- Image galleries (attractions) ----- */
.bh-gallery {
  position: relative;
  margin-top: 1rem;
  border-radius: var(--bh-radius-sm);
  overflow: hidden;
  border: 1px solid var(--bh-border);
  background: #0d0d0d;
}

.bh-gallery-slides {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 70vh;
}

.bh-gallery-slides .bh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.bh-gallery-slides .bh-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.bh-gallery-slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  vertical-align: middle;
}

.bh-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bh-gallery-nav:hover {
  background: rgba(0, 0, 0, 0.65);
}
.bh-gallery-nav:focus-visible {
  outline: 2px solid var(--bh-gold);
  outline-offset: 2px;
}
.bh-gallery-nav--prev {
  left: 8px;
}
.bh-gallery-nav--next {
  right: 8px;
}

.bh-gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 0.65rem;
  background: linear-gradient(180deg, rgba(253, 248, 238, 0.98) 0%, rgba(236, 228, 214, 0.95) 100%);
  border-top: 2px solid rgba(184, 134, 11, 0.25);
}

.bh-gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c4b8a8;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.bh-gallery-dots button.is-active,
.bh-gallery-dots button[aria-current="true"] {
  background: var(--bh-accent-red);
  transform: scale(1.15);
}
.bh-gallery-dots button:focus-visible {
  outline: 2px solid var(--bh-sea);
  outline-offset: 2px;
}

.bh-midway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.bh-midway-grid > div {
  text-align: center;
}

/* ----- Experience calendar ----- */
.bh-banner-soon {
  padding: 0.95rem 1.2rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  color: #0f2430;
  text-shadow: 0 1px 0 rgba(255, 248, 235, 0.5);
  background:
    linear-gradient(92deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.38) 50%, rgba(201, 162, 39, 0.12) 100%),
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255, 248, 235, 0.4) 0%, transparent 70%);
  border: 1px solid rgba(184, 134, 11, 0.55);
  border-radius: var(--bh-radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.bh-calendar-box {
  width: 100%;
  max-width: 980px;
  margin: 1rem auto 0;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(249, 244, 235, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(26, 47, 61, 0.1);
}

.bh-calendar-head {
  padding: 1.15rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--bh-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(236, 228, 214, 0.45) 100%);
}
.bh-calendar-head h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--bh-sea);
  letter-spacing: 0.04em;
}
.bh-calendar-head .bh-hint {
  margin: 0;
  font-size: 0.98rem;
  color: var(--bh-ink-muted);
}

.bh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--bh-border);
  padding: 0;
}

.bh-cal-dow {
  padding: 0.68rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bh-ink-muted);
  background: var(--bh-parchment-deep);
}

.bh-cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 92px;
  padding: 0.55rem 0.35rem;
  background: #fffdfa;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.bh-cal-day:hover {
  background: #f5f0e8;
  transform: translateY(-1px);
}
.bh-cal-day.is-empty {
  background: rgba(0, 0, 0, 0.03);
  cursor: default;
}

.bh-cal-day-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bh-ink);
}

.bh-cal-status {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  padding: 3px 6px;
  border-radius: 999px;
  color: #fff;
}

.status-open {
  background: #2d6a3e;
}
.status-closed {
  background: #6b2c2c;
}
.status-show {
  background: #c45c1a;
}
.status-special {
  background: #4a2c6b;
}

/* Legend */
.bh-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem 1rem;
  margin-top: 0.75rem;
  justify-items: center;
}

.bh-legend-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  max-width: 28rem;
  text-align: left;
}

.bh-legend-swatch {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.bh-legend-swatch.is-open {
  background: #2d6a3e;
}
.bh-legend-swatch.is-closed {
  background: #6b2c2c;
}
.bh-legend-swatch.is-show {
  background: #c45c1a;
}
.bh-legend-swatch.is-special {
  background: #4a2c6b;
}

/* Hours grid */
.bh-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
  justify-items: stretch;
}

.bh-hours-card {
  text-align: center;
  padding: 1.2rem 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-radius: var(--bh-radius-sm);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 4px 14px rgba(26, 47, 61, 0.06);
}

.bh-hours-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--bh-accent-red);
  text-align: center;
}

.bh-hours-card .hours-info {
  font-size: 0.98rem;
  line-height: 1.55;
}

.bh-hours-card .hours-info p {
  margin: 0.6rem 0;
  text-align: center;
}

.bh-hours-card .bh-note {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--bh-ink-muted);
}

/* Closures */
.bh-closure {
  padding: 1rem;
  border-left: 4px solid var(--bh-accent-red);
  background: rgba(139, 35, 35, 0.06);
  border-radius: 0 var(--bh-radius-sm) var(--bh-radius-sm) 0;
  text-align: center;
}
.bh-closure time {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--bh-sea);
}

/* Modal (calendar day) */
.bh-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(4px);
}

.bh-modal {
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--bh-parchment);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bh-modal h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bh-sea);
}

.bh-modal-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 999px;
}

.bh-modal section {
  margin-bottom: 1rem;
}
.bh-modal section h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--bh-sea);
}
.bh-modal section p {
  margin: 0;
  font-size: 0.95rem;
}

.bh-modal-close {
  margin-top: 0.75rem;
  width: 100%;
}

/* ----- Contact ----- */
.bh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

@media (max-width: 820px) {
  .bh-contact-grid {
    grid-template-columns: 1fr;
  }
}

.bh-contact-page .bh-contact-grid {
  justify-items: center;
}
.bh-contact-page .bh-stack {
  width: 100%;
  max-width: 520px;
}
.bh-contact-page .bh-card .bh-form {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.bh-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bh-ink-muted);
}

.bh-form input,
.bh-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  color: var(--bh-ink);
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bh-form input:focus,
.bh-form textarea:focus {
  outline: none;
  border-color: var(--bh-sea-light);
  box-shadow: 0 0 0 3px rgba(26, 47, 61, 0.15);
}

.bh-form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .bh-form-row2 {
    grid-template-columns: 1fr;
  }
}

.bh-form .bh-field {
  margin-bottom: 0.85rem;
}

.bh-form-note {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--bh-ink-muted);
}

.bh-form-status {
  margin-top: 0.9rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--bh-radius-sm);
  text-align: center;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.bh-form-status.is-success {
  color: #1f4f2f;
  background: rgba(45, 106, 62, 0.12);
  border-color: rgba(45, 106, 62, 0.38);
}

.bh-form-status.is-error {
  color: #6b2c2c;
  background: rgba(139, 35, 35, 0.12);
  border-color: rgba(139, 35, 35, 0.35);
}

/* ----- Gallery page carousel ----- */
.bh-carousel {
  position: relative;
  max-width: 900px;
  margin: 1.5rem auto 0;
  border-radius: var(--bh-radius);
  overflow: hidden;
  border: 1px solid var(--bh-border);
  background: #0d0d0d;
  box-shadow: var(--bh-shadow);
}

.bh-gallery-wrap {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.bh-carousel-viewport {
  position: relative;
  aspect-ratio: 3 / 2;
  max-height: 75vh;
}

.bh-carousel-viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bh-carousel-viewport img.is-active {
  opacity: 1;
  z-index: 1;
}

.bh-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 0.2s ease;
}
.bh-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}
.bh-carousel-btn--prev {
  left: 10px;
}
.bh-carousel-btn--next {
  right: 10px;
}

.bh-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(253, 248, 238, 0.98) 0%, rgba(236, 228, 214, 0.95) 100%);
  border-top: 2px solid rgba(184, 134, 11, 0.25);
}

.bh-carousel-dots button {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: #b8a99a;
  cursor: pointer;
}
.bh-carousel-dots button.is-active {
  background: var(--bh-accent-red);
}

.bh-gallery-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #142a36;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(255, 248, 235, 0.7);
}

.bh-inline-photo {
  margin-top: 1rem;
  border-radius: var(--bh-radius-sm);
  overflow: hidden;
  border: 1px solid var(--bh-border);
}
.bh-inline-photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Attraction hero: border sits on the image only (no extra letterbox inside the frame) */
figure.bh-inline-photo.bh-attraction-shot {
  margin: 1rem 0 0;
  border: none;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
figure.bh-inline-photo.bh-attraction-shot img {
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
}

/* ----- Sponsors ----- */
.bh-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  justify-items: center;
  width: 100%;
}
.bh-sponsor-grid .bh-card,
.bh-sponsor-grid .bh-sponsor-card {
  width: 100%;
  max-width: 380px;
}

.bh-sponsor-card {
  text-align: center;
}
.bh-sponsor-card img {
  max-width: 100%;
  height: auto;
  border-radius: var(--bh-radius-sm);
}

.bh-sponsor-cta {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(26, 47, 61, 0.06), rgba(139, 35, 35, 0.06));
  border-radius: var(--bh-radius);
  border: 1px solid var(--bh-border);
}

/* ----- Donate ----- */
body.bh-page-donate .bh-main {
  min-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bh-donate-layout {
  position: relative;
  width: 100%;
  max-width: 560px;
  z-index: 1;
}

.bh-donate-deco {
  display: none;
  pointer-events: none;
}
@media (min-width: 900px) {
  .bh-donate-deco {
    display: block;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: min(140px, 12vw);
    opacity: 0.16;
    z-index: 0;
  }
  .bh-donate-deco--left {
    left: max(1rem, 3vw);
  }
  .bh-donate-deco--right {
    right: max(1rem, 3vw);
  }
  .bh-donate-deco img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.bh-donate-hero {
  margin: 0;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
  border: 2px solid rgba(184, 134, 11, 0.45);
  border-radius: var(--bh-radius);
  background: linear-gradient(165deg, rgba(253, 250, 244, 0.98) 0%, rgba(232, 223, 208, 0.92) 100%);
  box-shadow:
    0 0 0 4px rgba(253, 250, 244, 0.85),
    0 12px 40px rgba(26, 47, 61, 0.12);
  animation: bh-donate-glow 5s ease-in-out infinite alternate;
}

@keyframes bh-donate-glow {
  from {
    box-shadow:
      0 0 0 4px rgba(253, 250, 244, 0.85),
      0 12px 40px rgba(26, 47, 61, 0.1);
  }
  to {
    box-shadow:
      0 0 0 4px rgba(253, 250, 244, 0.95),
      0 16px 48px rgba(139, 35, 35, 0.1);
  }
}

.bh-donate-hero img {
  width: 88px;
  height: auto;
  margin-bottom: 1rem;
  animation: bh-donate-float 3.5s ease-in-out infinite;
}

@keyframes bh-donate-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bh-donate-hero {
    animation: none;
  }
  .bh-donate-hero img {
    animation: none;
  }
}

/* ----- Thank you ----- */
.bh-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}

/* ----- About: crew ----- */
.bh-crew-featured img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--bh-radius-sm);
}

.bh-crew-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.bh-crew-row figure {
  margin: 0;
  text-align: center;
}
.bh-crew-row img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--bh-radius-sm);
  margin: 0 auto;
  display: block;
}
.bh-crew-row figcaption {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ----- Stacked pages: light entrance (subpages with .bh-stack) ----- */
@keyframes bh-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .bh-main.bh-stack > .bh-card {
    animation: bh-card-enter 0.55s ease-out backwards;
  }
  .bh-main.bh-stack > .bh-card:nth-child(1) {
    animation-delay: 0.04s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(2) {
    animation-delay: 0.1s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(3) {
    animation-delay: 0.16s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(4) {
    animation-delay: 0.22s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(5) {
    animation-delay: 0.28s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(6) {
    animation-delay: 0.34s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(7) {
    animation-delay: 0.4s;
  }
  .bh-main.bh-stack > .bh-card:nth-child(8) {
    animation-delay: 0.46s;
  }
}

/* ----- Utilities ----- */
.bh-muted {
  color: var(--bh-ink-muted);
}
.bh-important {
  font-weight: 700;
  color: var(--bh-accent-red);
}

@media (max-width: 600px) {
  .bh-site-header {
    flex-direction: column;
    align-items: stretch;
  }
  .bh-page-title {
    order: 3;
    width: 100%;
    text-align: center;
  }
  .bh-logo-link {
    order: 1;
  }
  .bh-nav-wrap {
    order: 2;
    align-self: flex-end;
  }
}

@media (min-width: 901px) {
  .bh-main.bh-stack > .bh-card,
  .bh-main.bh-stack > .bh-sponsor-cta,
  .bh-main.bh-stack > .bh-sponsor-grid,
  .bh-main.bh-stack > .bh-gallery-wrap {
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .bh-main.bh-stack > .bh-card.bh-hero {
    max-width: 860px;
  }

  .bh-sponsor-cta {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .bh-card .bh-sponsor-grid {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .bh-contact-page .bh-contact-grid {
    grid-template-columns: minmax(320px, 500px) minmax(420px, 560px);
    justify-content: center;
    align-items: start;
  }
}

@media (max-width: 820px) {
  #bh-menu-mount {
    right: 0;
    left: auto;
    min-width: min(92vw, 320px);
    max-width: calc(100vw - 1rem);
  }

  .bh-main {
    padding-left: clamp(0.8rem, 4vw, 1rem);
    padding-right: clamp(0.8rem, 4vw, 1rem);
  }

  .bh-card {
    padding: clamp(1rem, 4vw, 1.25rem);
  }
}

@media (max-width: 480px) {
  .bh-page-title {
    letter-spacing: 0.04em;
    font-size: clamp(1.02rem, 6vw, 1.25rem);
  }

  .bh-btn {
    width: 100%;
  }

  .bh-btn-row,
  .bh-thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bh-calendar-head h3 {
    font-size: 1.16rem;
  }

  .bh-cal-day {
    min-height: 60px;
    padding: 0.3rem;
  }

  .bh-cal-status {
    font-size: 0.56rem;
  }
}

@media (min-width: 901px) {
  .bh-cal-day {
    min-height: 104px;
    padding: 0.65rem 0.45rem;
  }

  .bh-cal-day-num {
    font-size: 1rem;
  }

  .bh-cal-status {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
}
