/* ================================================================
   DR. MEHDI SALMAN POUR — OFFICIAL WEBSITE
   Minimal Corporate Luxury | PHP Website
   ================================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

   /* ── RESET ───────────────────────────────────────────────── */
   *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
   html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
   body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1E293B; line-height: 1.6; overflow-x: hidden; }
   img { max-width: 100%; display: block; }
   a { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   button { cursor: pointer; border: none; background: none; font-family: inherit; }
   
   /* ── VARIABLES ───────────────────────────────────────────── */
   :root {
     --navy:   #0F172A;
     --navy2:  #1E293B;
     --off:    #F8FAFC;
     --g1:     #F1F5F9;
     --g2:     #E2E8F0;
     --g4:     #94A3B8;
     --dark:   #1E293B;
     --gold:   #C8A96B;
     --gold2:  #B8924A;
     --max:    1160px;
     --navh:   72px;
   }
   
   /* ── SCROLLBAR ───────────────────────────────────────────── */
   ::-webkit-scrollbar { width: 4px; }
   ::-webkit-scrollbar-track { background: #F1F5F9; }
   ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
   
   /* ── LAYOUT ──────────────────────────────────────────────── */
   .W { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
   .section { padding: 96px 0; }
   .bg-off { background: var(--off); }
   .bg-navy { background: var(--navy); }
   
   /* ── TYPOGRAPHY ──────────────────────────────────────────── */
   .eyebrow {
     font-size: .67rem; font-weight: 700; letter-spacing: .22em;
     text-transform: uppercase; color: var(--gold);
     display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
   }
   .eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
   .gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 18px; }
   .h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; color: var(--navy); }
   .lead { font-size: 1rem; color: var(--g4); line-height: 1.8; max-width: 560px; }
   .bp { font-size: .95rem; color: var(--g4); line-height: 1.85; }
   .bp + .bp { margin-top: 14px; }
   .bp strong { color: var(--dark); font-weight: 600; }
   
   /* ── BUTTONS ─────────────────────────────────────────────── */
   .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 4px; font-size: .77rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: all .2s; cursor: pointer; white-space: nowrap; }
   .btn-navy { background: var(--navy); color: #fff; border: 2px solid var(--navy); }
   .btn-navy:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(15,23,42,.2); }
   .btn-gold { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); }
   .btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
   .btn-ghost-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.38); }
   .btn-ghost-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }
   .btn-ghost-d { background: transparent; color: var(--navy); border: 1.5px solid var(--g2); }
   .btn-ghost-d:hover { border-color: var(--navy); background: var(--g1); }
   
   /* ── NAVIGATION ──────────────────────────────────────────── */
   #navbar {
     position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
     height: var(--navh); background: rgba(15,23,42,.97);
     backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(200,169,107,.12);
   }
   .nav-inner { height: 100%; max-width: var(--max); margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; }
   .nav-brand { display: flex; flex-direction: column; gap: 1px; }
   .nav-brand-name { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
   .nav-brand-sub { font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
   .nav-links { display: flex; align-items: center; gap: 2px; }
   .nav-links a { padding: 7px 13px; font-size: .73rem; font-weight: 500; color: rgba(255,255,255,.62); border-radius: 4px; transition: all .2s; }
   .nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
   .nav-links a.active { color: var(--gold); }
   .nav-links .nav-cta { background: var(--gold); color: var(--navy); font-weight: 700; padding: 8px 18px; }
   .nav-links .nav-cta:hover { background: var(--gold2); color: var(--navy); }
   .burger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
   .burger span { display: block; width: 20px; height: 1.5px; background: rgba(255,255,255,.8); transition: .2s; }
   .mobile-menu { position: fixed; inset: 0; background: rgba(15,23,42,.98); backdrop-filter: blur(20px); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; opacity: 0; pointer-events: none; transition: opacity .25s; }
   .mobile-menu.open { opacity: 1; pointer-events: all; }
   .mobile-menu a { font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,.7); transition: color .2s; }
   .mobile-menu a:hover { color: var(--gold); }
   .mobile-close { position: absolute; top: 22px; right: 24px; font-size: 1.2rem; color: rgba(255,255,255,.4); cursor: pointer; }
   .mobile-close:hover { color: #fff; }
   
   /* ── PAGE HEADER ─────────────────────────────────────────── */
   .page-header { padding: calc(var(--navh) + 52px) 0 56px; background: var(--navy); position: relative; overflow: hidden; }
   .page-header-bg { position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; opacity: .09; }
   .page-header-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,169,107,.4), transparent); }
   .page-header-content { position: relative; z-index: 2; }
   .ph-tag { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
   .ph-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -.025em; margin-bottom: 14px; line-height: 1.15; }
   .ph-sub { font-size: .95rem; color: rgba(255,255,255,.48); max-width: 520px; line-height: 1.7; }
   .breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 28px; font-size: .73rem; color: rgba(255,255,255,.32); }
   .breadcrumb a { color: rgba(255,255,255,.42); transition: color .2s; }
   .breadcrumb a:hover { color: var(--gold); }
   .breadcrumb .sep { color: rgba(255,255,255,.16); }
   .breadcrumb .current { color: var(--gold); }
   
   /* ── HERO (Homepage) ─────────────────────────────────────── */
   .hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
   .hero-bg { position: absolute; inset: 0; background: url('../images/MX7A6666.JPG') center 28% / cover no-repeat; }
   .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,.60) 0%, rgba(15,23,42,.72) 45%, rgba(15,23,42,.90) 100%); }
   .hero-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 220px rgba(0,0,0,.45); pointer-events: none; }
   .hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: calc(var(--navh) + 48px) 48px 80px; }
   .hero-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(200,169,107,.12); border: 1px solid rgba(200,169,107,.3); border-radius: 2px; padding: 6px 14px; margin-bottom: 32px; }
   .hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 2.4s infinite; }
   @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
   .hero-pill-text { font-size: .63rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
   .hero-dr { font-size: .95rem; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
   .hero-name { font-size: clamp(3.2rem, 7.5vw, 6rem); font-weight: 900; color: #fff; line-height: 1.0; letter-spacing: -.03em; margin-bottom: 22px; }
   .hero-bar { width: 48px; height: 2px; background: var(--gold); margin-bottom: 22px; }
   .hero-roles { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
   .hero-role { display: flex; align-items: center; gap: 12px; font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.6); }
   .hero-role::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
   .hero-stmt { font-size: 1rem; color: rgba(255,255,255,.45); max-width: 560px; line-height: 1.75; margin-bottom: 40px; }
   .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
   .hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
   .hero-scroll span { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.28); }
   .scroll-track { width: 1px; height: 44px; background: rgba(255,255,255,.1); position: relative; overflow: hidden; }
   .scroll-thumb { position: absolute; top: -14px; width: 1px; height: 14px; background: var(--gold); animation: scrollD 2s infinite; }
   @keyframes scrollD { 0%{top:-14px} 100%{top:44px} }
   
   /* ── STATS STRIP ─────────────────────────────────────────── */
   .stats-strip { background: var(--navy); border-bottom: 1px solid rgba(200,169,107,.1); }
   .stats-strip-grid { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(6, 1fr); }
   .stat-strip-item { padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.05); transition: background .2s; }
   .stat-strip-item:last-child { border-right: none; }
   .stat-strip-item:hover { background: rgba(200,169,107,.04); }
   .stat-strip-num { font-size: 1.85rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 5px; }
   .stat-strip-label { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.32); }
   
   /* ── CARDS ───────────────────────────────────────────────── */
   .card { background: #fff; border: 1px solid var(--g2); border-radius: 6px; transition: all .2s; }
   .card:hover { box-shadow: 0 8px 32px rgba(15,23,42,.1); border-color: rgba(200,169,107,.35); transform: translateY(-2px); }
   .stat-card { text-align: center; padding: 32px 20px; }
   .stat-card .number { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }
   .stat-card .number em { color: var(--gold); font-style: normal; }
   .stat-card .label { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g4); }
   
   /* ── FACT ITEMS ──────────────────────────────────────────── */
   .facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0; }
   .fact-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--off); border: 1px solid var(--g2); border-radius: 4px; }
   .fact-icon { font-size: .95rem; flex-shrink: 0; margin-top: 1px; }
   .fact-label { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g4); margin-bottom: 2px; }
   .fact-value { font-size: .84rem; font-weight: 600; color: var(--dark); }
   
   /* ── ROLE ITEMS ──────────────────────────────────────────── */
   .role-list { display: flex; flex-direction: column; gap: 9px; margin: 24px 0; }
   .role-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--off); border: 1px solid var(--g2); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; transition: all .2s; }
   .role-item:hover { background: #fff; box-shadow: 0 2px 8px rgba(15,23,42,.06); }
   .role-abbr { font-size: .95rem; font-weight: 900; color: var(--gold); min-width: 52px; }
   .role-position { font-size: .82rem; font-weight: 700; color: var(--navy); }
   .role-org { font-size: .74rem; color: var(--g4); margin-top: 1px; }
   
   /* ── ORG TILES ───────────────────────────────────────────── */
   .orgs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--g2); border-radius: 6px; overflow: hidden; background: var(--g2); margin-top: 48px; }
   .org-tile { background: #fff; padding: 28px 18px; text-align: center; transition: all .2s; border-bottom: 3px solid transparent; }
   .org-tile:hover { background: var(--navy); border-bottom-color: var(--gold); }
   .org-tile:hover .org-abbr { color: #fff; }
   .org-tile:hover .org-role { color: var(--gold); }
   .org-tile:hover .org-name-sm { color: rgba(255,255,255,.5); }
   .org-abbr { font-size: 1.75rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 10px; transition: color .2s; }
   .org-role { font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; transition: color .2s; }
   .org-name-sm { font-size: .73rem; font-weight: 500; color: var(--g4); line-height: 1.4; transition: color .2s; }
   
   /* ── ABOUT GRID ──────────────────────────────────────────── */
   .about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
   .portrait-wrap { border-radius: 4px; overflow: hidden; box-shadow: 0 24px 56px rgba(15,23,42,.18); position: relative; }
   .portrait-wrap img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
   .portrait-footer { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(15,23,42,.95) 0%, transparent 100%); padding: 32px 22px 18px; }
   .portrait-role { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
   .portrait-name { font-size: .97rem; font-weight: 700; color: #fff; }
   
   /* ── TIMELINE ────────────────────────────────────────────── */
   .timeline { position: relative; padding-left: 28px; margin-top: 48px; }
   .timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--g2); }
   .tl-item { position: relative; padding-bottom: 34px; padding-left: 28px; }
   .tl-item:last-child { padding-bottom: 0; }
   .tl-dot { position: absolute; left: -34px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); box-shadow: 0 0 0 4px var(--off); }
   .tl-period { font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
   .tl-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
   .tl-desc { font-size: .87rem; color: var(--g4); line-height: 1.75; }
   
   /* ── ORG CARDS (Leadership page) ─────────────────────────── */
   .org-card { background: #fff; border: 1px solid var(--g2); border-radius: 6px; overflow: hidden; margin-bottom: 24px; border-left: 4px solid var(--gold); transition: all .2s; }
   .org-card:hover { box-shadow: 0 8px 32px rgba(15,23,42,.1); }
   .org-card-head { display: flex; align-items: center; gap: 28px; padding: 30px 36px; background: var(--off); border-bottom: 1px solid var(--g2); }
   .org-card-abbr { font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; min-width: 90px; }
   .org-card-role { font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
   .org-card-name { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
   .org-card-sub { font-size: .83rem; color: var(--g4); }
   .org-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 36px; }
   .focus-title { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 13px; }
   .focus-list { display: flex; flex-direction: column; gap: 8px; }
   .focus-item { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; color: var(--g4); line-height: 1.5; }
   .focus-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
   
   /* ── ACHIEVEMENTS ────────────────────────────────────────── */
   .stats-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 72px; }
   .wc-highlight { background: var(--navy); border-radius: 6px; padding: 44px; margin-bottom: 72px; position: relative; overflow: hidden; }
   .wc-highlight-bg { position: absolute; inset: 0; background: url('../images/AT7I1114.JPG') center/cover; opacity: .08; }
   .wc-highlight-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: start; }
   .wc-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.25; }
   .wc-desc { font-size: .91rem; color: rgba(255,255,255,.42); line-height: 1.8; margin-bottom: 28px; }
   .wc-nums { display: flex; gap: 28px; flex-wrap: wrap; }
   .wc-num { }
   .wc-num-n { font-size: 1.85rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 3px; }
   .wc-num-l { font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }
   .results-panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 22px 26px; min-width: 240px; flex-shrink: 0; }
   .results-panel-title { font-size: .57rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; }
   .result-row { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .84rem; color: rgba(255,255,255,.62); }
   .result-row:last-child { border-bottom: none; }
   .ach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
   .ach-item { background: #fff; border: 1px solid var(--g2); border-radius: 6px; padding: 28px; transition: all .2s; }
   .ach-item:hover { box-shadow: 0 8px 24px rgba(15,23,42,.08); border-color: rgba(200,169,107,.3); transform: translateY(-2px); }
   .ach-item-top { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
   .ach-emoji { font-size: 1.5rem; }
   .ach-badge { font-size: .57rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); background: rgba(200,169,107,.1); padding: 3px 9px; border-radius: 2px; }
   .ach-title { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
   .ach-desc { font-size: .84rem; color: var(--g4); line-height: 1.75; }
   .ach-year { display: inline-block; margin-top: 10px; font-size: .62rem; font-weight: 700; color: var(--navy); background: var(--g1); padding: 3px 8px; border-radius: 2px; }
   
   /* ── PROJECTS ────────────────────────────────────────────── */
   .proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
   .proj-card { background: #fff; border: 1px solid var(--g2); border-radius: 6px; overflow: hidden; transition: all .2s; display: flex; flex-direction: column; }
   .proj-card:hover { box-shadow: 0 12px 36px rgba(15,23,42,.12); border-color: rgba(200,169,107,.4); transform: translateY(-3px); }
   .proj-card-img { height: 190px; overflow: hidden; background: var(--g1); position: relative; }
   .proj-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
   .proj-card:hover .proj-card-img img { transform: scale(1.06); }
   .proj-card-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--navy), #2D3A5E); }
   .proj-phase { position: absolute; top: 12px; right: 12px; font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px; }
   .phase-active { background: #DCFCE7; color: #16A34A; }
   .phase-future { background: rgba(200,169,107,.22); color: #92600F; }
   .phase-vision { background: #EDE9FE; color: #6D28D9; }
   .proj-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
   .proj-card-cat { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
   .proj-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; line-height: 1.3; }
   .proj-card-desc { font-size: .83rem; color: var(--g4); line-height: 1.72; flex: 1; }
   .proj-card-foot { padding: 14px 26px; border-top: 1px solid var(--g2); display: flex; gap: 6px; flex-wrap: wrap; }
   .proj-tag { font-size: .6rem; font-weight: 600; color: var(--g4); background: var(--off); padding: 3px 8px; border-radius: 2px; }
   
   /* ── ROADMAP TABLE ───────────────────────────────────────── */
   .roadmap-table { width: 100%; border-collapse: collapse; margin-top: 48px; border: 1px solid var(--g2); border-radius: 6px; overflow: hidden; }
   .roadmap-table th { background: var(--navy); color: #fff; padding: 14px 20px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: left; }
   .roadmap-table td { padding: 14px 20px; border-bottom: 1px solid var(--g2); font-size: .86rem; vertical-align: top; }
   .roadmap-table tr:last-child td { border-bottom: none; }
   .roadmap-table tr:hover td { background: var(--off); }
   .rt-year { font-weight: 700; color: var(--navy); }
   .rt-phase { color: var(--gold); font-weight: 600; }
   
   /* ── NEWS ────────────────────────────────────────────────── */
   .news-layout { display: grid; grid-template-columns: 1fr 310px; gap: 40px; }
   .news-card { background: #fff; border: 1px solid var(--g2); border-radius: 6px; overflow: hidden; margin-bottom: 24px; transition: all .2s; }
   .news-card:hover { box-shadow: 0 8px 28px rgba(15,23,42,.1); border-color: rgba(200,169,107,.3); }
   .news-card-featured { border-top: 2px solid var(--gold); }
   .news-card-img { overflow: hidden; background: var(--g1); }
   .news-card-img img { width: 100%; display: block; object-fit: cover; transition: transform .4s; }
   .news-card:hover .news-card-img img { transform: scale(1.03); }
   .news-card-body { padding: 28px; }
   .news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
   .news-cat { font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); background: rgba(200,169,107,.1); padding: 3px 9px; border-radius: 2px; }
   .news-date { font-size: .72rem; color: var(--g4); }
   .news-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
   .news-title-lg { font-size: 1.6rem; }
   .news-excerpt { font-size: .87rem; color: var(--g4); line-height: 1.75; }
   .news-footer { padding: 14px 28px; border-top: 1px solid var(--g2); display: flex; justify-content: space-between; align-items: center; }
   .news-read-more { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); transition: color .2s; }
   .news-read-more:hover { color: var(--gold); }
   .sidebar-box { background: #fff; border: 1px solid var(--g2); border-radius: 6px; overflow: hidden; margin-bottom: 24px; }
   .sidebar-head { background: var(--navy); padding: 14px 20px; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
   .sidebar-item { display: flex; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--g2); transition: background .2s; }
   .sidebar-item:last-child { border-bottom: none; }
   .sidebar-item:hover { background: var(--off); }
   .sidebar-item-img { width: 60px; height: 60px; border-radius: 3px; overflow: hidden; flex-shrink: 0; background: var(--g1); }
   .sidebar-item-img img { width: 100%; height: 100%; object-fit: cover; }
   .sidebar-item-title { font-size: .82rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 3px; }
   .sidebar-item-date { font-size: .7rem; color: var(--g4); }
   
   /* ── GALLERY ─────────────────────────────────────────────── */
   .filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
   .filter-btn { padding: 9px 20px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--g4); background: #fff; border: 1px solid var(--g2); border-radius: 4px; cursor: pointer; transition: all .2s; }
   .filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
   .gallery-masonry { columns: 4; column-gap: 10px; }
   .gallery-item { break-inside: avoid; margin-bottom: 10px; border-radius: 4px; overflow: hidden; position: relative; cursor: pointer; background: var(--g1); border: 1px solid var(--g2); }
   .gallery-item img { width: 100%; display: block; transition: transform .45s ease; }
   .gallery-item:hover img { transform: scale(1.04); }
   .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.85) 0%, rgba(15,23,42,0) 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 14px; }
   .gallery-item:hover .gallery-overlay { opacity: 1; }
   .gallery-item-cat { font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
   .gallery-item-caption { font-size: .73rem; font-weight: 600; color: #fff; line-height: 1.3; }
   .gallery-zoom { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; background: rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; opacity: 0; transition: opacity .3s; }
   .gallery-item:hover .gallery-zoom { opacity: 1; }
   
   /* ── LIGHTBOX ────────────────────────────────────────────── */
   .lightbox { position: fixed; inset: 0; background: rgba(15,23,42,.97); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
   .lightbox.open { opacity: 1; pointer-events: all; }
   .lightbox img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
   .lb-close { position: fixed; top: 22px; right: 24px; width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; cursor: pointer; z-index: 10001; transition: background .2s; }
   .lb-close:hover { background: rgba(255,255,255,.2); }
   .lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; cursor: pointer; z-index: 10001; transition: background .2s; }
   .lb-prev:hover, .lb-next:hover { background: rgba(200,169,107,.4); }
   .lb-prev { left: 16px; }
   .lb-next { right: 16px; }
   .lb-caption { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: .8rem; color: rgba(255,255,255,.5); z-index: 10001; }
   
   /* ── CONTACT ─────────────────────────────────────────────── */
   .contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
   .contact-info-box { background: var(--navy); border-radius: 6px; padding: 36px; position: sticky; top: calc(var(--navh) + 24px); }
   .contact-info-title { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
   .contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
   .contact-row:last-of-type { border-bottom: none; }
   .contact-icon { width: 38px; height: 38px; background: rgba(200,169,107,.12); border: 1px solid rgba(200,169,107,.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; }
   .contact-lbl { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
   .contact-val { font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.7); }
   .contact-val a { color: rgba(200,169,107,.9); }
   .inquiries-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: 20px; margin-top: 24px; }
   .inquiries-title { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
   .inquiry-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.5); padding: 4px 0; }
   .inquiry-item::before { content: '·'; color: var(--gold); font-size: 1.1rem; }
   .social-pills { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
   .social-pill { display: flex; align-items: center; gap: 7px; padding: 8px 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6); transition: all .2s; }
   .social-pill:hover { background: rgba(200,169,107,.12); border-color: rgba(200,169,107,.3); color: var(--gold); }
   .form-card { background: #fff; border: 1px solid var(--g2); border-radius: 6px; padding: 44px; box-shadow: 0 2px 8px rgba(15,23,42,.05); }
   .form-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
   .form-sub { font-size: .87rem; color: var(--g4); margin-bottom: 32px; line-height: 1.7; }
   .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
   .form-group { margin-bottom: 20px; }
   .form-label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
   .form-label em { color: var(--gold); font-style: normal; }
   .form-input, .form-select, .form-textarea { width: 100%; padding: 12px 14px; background: var(--off); border: 1px solid var(--g2); border-radius: 4px; font-family: 'Inter', system-ui, sans-serif; font-size: .9rem; color: var(--dark); transition: all .2s; outline: none; }
   .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(200,169,107,.1); }
   .form-input::placeholder, .form-textarea::placeholder { color: #CBD5E1; }
   .form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%2394A3B8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 10px; padding-right: 36px; }
   .form-select option { background: #fff; }
   .form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
   .form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
   .wa-btn { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: #F0FDF4; border: 1.5px solid #BBF7D0; border-radius: 4px; color: #16A34A; font-size: .77rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: all .2s; }
   .wa-btn:hover { background: #DCFCE7; border-color: #86EFAC; }
   .alert { padding: 16px 20px; border-radius: 4px; margin-bottom: 20px; font-size: .9rem; font-weight: 500; }
   .alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #16A34A; }
   .alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; }
   
   /* ── FOOTER ──────────────────────────────────────────────── */
   footer { background: var(--navy); }
   .footer-top { padding: 56px 0 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
   .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
   .footer-brand-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
   .footer-brand-sub { font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
   .footer-brand-desc { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 280px; }
   .footer-col-title { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
   .footer-links { display: flex; flex-direction: column; gap: 9px; }
   .footer-links a { font-size: .83rem; color: rgba(255,255,255,.42); transition: color .2s; }
   .footer-links a:hover { color: #fff; }
   .footer-contact-row { margin-bottom: 11px; }
   .footer-contact-label { font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
   .footer-contact-value { font-size: .82rem; color: rgba(255,255,255,.48); }
   .footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
   .footer-copy { font-size: .72rem; color: rgba(255,255,255,.22); }
   .footer-copy a { color: var(--gold); }
   .footer-socials { display: flex; gap: 8px; }
   .footer-soc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.35); transition: all .2s; }
   .footer-soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,107,.08); }
   
   /* ── REVEAL ANIMATION ────────────────────────────────────── */
   .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
   .reveal.visible { opacity: 1; transform: none; }
   .delay-1 { transition-delay: .08s; }
   .delay-2 { transition-delay: .16s; }
   .delay-3 { transition-delay: .24s; }
   
   /* ── RESPONSIVE UTILITY CLASSES ──────────────────────────── */
   /* Fix inline-style grids that break on mobile */
   
   .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
   .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
   .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
   .grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
   .grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
   
   .wc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
   .wc-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
   .stats-bar-flex { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
   .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; gap: 6px; }
   .partners-flex { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
   .partners-grid{
    grid-template-columns:repeat(5,1fr);
  }
  .books-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .Achievement-grid{
    grid-template-columns:1fr 1fr;
  }
  .Portfolio-grid{
    grid-template-columns:repeat(4,1fr);
  }
  .qualifications{
    grid-template-columns:repeat(4,1fr);
  }
  .coming-soon{
    grid-template-columns:repeat(4,1fr);
  }
   /* Override inline styles with !important for critical responsive fixes */
   @media (max-width: 768px) {
    .partners-grid, .books-grid, .orgs-grid, .facts-grid, .Achievement-grid, .qualifications, .coming-soon{
      grid-template-columns:repeat(2,1fr) !important;
    }
    .stats-strip-grid, .partners-grid{
      grid-template-columns:repeat(3,1fr) !important;
    }


     [style*="display:grid"][style*="grid-template-columns: 1fr 1fr"],
     [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"],
     [style*="display:grid"][style*="grid-template-columns:1fr 1fr"] {
       grid-template-columns: 1fr !important;
       gap: 24px !important;
     }
     
     [style*="display:grid"][style*="grid-template-columns:repeat(3,1fr)"],
     [style*="display:grid"][style*="grid-template-columns: repeat(3, 1fr)"] {
       grid-template-columns: 1fr !important;
       gap: 16px !important;
     }
     
     [style*="display:grid"][style*="grid-template-columns:repeat(4,1fr)"],
     [style*="display:grid"][style*="grid-template-columns: repeat(4, 1fr)"] {
       grid-template-columns: 1fr !important;
       grid-template-rows: auto !important;
       gap: 8px !important;
     }
     
     [style*="display:grid"][style*="grid-template-columns:repeat(5,1fr)"],
     [style*="display:grid"][style*="grid-template-columns: repeat(5, 1fr)"] {
       grid-template-columns: repeat(2, 1fr) !important;
       gap: 1px !important;
     }
   }
   
   @media (max-width: 480px) {
     [style*="display:grid"][style*="grid-template-columns:repeat(5,1fr)"],
     [style*="display:grid"][style*="grid-template-columns: repeat(5, 1fr)"] {
       grid-template-columns: 1fr !important;
     }
   }
   
   /* ── RESPONSIVE ──────────────────────────────────────────── */

   /* ── Tablet Large (≤ 1100px) ──────────────────────────────── */
   @media (max-width: 1100px) {
     .W, .nav-inner { padding: 0 32px; }
     .stats-strip-grid { padding: 0 32px; }
     .hero-content { padding: calc(var(--navh) + 32px) 32px 60px; }
     .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
     .about-grid { gap: 48px; }
   }

   /* ── Tablet (≤ 900px) ─────────────────────────────────────── */
   @media (max-width: 900px) {
     .about-grid { grid-template-columns: 1fr; }
     .portrait-wrap { max-width: 300px; margin: 0 auto; }
     .orgs-grid { grid-template-columns: repeat(3, 1fr); }
     .wc-highlight-inner { grid-template-columns: 1fr; }
     .results-panel { min-width: unset; }
     .org-card-body { grid-template-columns: 1fr; }
     .news-layout { grid-template-columns: 1fr; }
     .contact-layout { grid-template-columns: 1fr; }
     .contact-info-box { position: static; }
     .proj-grid { grid-template-columns: repeat(2, 1fr); }
     .ach-grid { grid-template-columns: 1fr; }
     .roadmap-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
     
     /* Fix inline-style grids */
     .wc-grid { grid-template-columns: 1fr; gap: 40px; }
     .grid-2 { grid-template-columns: 1fr; }
     .grid-3 { grid-template-columns: repeat(2, 1fr); }
     .grid-5 { grid-template-columns: repeat(3, 1fr); }
   }

   /* ── Mobile (≤ 768px) ─────────────────────────────────────── */
   @media (max-width: 768px) {
     :root { --navh: 60px; }

     /* Layout */
     .W, .nav-inner, .stats-strip-grid { padding: 0 18px; }
     .section { padding: 56px 0; }

     /* Hero */
     .hero-content { padding: calc(var(--navh) + 20px) 18px 50px; }
     .hero-name { font-size: 2.6rem; }
     .hero-stmt { font-size: .9rem; }
     .hero-scroll { display: none; }

     /* Nav */
     .nav-links { display: none; }
     .burger { display: flex; }
     .nav-brand-name { font-size: .9rem; }

     /* Page Header */
     .page-header { padding: calc(var(--navh) + 32px) 0 40px; }
     .ph-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

     /* Stats */
     .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
     .stat-strip-item { padding: 20px 12px; }
     .stat-strip-num { font-size: 1.5rem; }
     .stats-6 { grid-template-columns: repeat(2, 1fr); }
     .wc-stats-grid { grid-template-columns: 1fr; gap: 8px; }

     /* Grids — Fix inline styles */
     .orgs-grid { grid-template-columns: repeat(2, 1fr); }
     .facts-grid { grid-template-columns: 1fr; }
     .proj-grid { grid-template-columns: 1fr; }
     .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
     .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 1px; }
     .wc-grid { gap: 32px; }
     
     /* Gallery */
     .gallery-grid { 
       grid-template-columns: 1fr; 
       grid-template-rows: auto; 
       gap: 8px; 
     }
     .gallery-grid > div { grid-column: span 1 !important; grid-row: span 1 !important; }
     .gallery-masonry { columns: 2; column-gap: 8px; }

     /* Stats bar */
     .stats-bar-flex { flex-direction: column; gap: 16px; padding: 24px 20px !important; }
     .stats-bar-flex > div { width: 100%; }
     .stats-bar-flex .btn { width: 100%; justify-content: center; }
     
     /* Partners flex */
     .partners-flex { gap: 20px; }

     /* Forms */
     .form-row-2 { grid-template-columns: 1fr; }
     .form-card { padding: 28px 20px; }
     .form-actions { flex-direction: column; }
     .form-actions .btn,
     .form-actions .wa-btn { width: 100%; justify-content: center; }

     /* Footer */
     .footer-grid { grid-template-columns: 1fr; gap: 28px; }
     .footer-top { padding: 40px 0 32px; }
     .footer-bottom { flex-direction: column; text-align: center; }
     .footer-brand-desc { max-width: 100%; }

     /* Other */
     .wc-highlight { padding: 28px; }
     .org-card-head { flex-direction: column; align-items: flex-start; padding: 20px; gap: 12px; }
     .org-card-body { padding: 20px; }
     .filter-bar { gap: 6px; }
     .filter-btn { padding: 8px 14px; font-size: .65rem; }

     /* Buttons */
     .hero-btns { flex-wrap: wrap; gap: 10px; }

     /* Typography */
     .h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
     .lead { font-size: .92rem; }

     /* Timeline */
     .timeline { padding-left: 20px; }
     .tl-item { padding-left: 20px; }
     .tl-dot { left: -27px; width: 10px; height: 10px; }

     /* Contact */
     .contact-info-box { padding: 24px; }

     /* Lightbox */
     .lb-prev { left: 8px; }
     .lb-next { right: 8px; }
     .lightbox img { max-width: 95vw; max-height: 75vh; }

     /* Tables */
     .roadmap-table { font-size: .8rem; }
     .roadmap-table td, .roadmap-table th { padding: 10px 14px; }
   }

   /* ── Mobile Small (≤ 480px) ───────────────────────────────── */
   @media (max-width: 480px) {
     .W, .nav-inner, .stats-strip-grid { padding: 0 14px; }
     .section { padding: 48px 0; }

     /* Hero */
     .hero-name { font-size: 2rem; }
     .hero-pill { padding: 5px 10px; }
     .hero-btns { flex-direction: column; gap: 10px; width: 100%; }
     .hero-btns .btn { width: 100%; justify-content: center; }
     .hero-roles { gap: 4px; }

     /* Stats */
     .stats-strip-grid { grid-template-columns: 1fr; }
     .stat-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); padding: 16px 14px; }
     .stat-strip-item:last-child { border-bottom: none; }
     .stats-6 { grid-template-columns: 1fr; }
     .wc-stats-grid { grid-template-columns: 1fr; }

     /* Grids — Force single column */
     .orgs-grid { grid-template-columns: 1fr; }
     .gallery-masonry { columns: 1; }
     .proj-grid { grid-template-columns: 1fr; }
     .facts-grid { grid-template-columns: 1fr; }
     .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; gap: 12px; }
     .gallery-grid { grid-template-columns: 1fr; gap: 6px; }

     /* Cards */
     .form-card { padding: 24px 16px; }
     .wc-highlight { padding: 20px 14px; }
     .contact-info-box { padding: 18px 14px; }
     .news-card-body { padding: 18px; }
     .news-footer { padding: 12px 18px; }

     /* Org tiles */
     .org-tile { padding: 20px 12px; }
     .org-abbr { font-size: 1.4rem; }

     /* Typography */
     .h2 { font-size: 1.4rem; }
     .ph-title { font-size: 1.7rem; }

     /* Breadcrumb */
     .breadcrumb { font-size: .65rem; gap: 5px; flex-wrap: wrap; }

     /* Social pills */
     .social-pills { gap: 6px; }
     .social-pill { padding: 6px 10px; font-size: .7rem; }

     /* Footer */
     .footer-socials { justify-content: center; }
     .footer-copy { font-size: .68rem; }

     /* Nav brand */
     .nav-brand-name { font-size: .85rem; }
     .nav-brand-sub { font-size: .52rem; }

     /* Buttons */
     .btn { padding: 12px 20px; font-size: .72rem; }
     
     /* Stats bar — Full width on mobile */
     .stats-bar-flex { padding: 20px 14px !important; }
     .stats-bar-flex > div { text-align: center; }
     
     /* Partners flex */
     .partners-flex { flex-direction: column; gap: 16px; }
     .partners-flex > div { width: 100%; text-align: center; }
   }

   /* ── Extra Small (≤ 360px) ────────────────────────────────── */
   @media (max-width: 360px) {
     .W, .nav-inner, .stats-strip-grid { padding: 0 12px; }
     .hero-name { font-size: 1.8rem; }
     .form-card { padding: 20px 12px; }
     .contact-info-box { padding: 14px 12px; }
   }

   /* ── Touch & Interaction Improvements ────────────────────── */
   @media (hover: none) and (pointer: coarse) {
     .card:hover { transform: none; box-shadow: none; border-color: var(--g2); }
     .btn-navy:hover { transform: none; box-shadow: none; }
     .btn-gold:hover { transform: none; }
     .org-tile:hover { background: #fff; border-bottom-color: transparent; }
     .org-tile:hover .org-abbr { color: var(--navy); }
     .org-tile:hover .org-role { color: var(--gold); }
     .org-tile:hover .org-name-sm { color: var(--g4); }
     /* Make tap targets bigger */
     .nav-links a { padding: 10px 14px; }
     .filter-btn { min-height: 44px; }
     .footer-soc { width: 40px; height: 40px; }
     .lb-prev, .lb-next { width: 52px; height: 52px; }
   }