/* ==========================================================================
   Moretto Consultoria — estilos
   ========================================================================== */

:root {
  --navy: #1b2a4a;
  --navy-2: #223458;
  --navy-dark: #0f1a30;
  --teal: #2f8f86;
  --teal-dark: #23716a;
  --gold: #c9a46b;
  --gold-dark: #a5854f;
  --mint-bg: #eaf5f3;
  --cream-bg: #fbf2e7;
  --gray-text: #5b6470;
  --gray-line: #e3e7ed;
  --light-bg: #f7f8fa;
  --white: #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { font-family: var(--font-serif); color: var(--navy); margin: 0; }

p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-cta { background: var(--teal); color: #fff; }
.btn-cta:hover { background: var(--teal-dark); }
.btn-cta svg { width: 20px; height: 20px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--gray-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.logo-subtitle { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; color: var(--teal); }

/* stacked icon-over-wordmark logo images (Moretto / Tech Ops / Lumina) */
.logo-img { display: block; height: 76px; width: auto; }

.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--teal); border-color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
/* Hero: text column on solid white, image collage filling all remaining
   space through to the viewport's right edge. A real flex split (not an
   overlay) so the photo can never cover any part of the text. */
.hero { position: relative; overflow: hidden; }

.hero-flex {
  display: flex;
  align-items: stretch;
}

.hero-copy {
  flex: 0 1 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px 32px clamp(24px, 8vw, 120px);
}

.hero-media {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-media-split { position: relative; overflow: hidden; background: var(--navy-dark); }
.hero-media-split img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media-tech img { object-position: 78% center; }
.hero-media-dental img { object-position: 55% center; }

/* Purely decorative gold seam, drawn on top of the two photos. */
.hero-media::before {
  content: '';
  position: absolute;
  top: -4%;
  bottom: -4%;
  left: 50%;
  width: 5px;
  margin-left: -2.5px;
  transform: skewX(-9deg);
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  z-index: 2;
  pointer-events: none;
}

.hero-copy h1 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-copy .accent { color: var(--teal); }

.hero-copy p {
  color: var(--gray-text);
  font-size: 0.92rem;
  margin-bottom: 16px;
  max-width: 46ch;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn { padding: 10px 18px; font-size: 0.88rem; }

/* image placeholder (sits behind the <img>; visible once the img is hidden via onerror) */
.img-missing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
}
.img-missing small { display: block; margin-top: 6px; font-size: 0.7rem; opacity: 0.75; }

/* ==========================================================================
   Section title helper
   ========================================================================== */
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-title::after { background: linear-gradient(to left, transparent, var(--gold)); }

/* ==========================================================================
   Áreas de atuação
   ========================================================================== */
.areas { padding: 24px 0 80px; }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.area-card {
  display: block;
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-card-tech { background: var(--mint-bg); }
.area-card-lumina { background: var(--cream-bg); }
a.area-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -16px rgba(27, 42, 74, 0.3); }

.area-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.area-icon { flex-shrink: 0; }
.area-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin: 0 0 6px;
}
.area-kicker-gold { color: var(--gold-dark); }
.area-card-head h3 { font-size: 1.15rem; }

.area-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.area-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
}
.area-checklist svg { width: 20px; height: 20px; flex-shrink: 0; }
.checklist-teal svg { color: var(--teal); }
.checklist-gold svg { color: var(--gold-dark); }

/* ==========================================================================
   Como ajudamos
   ========================================================================== */
.how { padding: 24px 0 88px; background: var(--light-bg); padding-top: 72px; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-card { text-align: left; }
.how-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  margin-bottom: 20px;
}
.how-icon svg { width: 30px; height: 30px; }
.how-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.how-card p { color: var(--gray-text); font-size: 0.92rem; }

/* ==========================================================================
   Sobre / Time / Diferenciais
   ========================================================================== */
.about { padding: 88px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 0.9fr;
  gap: 48px;
}
.about-col + .about-col { border-left: 1px solid var(--gray-line); padding-left: 48px; }

.about-text h2,
.about-diff h2 { font-size: 1.4rem; margin-bottom: 20px; }
.about-team h2 { font-size: 1.4rem; margin-bottom: 28px; }
.text-center { text-align: center; }

.about-text p { color: var(--gray-text); margin-bottom: 16px; font-size: 0.98rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 8px;
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 10px; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.team-photo {
  display: inline-block;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-role { color: var(--teal); font-weight: 600; font-size: 0.85rem; margin-bottom: 16px; }
.team-bullets { text-align: left; margin-bottom: 18px; width: 100%; }
.team-bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.team-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  margin-top: auto;
  transition: background 0.2s ease;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { background: var(--teal); }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mint-bg);
  color: var(--teal);
  margin-bottom: 12px;
}
.diff-icon svg { width: 24px; height: 24px; }
.diff-item h3 { font-size: 0.98rem; margin-bottom: 6px; }
.diff-item p { color: var(--gray-text); font-size: 0.85rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
  padding: 56px 0 28px;
}
/* subtle network/line texture behind the footer content, echoing the
   data-dashboard motif from the hero photo */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../assets/img/footer-pattern.svg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 60% auto;
}
.site-footer > .container { position: relative; z-index: 1; }

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-cta-text { display: flex; align-items: flex-start; gap: 18px; max-width: 560px; }
.footer-chat-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
}
.footer-chat-icon svg { width: 26px; height: 26px; }
.footer-cta-text h2 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.footer-cta-text p { color: #b9c2d4; font-size: 0.92rem; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 32px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  font-size: 0.92rem;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbe1ec;
  transition: color 0.2s ease;
}
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--teal); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  color: #b9c2d4;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #b9c2d4;
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #b9c2d4; transition: color 0.2s ease; }
.footer-nav a:hover { color: #fff; }

.scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-col + .about-col { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-line); padding-top: 40px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-line);
    padding: 8px 24px 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { display: block; padding: 12px 0; }

  .hero-flex { flex-direction: column; min-height: 0; }
  .hero-copy { flex: none; max-width: none; padding: 40px 24px; }
  .hero-media { height: 260px; }

  .areas-grid { grid-template-columns: 1fr; }
  .area-checklist { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }

  .footer-social { margin-left: 0; }
}

