:root {
  --clr-teal: #4aada8;
  --clr-dark: #32312f;
  --clr-white: #ffffff;
}

/* ── Typography ──────────────────────────────────────────── */

h1,
h2,
h3 {
  font-family: 'Fjalla One', sans-serif;
}

/* Matches h1 fluid size — apply to h2s used as section headings */
.section-heading {
  font-size: calc(1.375rem + 1.5vw);
}

blockquote {
  font-size: 3rem;
}

h4,
h5,
h6,
.brand-title {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, Candara, sans-serif;
  font-weight: 700;
}

body,
p,
small,
li {
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
}

body {
  background-color: var(--clr-dark);
}

/* ── Color utilities ─────────────────────────────────────── */

.bg-teal {
  background-color: var(--clr-teal) !important;
}

.bg-dark-site {
  background-color: var(--clr-dark) !important;
}

.text-teal {
  color: var(--clr-teal);
}

.text-dark-site {
  color: var(--clr-dark);
}

/* ── Button ──────────────────────────────────────────────── */

.btn-teal {
  background-color: var(--clr-teal);
  color: #fff;
  border: none;
  letter-spacing: 0.08em;
}

.btn-teal:hover,
.btn-teal:focus {
  background-color: #3a9490;
  color: #fff;
  border: none;
}

/* ── NavBar brand ────────────────────────────────────────── */

.brand-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.brand-title:hover {
  opacity: 0.85;
}

/* ── Hero ────────────────────────────────────────────────── */

.hero-img {
  max-height: 750px;
  object-fit: cover;
  display: block;
}

/* ── Avatars ─────────────────────────────────────────────── */

.avatar-lg {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-sm {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── PictureSquares ──────────────────────────────────────── */

.pic-square {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* ── Photo-quote sections ────────────────────────────────── */

.photo-quote {
  position: relative;
  overflow: hidden;
}

.photo-quote .photo-quote-img {
  width: 100%;
  display: block;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.photo-overlay--dark {
  background: rgba(40, 40, 40, 0.55);
}

.photo-overlay--teal {
  background: rgba(74, 173, 168, 0.55);
}

.photo-overlay--light {
  background: rgba(230, 240, 245, 0.65);
  color: #2d2d2d;
}

.photo-quote-text {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.speaker {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, Candara, sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ── Services ────────────────────────────────────────────── */

.service-icon {
  font-size: 2.5rem;
  color: var(--clr-teal);
}

/* ── QuoteDouble ─────────────────────────────────────────── */

.quote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--clr-dark);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.quote-panel {
  background: rgba(0, 0, 0, 0.08);
}

/* ── Team / Directors ────────────────────────────────────── */

.team-photo {
  width: 250px;
}

.director-photo {
  width: 200px;
}

/* ── Carousel caption ────────────────────────────────────── */

.carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
  inset: auto 0 0;
  padding: 3rem 1.5rem 3.5rem;
}

/* ── Carousel indicators ─────────────────────────────────── */

.carousel-indicators [data-bs-target] {
  background-color: var(--clr-teal);
}

/* ── Schedule ────────────────────────────────────────────── */

.schedule-card {
  display: flex;
  overflow: hidden;
  border-radius: 0.25rem;
}

.schedule-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1rem 1.1rem;
  min-width: 88px;
  flex-shrink: 0;
  gap: 0.2rem;
}

.schedule-card__abbr {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.6rem;
  color: var(--clr-dark);
  line-height: 1;
  text-transform: uppercase;
}

.schedule-card__time {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, Candara, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-dark);
  opacity: 0.55;
}

.schedule-card__body {
  background: var(--clr-dark);
  color: #fff;
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

/* ── Stats ───────────────────────────────────────────────── */

.stat-grid {
  max-width: 480px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .stat-grid {
    max-width: 100%;
  }
}

.stat-card {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.stat-icon {
  font-size: 1.8rem;
}

.stat-number {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2rem;
}

.stat-label {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, Candara, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── Reduced motion ──────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
