.elementor-5382 .elementor-element.elementor-element-27b43cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ============================================================
   BLOCK 2 — Paste into:
   Elementor → Page Settings → Custom CSS

   NOTE: Elementor's Custom CSS field does NOT use <style> tags.
   Paste only the CSS rules below — no <style> or </style> tags.
   ============================================================ */

  :root {
    --navy:       #0D1B2A;
    --navy-mid:   #1A2E44;
    --navy-light: #243C56;
    --gold:       #B8922A;
    --gold-light: #D4A843;
    --cream:      #F8F5F0;
    --cream-dark: #EDE9E2;
    --text-body:  #2C3E50;
    --text-muted: #6B7A8D;
    --white:      #FFFFFF;
    --border:     rgba(13,27,42,0.10);
    --border-gold: rgba(184,146,42,0.25);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
    --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
    --max-width: 1100px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  /* HERO */
  .hero {
    background: var(--navy);
    padding: 80px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 120%, rgba(184,146,42,0.12) 0%, transparent 70%),
      repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
    pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  .hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.68);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.75;
  }
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .stat-item { text-align: center; }
  .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.50);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* CONTAINER */
  .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

  /* INTRO */
  .intro-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 52px 24px;
    text-align: center;
  }
  .intro-inner { max-width: 720px; margin: 0 auto; }
  .intro-inner p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-body);
  }
  .intro-inner strong { font-weight: 500; color: var(--navy); }

  /* SECTION LABELS */
  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
  }
  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 40px;
  }

  /* LEADERSHIP */
  .leadership-section { padding: 80px 24px; background: var(--cream); }
  .principals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 28px;
  }
  .principal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 40px 36px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
  }
  .principal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .monogram {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .principal-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .principal-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
  }
  .principal-bio {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 12px;
  }
  .principal-bio:last-of-type { margin-bottom: 20px; }
  .principal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
  }
  .tag {
    font-size: 11px;
    font-weight: 400;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--cream-dark);
    color: var(--navy-mid);
    border: 1px solid var(--border);
    white-space: nowrap;
  }
  .tag.hi {
    background: rgba(184,146,42,0.10);
    border-color: var(--border-gold);
    color: var(--gold);
    font-weight: 500;
  }
  .principal-credentials {
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
  }
  .principal-credentials strong { font-weight: 500; color: var(--text-body); }

  /* CONSULTANT NETWORK */
  .network-section {
    padding: 72px 24px 80px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  .network-intro {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 44px;
    line-height: 1.75;
  }
  .network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .network-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 22px 18px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .network-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
  .network-specialty {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .network-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .network-yrs {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
  }

  /* COVERAGE */
  .coverage-section {
    padding: 72px 24px;
    background: var(--navy);
    text-align: center;
  }
  .coverage-section .section-label { color: var(--gold-light); }
  .coverage-section .section-heading { color: var(--white); margin-bottom: 14px; }
  .coverage-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.7;
  }
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
    gap: 10px;
    max-width: 940px;
    margin: 0 auto;
  }
  .coverage-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .coverage-item:hover {
    background: rgba(184,146,42,0.08);
    border-color: var(--border-gold);
    color: var(--white);
  }
  .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  /* CTA */
  .cta-section {
    padding: 80px 24px;
    background: var(--cream);
    text-align: center;
    border-top: 1px solid var(--border);
  }
  .cta-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .cta-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 34px;
    line-height: 1.75;
  }
  .cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid var(--navy);
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid var(--border);
    color: var(--navy);
    background: transparent;
    transition: border-color 0.2s, transform 0.2s;
  }
  .btn-secondary:hover { border-color: var(--navy); transform: translateY(-1px); }

  /* RESPONSIVE */
  @media (max-width: 600px) {
    .principals-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; }
    .principal-card { padding: 28px 24px; }
  }

  /* FADE IN */
  .fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }/* End custom CSS */