@media (max-width: 600px) {
  .how-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Sub-pages (Tech Ops, Lumina Experience...) — shared components
   ========================================================================== */

/* breadcrumb-ish page kicker used inside the sub-hero */
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.page-kicker span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.page-kicker span .light { font-weight: 500; color: var(--gray-text); }

/* Sub-hero: light copy on the left, full-bleed photo fading in on the right */
.subhero { position: relative; overflow: hidden; padding: 56px 0 64px; }
.subhero-media { position: absolute; inset: 0; z-index: 0; }
.subhero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.subhero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0) 62%);
}
.subhero-inner { position: relative; z-index: 1; }
.subhero-copy { max-width: 620px; }
.subhero-copy h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.subhero-copy p {
  color: var(--gray-text);
  font-size: 1.02rem;
  margin-bottom: 30px;
  max-width: 48ch;
}

/* Left-aligned section heading with a short gold underline (as opposed to
   the centered, gold-flanked .section-title used on the homepage) */
.section-heading-left { margin-bottom: 32px; }
.section-heading-left h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  position: relative;
  padding-bottom: 16px;
}
.section-heading-left h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.subsection { padding: 48px 0; }
.subsection-alt { background: var(--light-bg); }

/* "O que entregamos" — bordered service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 22px;
}
.service-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.service-card-head svg { width: 26px; height: 26px; color: var(--teal); flex-shrink: 0; }
.service-card h3 { font-size: 0.98rem; }
.service-card p { font-size: 0.85rem; color: var(--gray-text); }

/* "Como atuamos" — numbered steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  flex-shrink: 0;
}
.step-icon svg { width: 26px; height: 26px; }
.step-number { font-family: var(--font-serif); font-weight: 700; font-size: 1.7rem; color: var(--gold); }
.step-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: var(--gray-text); }

/* "Especialidades" — inline icon+label pills */
.pills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}
.pill { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.pill svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }

/* Two-column split: leadership card | results grid */
.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.leader-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
}
.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.leader-info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.leader-role { color: var(--teal); font-weight: 600; font-size: 0.88rem; margin-bottom: 14px; }
.leader-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.leader-checklist svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.leader-social-btn { margin-top: 14px; }

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.result-card { border: 1px solid var(--gray-line); border-radius: 12px; padding: 18px; }
.result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--mint-bg);
  color: var(--teal);
  margin-bottom: 12px;
}
.result-icon-filled { background: var(--teal); color: #fff; }
.result-icon svg { width: 22px; height: 22px; }
.result-icon-illustrated {
  width: 68px;
  height: 68px;
  background: none;
  border-radius: 0;
}
.result-icon-illustrated img { width: 100%; height: 100%; object-fit: contain; }
.result-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.result-card p { font-size: 0.83rem; color: var(--gray-text); }

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .split-two { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .subhero-media::after { background: linear-gradient(90deg, #fff 0%, #fff 55%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.55) 100%); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .leader-card { flex-direction: column; align-items: center; text-align: center; }
  .leader-checklist li { text-align: left; }
}
@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Gold-brand variants, used on the Lumina Experience page where the
   accent icons are gold rather than teal */
.service-card-head svg.icon-gold,
.pill svg.icon-gold,
.result-icon svg.icon-gold { color: var(--gold-dark); }
.step-icon.icon-gold { border-color: var(--gold-dark); color: var(--gold-dark); }
.step-number.num-teal { color: var(--teal-dark); }

/* Lumina Experience wordmark, used in its sub-hero kicker */
.lumina-kicker { gap: 16px; }
.lumina-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.lumina-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.6rem; letter-spacing: 0.04em; color: var(--navy); }
.lumina-subtitle { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; color: var(--teal); }

.leader-photo-round { border-radius: 50%; }
