/* ── Hero Styles ─────────────────────────────────────────────
   Clinch Mountain layered graphic hero (Option B)
   To switch to a real photo, set hero_style: "photo" in _config.yml
   and place your image at assets/images/hero.jpg
──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  color: var(--white);
  background: #0a1628;
}

/* ── Photo mode ─────────────────────────────────────────── */
.hero--photo {
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,16,32,.92) 0%,
    rgba(8,16,32,.78) 42%,
    rgba(8,16,32,.3)  68%,
    rgba(8,16,32,.1)  100%
  );
  z-index: 1;
}

/* ── Graphic mode — Clinch Mountain SVG layers ──────────── */
.hero--graphic {
  background: linear-gradient(160deg, #0a1628 0%, #0f2a52 100%);
}

.hero-mountains {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Shared content layer ───────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Meeting card inside hero ───────────────────────────── */
.meeting-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-top: 3rem;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 560px;
}
.meeting-card-icon { font-size: 1.75rem; line-height: 1; }
.meeting-card p { color: rgba(255,255,255,.88); font-size: .92rem; margin: 0; }
.meeting-card strong { color: var(--white); }
