/* ==========================================================================
   The Club at Bear Hollow — shared brand stylesheet
   Loaded into ClubSpot custom-code blocks (via bearhollow.js) and used by
   any page hosted here. ALL selectors are namespaced with `bh-` or scoped
   under `.bh` so nothing here clobbers ClubSpot's own theme.
   ========================================================================== */

:root {
  --bh-green:      #224020; /* primary green            */
  --bh-green-dark: #1b3319; /* dark green (hero/CTA bg)  */
  --bh-bronze:     #996c2e; /* bronze (eyebrows on light)*/
  --bh-gold:       #cc9952; /* gold (buttons, accents)  */
  --bh-warm-gray:  #d9c8ae; /* warm gray (placeholders) */
  --bh-warm-gray-2:#cbb894; /* deeper warm gray band    */
  --bh-warm-white: #f5ebdb; /* warm white (light bg)    */
  --bh-cream-text: #e7dcc7; /* body text on dark        */
  --bh-ink:        #2c2c2c; /* body text on light       */
  --bh-moss:       #3f5239; /* muted green body text    */

  --bh-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --bh-mono:  'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

/* --- wrapper: opt-in base so our blocks read consistently ---------------- */
.bh {
  font-family: var(--bh-serif);
  color: var(--bh-ink);
  -webkit-font-smoothing: antialiased;
}

/* --- eyebrow (small uppercase mono label) ------------------------------- */
.bh-eyebrow {
  font-family: var(--bh-mono);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 11px;
  color: var(--bh-bronze);
  margin: 0 0 14px;
}
.bh-eyebrow--gold { color: var(--bh-gold); }

/* --- headings & body ---------------------------------------------------- */
.bh-h1 { font-family: var(--bh-serif); font-weight: 400; font-size: 42px; line-height: 1.06; margin: 0 0 22px; }
.bh-h2 { font-family: var(--bh-serif); font-weight: 400; font-size: 30px; line-height: 1.12; margin: 0 0 16px; color: var(--bh-green); }
.bh-body { font-family: var(--bh-serif); font-size: 18px; line-height: 1.65; margin: 0; color: var(--bh-moss); }

/* --- hero / section shells ---------------------------------------------- */
.bh-hero {
  background: var(--bh-green-dark);
  color: var(--bh-warm-white);
  padding: 72px 24px;
  text-align: center;
}
.bh-hero .bh-h1 { color: var(--bh-warm-white); }
.bh-hero .bh-body { color: var(--bh-cream-text); }
.bh-hero__inner { max-width: 760px; margin: 0 auto; }

.bh-section-light { background: var(--bh-warm-white); color: var(--bh-ink); }

/* --- image + text row (stacks on mobile via flex-wrap, no media query) --- */
.bh-row { display: flex; flex-wrap: wrap; align-items: stretch; }
.bh-row__media,
.bh-row__text { flex: 1 1 340px; }
.bh-row__text { padding: 54px 40px; display: flex; flex-direction: column; justify-content: center; background: var(--bh-warm-white); }

/* --- photo placeholder (until real images) ------------------------------ */
.bh-photo {
  min-height: 360px;
  background: var(--bh-warm-gray);
  display: flex; align-items: center; justify-content: center;
}
.bh-photo--band { min-height: 420px; background: var(--bh-warm-gray-2); }
.bh-photo__label {
  font-family: var(--bh-mono);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  color: #8a6f45;
}

/* --- button ------------------------------------------------------------- */
.bh-btn {
  display: inline-block;
  font-family: var(--bh-mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 13px;
  font-weight: 600;
  background: var(--bh-gold);
  color: var(--bh-green-dark);
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.bh-btn:hover { filter: brightness(1.05); }

/* --- CTA block ---------------------------------------------------------- */
.bh-cta { background: var(--bh-green-dark); color: var(--bh-warm-white); padding: 72px 24px; text-align: center; }
.bh-cta__inner { max-width: 620px; margin: 0 auto; }
.bh-cta .bh-h2 { color: var(--bh-warm-white); margin-bottom: 24px; }

/* --- tiny load marker (used to prove the bundle reached a page) --------- */
.bh-loaded::after { content: ' \2713'; color: var(--bh-gold); }
