:root {
    --navy: #0B1F3A;
    --navy-light: #122848;
    --navy-mid: #1A3A5C;
    --gold: #C9941A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C0;
    --ivory: #FAF6EE;
    --ivory-dark: #F0E9DA;
    --white: #FFFFFF;
    --text-dark: #0B1F3A;
    --text-mid: #3A4F6A;
    --text-light: #6B7F96;
    --border: rgba(201,148,26,0.25);
    --shadow: 0 24px 80px rgba(11,31,58,0.12);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }


  .nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

  body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--ivory);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(11,31,58,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,148,26,0.2);
    transition: all 0.4s ease;
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 72px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
  }
  .nav-logo-emblem {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 700; color: var(--navy);
    letter-spacing: 0.02em;
    box-shadow: 0 0 0 2px rgba(201,148,26,0.3);
    flex-shrink: 0;
  }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-abbr {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: var(--gold-light);
    letter-spacing: 0.05em;
  }
  .nav-logo-full {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .nav-links {
    display: flex; align-items: center; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
    color: rgba(255,255,255,0.72); text-decoration: none;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s; padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
  .nav-cta {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); padding: 10px 22px; border-radius: 2px;
    text-decoration: none; transition: all 0.3s;
    border: none; cursor: pointer;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,148,26,0.35); }
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none;
  }
  .nav-hamburger span {
    width: 24px; height: 1.5px; background: var(--gold-light); display: block; transition: all 0.3s;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-bg-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(201,148,26,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,148,26,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-glow {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,148,26,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-glow-2 {
    position: absolute; bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,58,92,0.6) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1280px; margin: 0 auto; padding: 120px 40px 80px;
    display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-badge::before {
    content: ''; width: 32px; height: 1px; background: var(--gold); display: block;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700; color: var(--white);
    line-height: 1.12; letter-spacing: -0.01em;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  }
  .hero-title em {
    font-style: italic; color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.62);
    max-width: 540px; line-height: 1.8; margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }
  .btn-primary {
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); padding: 16px 36px; border-radius: 2px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s; display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,148,26,0.4); }
  .btn-outline {
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 15px 36px; border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none; cursor: pointer;
    transition: all 0.3s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
  .hero-stats {
    display: flex; gap: 0; margin-top: 64px;
    opacity: 0; animation: fadeUp 0.9s 1s forwards;
    border-top: 1px solid rgba(201,148,26,0.2);
    padding-top: 40px;
  }
  .hero-stat {
    flex: 1; padding-right: 32px;
    border-right: 1px solid rgba(201,148,26,0.15);
  }
  .hero-stat:last-child { border-right: none; padding-left: 32px; padding-right: 0; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700; color: var(--gold-light);
    line-height: 1;
  }
  .hero-stat-label {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45);
    margin-top: 6px;
  }

  /* Hero Card */
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,148,26,0.2);
    border-radius: 4px; padding: 40px;
    backdrop-filter: blur(8px);
    opacity: 0; animation: fadeLeft 1s 0.6s forwards;
  }
  .hero-card-label {
    font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 600; color: var(--white);
    margin-bottom: 24px; line-height: 1.4;
  }
  .hero-card-grades { display: flex; flex-direction: column; gap: 12px; }
  .grade-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,148,26,0.1);
    border-radius: 2px;
    transition: all 0.3s; cursor: default;
  }
  .grade-item:hover {
    background: rgba(201,148,26,0.08);
    border-color: rgba(201,148,26,0.25);
  }
  .grade-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85);
  }
  .grade-nominal {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
    color: var(--gold); letter-spacing: 0.08em;
  }

  /* ── SECTION COMMONS ── */
  section { position: relative; }
  .section-inner { max-width: 1280px; margin: 0 auto; padding: 100px 40px; }

  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .section-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--gold); display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.01em;
  }
  .section-title-dark { color: var(--white); }
  .section-title-light { color: var(--navy); }
  .section-desc {
    font-size: 18px; font-weight: 300; line-height: 1.85;
    color: var(--text-mid); margin-top: 16px; max-width: 640px;
  }
  .section-desc-dark { color: rgba(255,255,255,0.55); }
  .gold-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-top: 24px;
  }

  /* ── ABOUT ── */
  #about { background: var(--ivory); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px;
  }
  .about-content p {
    font-size: 18px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px;
  }
  .about-content p strong { color: var(--navy); font-weight: 600; }
  .about-values { display: flex; flex-direction: column; gap: 20px; }
  .value-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; background: var(--white);
    border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 24px rgba(11,31,58,0.06);
    transition: all 0.3s;
  }
  .value-item:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(11,31,58,0.1); }
  .value-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .value-text h4 {
    font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600;
    color: var(--navy); margin-bottom: 4px;
  }
  .value-text p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

  /* ── DISCIPLINES ── */
  #disciplines { background: var(--navy); }
  .disciplines-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1px; background: rgba(201,148,26,0.1);
    margin-top: 60px; border: 1px solid rgba(201,148,26,0.1);
  }
  .disc-item {
    background: var(--navy);
    padding: 28px 24px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: all 0.3s; cursor: default;
    border-bottom: 2px solid transparent;
  }
  .disc-item:hover { background: var(--navy-mid); border-bottom-color: var(--gold); }
  .disc-num {
    font-family: 'Playfair Display', serif;
    font-size: 11px; color: var(--gold); opacity: 0.7;
    padding-top: 3px; flex-shrink: 0; width: 20px;
  }
  .disc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.82);
    line-height: 1.4;
  }

  /* ── MEMBERSHIP ── */
  #membership { background: var(--ivory-dark); }
  .membership-table-wrap {
    margin-top: 60px; overflow-x: auto;
    border: 1px solid var(--border); border-radius: 4px;
    box-shadow: var(--shadow);
  }
  table { width: 100%; border-collapse: collapse; background: var(--white); }
  thead tr { background: var(--navy); }
  thead th {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light);
    padding: 20px 24px; text-align: left;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  tbody tr {
    border-bottom: 1px solid rgba(11,31,58,0.07);
    transition: all 0.2s;
  }
  tbody tr:hover { background: var(--gold-pale); }
  tbody td {
    padding: 18px 24px;
    font-size: 15px; color: var(--text-mid); line-height: 1.5;
    border-right: 1px solid rgba(11,31,58,0.05);
  }
  tbody td:first-child { font-weight: 600; color: var(--navy); font-size: 16px; }
  .nominal-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; color: var(--gold);
    background: rgba(201,148,26,0.1); border: 1px solid rgba(201,148,26,0.3);
    padding: 3px 8px; border-radius: 2px;
  }

  /* ── PROGRAMS ── */
  #programs { background: var(--navy); }
  .programs-tabs {
    display: flex; gap: 0; margin-top: 60px;
    border: 1px solid rgba(201,148,26,0.2); border-radius: 4px; overflow: hidden;
  }
  .tab-btn {
    flex: 1; padding: 18px; background: transparent;
    border: none; border-right: 1px solid rgba(201,148,26,0.15);
    cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .tab-btn:last-child { border-right: none; }
  .tab-btn:hover { background: rgba(201,148,26,0.06); color: rgba(255,255,255,0.8); }
  .tab-btn.active { background: linear-gradient(135deg, rgba(201,148,26,0.15), rgba(232,184,75,0.1)); color: var(--gold-light); }
  .tab-btn .tab-icon { font-size: 22px; }
  .programs-content { margin-top: 40px; }
  .program-panel { display: none; }
  .program-panel.active { display: block; animation: fadeIn 0.5s ease; }
  .program-panel-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  }
  .program-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 16px;
  }
  .program-info .award-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); padding: 6px 16px; border-radius: 2px; margin-bottom: 20px;
  }
  .program-info p {
    font-size: 17px; color: rgba(255,255,255,0.58); line-height: 1.8; margin-bottom: 16px;
  }
  .program-meta {
    display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px;
  }
  .meta-pill {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(201,148,26,0.3); color: rgba(255,255,255,0.65);
    padding: 7px 16px; border-radius: 2px;
  }
  .program-specs { display: flex; flex-direction: column; gap: 16px; }
  .spec-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,148,26,0.15);
    border-radius: 4px; padding: 20px;
  }
  .spec-card h4 {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  }
  .spec-card ul {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
  }
  .spec-card ul li {
    font-size: 14px; color: rgba(255,255,255,0.65);
    display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
  }
  .spec-card ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

  /* ── ETHICS ── */
  #ethics { background: var(--ivory); }
  .ethics-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; margin-top: 60px;
  }
  .ethics-card {
    background: var(--white);
    border: 1px solid rgba(11,31,58,0.08);
    border-radius: 4px; padding: 32px;
    transition: all 0.3s;
    border-top: 3px solid transparent;
  }
  .ethics-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(11,31,58,0.1);
    border-top-color: var(--gold);
  }
  .ethics-num {
    font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700;
    color: var(--gold-pale); line-height: 1; margin-bottom: 16px;
  }
  .ethics-card h3 {
    font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600;
    color: var(--navy); margin-bottom: 12px;
  }
  .ethics-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

  /* ── CERTIFICATION ── */
  #certification { background: var(--navy-light); }
  .cert-path {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-top: 60px; flex-wrap: wrap;
  }
  .cert-step {
    text-align: center; padding: 32px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,148,26,0.15); border-radius: 4px;
    min-width: 180px; flex: 1; max-width: 220px;
    transition: all 0.3s;
  }
  .cert-step:hover {
    background: rgba(201,148,26,0.08);
    border-color: rgba(201,148,26,0.35);
    transform: translateY(-4px);
  }
  .cert-step-num {
    width: 44px; height: 44px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy);
  }
  .cert-step h4 {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px;
  }
  .cert-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .cert-arrow {
    font-size: 20px; color: rgba(201,148,26,0.4); margin: 0 -8px; flex-shrink: 0; z-index: 1;
  }
  .cpmp-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 4px; padding: 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
  }
  .cpmp-banner-text h3 {
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
  }
  .cpmp-banner-text p { font-size: 16px; color: rgba(11,31,58,0.7); }
  .btn-navy {
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--navy); color: var(--gold-light);
    padding: 16px 36px; border-radius: 2px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s; flex-shrink: 0;
    display: inline-block;
  }
  .btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

  /* ── GOVERNANCE ── */
  #governance { background: var(--ivory); }
  .gov-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px;
  }
  .gov-body {
    background: var(--white); padding: 36px;
    border: 1px solid rgba(11,31,58,0.08); border-radius: 4px;
    box-shadow: 0 4px 24px rgba(11,31,58,0.05);
    transition: all 0.3s;
  }
  .gov-body:hover { box-shadow: 0 12px 48px rgba(11,31,58,0.1); }
  .gov-body-icon { font-size: 32px; margin-bottom: 16px; }
  .gov-body h3 {
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
  }
  .gov-body .gov-desc { font-size: 15px; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
  .gov-roles { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .gov-roles li {
    font-size: 14px; color: var(--text-mid);
    display: flex; align-items: center; gap: 10px;
  }
  .gov-roles li::before {
    content: ''; width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; flex-shrink: 0;
  }
  .committees-grid {
    grid-column: 1/-1;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .committee-card {
    background: var(--navy); padding: 24px;
    border-radius: 4px; border-bottom: 2px solid var(--gold);
    transition: all 0.3s;
  }
  .committee-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(11,31,58,0.2); }
  .committee-card .c-icon { font-size: 24px; margin-bottom: 12px; }
  .committee-card h4 {
    font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600;
    color: var(--white); line-height: 1.4;
  }

  /* ── CONTACT/JOIN ── */
  #join { background: var(--navy); }
  .join-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .join-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
    color: var(--white); line-height: 1.2; margin-bottom: 20px;
  }
  .join-text h2 em { font-style: italic; color: var(--gold-light); }
  .join-text p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 32px; }
  .join-contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
  .contact-item {
    display: flex; align-items: center; gap: 16px;
    color: rgba(255,255,255,0.6); font-size: 15px;
  }
  .contact-item span:first-child { font-size: 18px; }
  .join-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,148,26,0.2); border-radius: 4px;
    padding: 48px; backdrop-filter: blur(8px);
  }
  .join-form-card h3 {
    font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
  }
  .join-form-card p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 32px; }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-family: 'Montserrat', sans-serif; font-size: 10px;
    font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .form-group input, .form-group select {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(201,148,26,0.2);
    border-radius: 2px; color: var(--white);
    font-family: 'Cormorant Garamond', serif; font-size: 16px;
    transition: all 0.3s; outline: none;
  }
  .form-group input::placeholder { color: rgba(255,255,255,0.25); }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group select option { background: var(--navy); color: var(--white); }
  .form-group input:focus, .form-group select:focus {
    border-color: var(--gold); background: rgba(201,148,26,0.06);
  }
  .form-submit {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); border: none; border-radius: 2px; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: all 0.3s; margin-top: 8px;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,148,26,0.35); }

  /* ── FOOTER ── */
  footer {
    background: #060F1C;
    border-top: 1px solid rgba(201,148,26,0.15);
  }
  .footer-inner {
    max-width: 1280px; margin: 0 auto; padding: 72px 40px 40px;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px;
  }
  .footer-brand h3 {
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
    color: var(--gold-light); margin-bottom: 12px;
  }
  .footer-brand p {
    font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 24px;
  }
  .footer-col h4 {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p {
    font-size: 13px; color: rgba(255,255,255,0.3);
    font-family: 'Montserrat', sans-serif;
  }
  .footer-bottom p span { color: var(--gold); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 400;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.7); }

  /* ── MOBILE NAV ── */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: var(--navy); padding: 100px 40px 40px;
    flex-direction: column; gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600;
    color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s;
    border-bottom: 1px solid rgba(201,148,26,0.1); padding-bottom: 16px;
  }
  .mobile-menu a:hover { color: var(--gold-light); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .about-grid, .programs-panel-inner, .join-inner, .gov-grid { grid-template-columns: 1fr; }
    .program-panel-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .committees-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat { border-right: none; flex: 0 0 45%; padding: 0; }
    .hero-stat:last-child { padding: 0; }
    .cert-path { flex-direction: column; align-items: stretch; }
    .cert-arrow { display: none; }
    .cert-step { max-width: none; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .committees-grid { grid-template-columns: 1fr; }
    .programs-tabs { flex-direction: column; }
    .section-inner { padding: 72px 24px; }
    .nav-inner { padding: 0 24px; }
    .cpmp-banner { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }