/* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth !important;}
    body {
      font-family: 'DM Sans', sans-serif;
      background-color: #0d1f3c;
      color: #f5f0e8;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .theme-header .zpcontainer .theme-branding-info .theme-logo-parent a img {
    max-inline-size: 50px;
    max-block-size: 50px;
}



    /* ── TOKENS ── */
    :root {
      --navy:      #0d1f3c;
      --navy-mid:  #152a50;
      --navy-lite: #1e3a6a;
      --gold:      #c9a84c;
      --gold-lite: #e2c47a;
      --cream:     #f5f0e8;
      --white:     #ffffff;
      --rose:      #c97a8a;
      --font-head: 'DM Serif Display', serif;
      --font-body: 'DM Sans', sans-serif;
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      border-bottom: 1px solid rgba(201,168,76,0.25);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      font-family: var(--font-head);
      font-size: 1.15rem;
      color: var(--gold);
      letter-spacing: 0.02em;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--cream);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      transition: background 0.2s;
    }

.zpdark-header-portion.theme-header .theme-navigation-and-icons .theme-menu-area .theme-menu>ul>li.menu-highlight-primary>a {
    background: var(--gold) !important;
      color: var(--navy) !important;
    border-radius: 50px !important;
}

.zpdark-header-portion.theme-header .theme-navigation-and-icons .theme-menu-area .theme-menu>ul>li:hover>a, .zpdark-header-portion.theme-header .theme-navigation-and-icons .theme-menu-area .theme-menu>ul>li.theme-menu-selected>a {
        background: transparent !important;
    }
    .nav-cta:hover { background: var(--gold-lite); }
    .nav-hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--cream); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 5% 4rem;
      background:
        linear-gradient(to bottom, rgba(13,31,60,0.55) 0%, rgba(13,31,60,0.85) 100%),
        url('hero-bg.jpg') center/cover no-repeat;
      /* Replace hero-bg.jpg with Michele's primary brand photo */
    }
    .hero-eyebrow {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 6vw, 5rem);
      line-height: 1.1;
      color: var(--white);
      max-width: 820px;
      margin-bottom: 1.4rem;
    }
    .hero h1 span { color: var(--gold); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(245,240,232,0.85);
      max-width: 640px;
      margin-bottom: 2.5rem;
      font-style: italic;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 4rem;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.85rem 2rem;
      border-radius: 50px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-lite); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--cream);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.85rem 2rem;
      border-radius: 50px;
      border: 2px solid rgba(245,240,232,0.5);
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    .hero h4 {
      font-family: var(--font-head);
      font-size: clamp(1.4rem, 3vw, 3rem);
      line-height: 1.1;
      color: var(--white);
      max-width: 820px;
      margin-bottom: 1.4rem;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      width: 100%;
      max-width: 960px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.2);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 12px;
      overflow: hidden;
    }
    .stat {
      background: rgba(13,31,60,0.7);
      backdrop-filter: blur(8px);
      padding: 1.2rem 1rem;
      text-align: center;
    }
    .stat-number {
      font-family: var(--font-head);
      font-size: 1.9rem;
      color: var(--gold);
      display: block;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.6);
    }

    /* ── SECTION SHARED ── */
    section { padding: 5rem 5%; }
    .section-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 50px;
      padding: 0.3rem 0.9rem;
      margin-bottom: 1rem;
    }

    /* ── MISSION ── */
    .mission {
      background: var(--navy-mid);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .mission h2 {
      font-family: var(--font-head);
      font-size: clamp(1.7rem, 3.5vw, 2.8rem);
      color: var(--white);
      max-width: 760px;
      line-height: 1.25;
      margin-bottom: 0rem;
    }
    .mission p {
      font-size: 1.05rem;
      color: rgba(245,240,232,0.8);
      max-width: 720px;
      line-height: 1.85;
    }
    .mission-divider {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin: 2rem auto;
      border-radius: 2px;
    }

    /* ── VERTICALS ── */
    .verticals {
      background: var(--navy);
    }
    .verticals-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .verticals-header h2 {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--white);
    }
    .verticals-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
      margin-bottom: 25px;
    }
    /* Bottom row: 2 cards centered */
    .verticals-grid-bottom {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      max-width: 740px;
      margin: 1.25rem auto 0;
    }
    .vertical-card {
      background: var(--navy-mid);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 16px;
      padding: 2rem 1.75rem;
      transition: border-color 0.25s, transform 0.2s;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .vertical-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .vertical-icon {
      font-size: 2rem;
      line-height: 1;
    }
    .vertical-card h3 {
      font-family: var(--font-head);
      font-size: 1.3rem;
      color: var(--gold);
    }
    .vertical-card p {
      font-size: 0.9rem;
      color: rgba(245,240,232,0.7);
      line-height: 1.6;
    }
    .vertical-card a {
      margin-top: auto;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: gap 0.2s;
    }
    .vertical-card a:hover { gap: 0.6rem; }

   .zpheader-style-01 { 
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

    /* ── FOOTER ── */
    footer {
      background: #080f1e;
      
      padding: 3rem 5% 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: var(--font-head);
      font-size: 1.4rem;
      color: var(--gold);
    }
    .footer {
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      list-style: none;
    }
    .footer-nav a {
      font-size: 0.85rem;
      color: rgba(245,240,232,0.6);
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--gold); }
    .footer-socials {
      display: flex;
      gap: 1rem;
    }
    .footer-socials a {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      color: rgba(245,240,232,0.7);
      transition: border-color 0.2s, color 0.2s;
    }
    .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
    .footer-newsletter {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-newsletter input {
      background: var(--navy-mid);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50px;
      padding: 0.65rem 1.25rem;
      color: var(--cream);
      font-family: var(--font-body);
      font-size: 0.9rem;
      width: 260px;
      outline: none;
      transition: border-color 0.2s;
    }
    .footer-newsletter input:focus { border-color: var(--gold); }
    .footer-newsletter input::placeholder { color: rgba(245,240,232,0.4); }
    .footer-newsletter button {
      background: var(--gold);
      color: var(--navy);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 0.65rem 1.5rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .footer-newsletter button:hover { background: var(--gold-lite); }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(245,240,232,0.35);
    }

.zpdark-header-portion.theme-header .theme-navigation-and-icons .theme-menu-area .theme-menu>ul>li.theme-menu-selected.menu-highlight-primary>a, .zpdark-header-portion.theme-header .theme-navigation-and-icons .theme-menu-area .theme-menu>ul>li:hover.menu-highlight-primary>a, .zpdark-header-portion.theme-header .theme-navigation-and-icons .theme-menu-area .theme-menu>ul>li.theme-menu-selected.menu-highlight-primary>a {
    color: #FFDC52 !important;
    background: #304A4A !important;
}

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: block; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .verticals-grid { grid-template-columns: repeat(2, 1fr); }
      .verticals-grid-bottom { grid-template-columns: 1fr; max-width: 100%; }
    }
    @media (max-width: 600px) {
      .hero { min-height: 100svh; padding: 5rem 5% 3rem; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .verticals-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; align-items: center; }
      .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; }
    }