/* ══════════════════════════════════════════
   BCG Public Site — Shared Stylesheet
   Beaton Consulting Group
   Palette: navy + blue-grey + white
   Font: Montserrat / system stack
   ══════════════════════════════════════════ */


:root {
  --navy:       #0d1b2a;
  --blue:       #2b6cb0;
  --blue-dark:  #2c5282;
  --blue-light: #ebf4ff;
  --green:      #38a169;
  --slate:      #4a5568;
  --muted:      #718096;
  --border:     #e2e8f0;
  --bg:         #f7f8fa;
  --surface:    #ffffff;
  --text:       #1a202c;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.9rem; }
p  { color: var(--slate); line-height: 1.75; font-size: 0.95rem; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg); }

.section-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

/* Phosphor icon sizing inside component containers */
.service-icon i, .sd-icon i,
.location-icon i, .contact-icon i,
.map-placeholder i, .booking-placeholder i {
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1;
}

.section-heading { margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 620px; margin-bottom: 48px; line-height: 1.7; }

/* ── Navigation ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-abbr {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
}
.logo-full {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  border-radius: 5px;
  text-decoration: none;
  transition: color 0.13s, background 0.13s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.09); }
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); text-decoration: none; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.card-hover { transition: border-color 0.15s, box-shadow 0.15s; }
.card-hover:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(43,108,176,0.1); }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Pill / badge ── */
.badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
}
.badge-green { background: #f0fff4; color: var(--green); }
.badge-navy  { background: rgba(13,27,42,0.08); color: var(--navy); }

/* ── Divider ── */
hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  display: block;
  text-decoration: none;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom .logo-abbr { font-size: 0.8rem; }

/* ── Placeholder image block ── */
.headshot-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

/* ── Coming soon overlay ── */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 4px;
  padding: 3px 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .nav-links { display: none; }
}
