/*
Theme Name: INZCCI
Theme URI: https://inzcci.org
Author: INZCCI
Author URI: https://inzcci.org
Description: Official theme for the India New Zealand Chamber of Commerce and Industry. Pixel-perfect conversion of the HTML design with fully dynamic WordPress content management.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
License: Proprietary
Text Domain: inzcci
Tags: business, trade, bilateral, chamber-of-commerce
*/

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'Inter',Arial,sans-serif;color:#1A1A1A;background:#fff;-webkit-font-smoothing:antialiased;line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── TOKENS ── */
:root{
  --navy:    #0B2A4A;
  --navy2:   #0d3159;
  --accent:  #F36C21;
  --green:   #2E7D32;
  --light:   #EEF3FA;
  --light2:  #F5F7FA;
  --border:  #E2E8F0;
  --txt:     #1A1A1A;
  --txt2:    #4A5568;
  --txt3:    #718096;
  --white:   #ffffff;
  --shadow:  0 2px 12px rgba(11,42,74,.08);
  --shadow2: 0 6px 24px rgba(11,42,74,.12);
  --r:       6px;
  --r2:      10px;
}

/* ── LAYOUT ── */
.wrap{max-width:1200px;margin:0 auto;padding:0 32px;width:100%}

/* ── TYPOGRAPHY SCALE ── */
h2{font-size:30px;font-weight:700;line-height:1.25;color:var(--navy)}
h3{font-size:20px;font-weight:600;line-height:1.3;color:var(--navy)}
h4{font-size:16px;font-weight:600;color:var(--navy)}
p{font-size:15px;line-height:1.7;color:var(--txt3)}

.sec-label{font-size:11.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);display:block;margin-bottom:10px}
.sec-title{font-size:30px;font-weight:700;color:var(--navy);margin-bottom:12px;line-height:1.25}
.sec-sub{font-size:16px;color:#607080;line-height:1.7;max-width:600px}

/* Two-colour underline: orange | green */
.sec-underline{
  display:block;width:72px;height:3px;
  margin:14px auto 0;border-radius:2px;
  background:linear-gradient(to right,#F36C21 50%,#2E7D32 50%);
}
.sec-underline--left{margin-left:0}

/* Section heading block */
.sec-heading{text-align:center;margin-bottom:56px}
.sec-heading h2{margin-bottom:0}

/* ── BUTTONS (unified system) ── */
.btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:13px 28px;font-size:15px;font-weight:600;
  border-radius:var(--r);border:2px solid transparent;
  cursor:pointer;white-space:nowrap;
  transition:all .18s ease;font-family:inherit;
  text-decoration:none;letter-spacing:.01em;
}
.btn-sm{padding:10px 20px;font-size:14px}
.btn-lg{padding:15px 34px;font-size:15px}

/* Orange – primary action */
.btn-orange{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-orange:hover{background:#d45a10;border-color:#d45a10;transform:translateY(-1px);box-shadow:0 4px 14px rgba(243,108,33,.35)}

/* White outline – hero secondary */
.btn-white-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.7)}
.btn-white-outline:hover{background:rgba(255,255,255,.12);border-color:#fff}

/* Navy solid */
.btn-navy{background:var(--navy);color:#fff;border-color:var(--navy)}
.btn-navy:hover{background:var(--navy2);transform:translateY(-1px)}

/* Green solid */
.btn-green{background:var(--green);color:#fff;border-color:var(--green)}
.btn-green:hover{background:#245e27;transform:translateY(-1px)}

/* Light outline */
.btn-outline{background:#fff;color:var(--navy);border-color:#b8c8d8}
.btn-outline:hover{border-color:var(--navy);background:var(--light2)}


/* ======================================================
   1. HEADER
   ====================================================== */
.site-header{
  position:sticky;top:0;z-index:9000;
  height:84px;background:#fff;
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;
  box-shadow:0 1px 8px rgba(0,0,0,.05);
  overflow:visible;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;width:100%}

/* Logo */
.logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.logo-icon,.custom-logo{height:76px;width:auto;display:block;object-fit:contain}
a.custom-logo-link{display:flex;align-items:center}

/* Primary nav */
.primary-nav{display:flex;align-items:stretch;gap:0}

/* Nav item wrapper (replaces plain <a> at top level) */
.nav-item{position:relative;display:inline-flex;align-items:center}

.primary-nav .nav-item > a,
.primary-nav > a{
  font-size:14px;font-weight:500;color:var(--txt2);
  padding:8px 14px;border-radius:4px;
  display:inline-flex;align-items:center;gap:4px;
  transition:color .15s,background .15s;
  white-space:nowrap;
}
.primary-nav .nav-item > a:hover,
.primary-nav > a:hover{color:var(--navy);background:var(--light2)}
/* Chevron indicator for items with a dropdown */
.nav-item.has-dropdown > a::after{
  content:'';
  display:inline-block;
  width:7px;height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  transition:transform .2s ease;
  margin-left:5px;
  opacity:.7;
  flex-shrink:0;
}
.nav-item:hover > a::after,
.nav-item.is-open > a::after{
  transform:rotate(225deg) translateY(2px);
  opacity:1;
}

/* Dropdown menu */
.dropdown-menu{
  display:block!important; /* override Bootstrap/plugin display:none */
  position:absolute;top:calc(100% + 6px);left:0;
  background:#fff;border:1px solid var(--border);
  border-radius:10px;padding:8px 0;
  min-width:220px;white-space:nowrap;
  box-shadow:0 12px 32px rgba(0,0,0,.13);
  list-style:none;margin:0;
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateY(-8px);
  transition:opacity .2s,transform .2s,visibility .2s;
  z-index:9999;
}
/* Transparent bridge: fills the gap so mouse stays in hover-zone */
.nav-item > .dropdown-menu::before{
  content:'';
  position:absolute;top:-10px;left:0;right:0;height:10px;
}
/* Trigger on :hover and .is-open — no class dependency */
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu{
  opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto;
}
.dropdown-menu li{list-style:none}
.dropdown-menu li a{
  display:block;padding:10px 20px;
  font-size:13.5px;font-weight:500;color:var(--txt2);
  text-decoration:none;
  transition:color .15s,background .15s;
}
.dropdown-menu li a:hover{color:var(--navy);background:var(--light2)}
.dropdown-menu li + li{border-top:1px solid #f0f3f7}

/* Contact button in nav */
.primary-nav .nav-item > a.nav-cta,
.primary-nav > a.nav-cta{
  margin-left:8px;
  padding:10px 22px;font-size:14px;font-weight:600;
  background:var(--accent);color:#fff !important;border-radius:var(--r);
  display:inline-flex;align-items:center;gap:0;
  transition:background .18s, box-shadow .18s;
  border-radius:6px;
}
.primary-nav .nav-item > a.nav-cta:hover,
.primary-nav > a.nav-cta:hover{
  background:#d45a10;color:#fff !important;
  box-shadow:0 3px 10px rgba(243,108,33,.35);
}

/* ======================================================
   FTA TEASER BAND
   ====================================================== */
.fta-teaser{background:var(--navy);padding:48px 0}
.fta-inner{display:flex;align-items:center;gap:32px;flex-wrap:wrap}
.fta-badge{
  flex-shrink:0;width:64px;height:64px;border-radius:50%;
  background:var(--accent);color:#fff;font-size:15px;font-weight:800;
  display:flex;align-items:center;justify-content:center;letter-spacing:.05em;
}
.fta-content{flex:1;min-width:240px}
.fta-content h2{color:#fff;font-size:22px;font-weight:700;margin-bottom:8px}
.fta-content p{color:rgba(255,255,255,.72);font-size:15px;line-height:1.65;margin:0}
.fta-teaser .btn{flex-shrink:0}


.hero{
  position:relative;
  min-height:640px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  background:#081525;
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  z-index:0;
}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    175deg,
    rgba(5,15,30,.60) 0%,
    rgba(5,15,30,.75) 55%,
    rgba(5,15,30,.82) 100%
  );
}
.hero .wrap{
  position:relative;z-index:2;
  padding-top:80px;padding-bottom:72px;
  text-align:center;
}
.hero h1{
  color:#fff;
  font-size:clamp(30px,4.5vw,52px);
  font-weight:700;line-height:1.2;
  margin-bottom:20px;
  letter-spacing:-.01em;
  text-shadow:0 2px 16px rgba(0,0,0,.4);
  max-width:760px;
  margin-left:auto;margin-right:auto;
}
.hero h1 .col-orange{color:#F4882A}
.hero h1 .col-green {color:#56C25A}

.hero-sub{
  font-size:18px;color:rgba(255,255,255,.86);
  line-height:1.7;max-width:600px;
  margin:0 auto 40px;
  text-shadow:0 1px 6px rgba(0,0,0,.3);
  font-weight:400;
}
.hero-btns{
  display:flex;gap:16px;flex-wrap:wrap;
  justify-content:center;margin-bottom:28px;
}

/* Hero trust line */
.hero-trust{
  font-size:13.5px;color:rgba(255,255,255,.62);
  text-align:center;letter-spacing:.01em;
  margin-top:0;margin-bottom:0;
  line-height:1.6;
}

/* Partner strip (kept for legacy, hidden by default) */
.partner-strip-wrap{display:flex;justify-content:center}
.partner-strip{
  display:inline-flex;align-items:center;gap:20px;
  padding:12px 28px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  backdrop-filter:blur(6px);
}
.ps-label{
  font-size:12px;color:rgba(255,255,255,.7);
  letter-spacing:.05em;text-transform:uppercase;white-space:nowrap;
}
.ps-divider{width:1px;height:24px;background:rgba(255,255,255,.28)}
.ps-brand{
  display:flex;align-items:center;gap:7px;
  color:#fff;font-size:13px;font-weight:700;letter-spacing:.02em;
}
.ps-brand .ps-brand-name{font-size:11px;font-weight:400;color:rgba(255,255,255,.62);line-height:1.3;max-width:80px}
.ps-brand-abbr{font-size:14px;font-weight:900;color:#fff}

/* ======================================================
   3. BUSINESS ENTRY
   ====================================================== */
.business-entry{background:#F8FAFC;padding:90px 0;border-top:1px solid var(--border)}
.be-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:0}

.be-card{
  border-radius:var(--r2);
  padding:44px 40px;
  display:flex;flex-direction:column;gap:0;
  transition:box-shadow .2s,transform .2s;
  border:1px solid transparent;
}
.be-card > .btn{
  align-self:flex-start;
  margin-top:auto;
}
.be-card:hover{box-shadow:var(--shadow2);transform:translateY(-3px)}

.be-card-nz{background:#FFF9F5;border-color:#EDE0D2}
.be-card-in{background:#F6FAF5;border-color:#D2E8D2}

/* Flag circle */
.be-map-circle{
  width:88px;height:88px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:24px;font-size:48px;line-height:1;
}
.be-map-circle-nz{background:#FEF4ED}
.be-map-circle-in{background:#EEF7EE}

.be-card h3{
  font-size:21px;font-weight:700;color:var(--navy);
  margin-bottom:12px;line-height:1.25;
}
.be-card > p{
  font-size:15px;color:#607080;line-height:1.7;
  margin-bottom:16px;
}

/* Feature checklist */
.be-features{
  display:flex;flex-direction:column;gap:8px;
  margin-bottom:24px;width:100%;
}
.be-features li{
  font-size:14px;color:var(--txt2);
  padding-left:22px;position:relative;line-height:1.5;
}
.be-features li::before{
  content:'✓';
  position:absolute;left:0;
  color:var(--green);font-weight:700;font-size:13px;
}

/* ======================================================
   4. VALUE PROPOSITION
   ====================================================== */
.value-prop{
  background:#fff;padding:90px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.vp-header{text-align:center;margin-bottom:60px}
.vp-grid{display:grid;grid-template-columns:1fr 1fr 1fr}
.vp-col{
  display:flex;align-items:flex-start;gap:22px;
  padding:0 44px;
}
.vp-col:not(:last-child){border-right:1px solid #dde3ea}
.vp-col:first-child{padding-left:0}
.vp-col:last-child{padding-right:0}

.vp-icon{
  width:72px;height:72px;border-radius:50%;
  background:#EEF1F8;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;color:var(--navy);
}
.vp-icon svg{width:32px;height:32px}
.vp-text h3{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:10px;line-height:1.3}
.vp-text p{font-size:14.5px;color:#607080;line-height:1.7}

/* ======================================================
   5. PRIORITY SECTORS
   ====================================================== */
.sectors{background:#F8FAFC;padding:90px 0;border-top:1px solid var(--border)}
.sectors .sec-heading{margin-bottom:56px}

.sector-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:48px}
a.sector-card{text-decoration:none}
.sector-card{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:36px 32px;text-align:left;cursor:default;
  display:flex;flex-direction:column;align-items:flex-start;gap:0;
  transition:all .18s;
}
a.sector-card{cursor:pointer}
.sector-card:hover{border-color:var(--navy);box-shadow:0 6px 20px rgba(11,42,74,.10);transform:translateY(-3px)}
.s-icon{
  width:56px;height:56px;background:var(--light2);border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;flex-shrink:0;
}
.s-icon svg{width:28px;height:28px;stroke-width:1.8;color:var(--navy)}
.s-title{font-size:15px;font-weight:700;color:var(--navy);line-height:1.3;margin-bottom:8px;display:block}
.s-desc{font-size:13.5px;color:var(--txt2);line-height:1.55;margin:0}
.sectors-cta{text-align:center}

/* ======================================================
   6. FIND A PARTNER (dark banner)
   ====================================================== */
.find-partner{background:#0d2240;padding:64px 0}
.fp-inner{
  display:flex;align-items:center;
  justify-content:space-between;gap:40px;
}
.fp-left{display:flex;align-items:center;gap:24px}
.fp-circle{
  width:68px;height:68px;border-radius:50%;
  border:2px solid rgba(255,255,255,.3);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;color:#fff;
}
.fp-circle svg{width:32px;height:32px}
.fp-title{font-size:18px;font-weight:700;color:#fff;margin-bottom:5px}
.fp-sub{font-size:14px;color:rgba(255,255,255,.62)}
.fp-btns{display:flex;align-items:center;gap:14px;flex-shrink:0}

/* ======================================================
   7. TRADE MISSIONS & EVENTS
   ====================================================== */
.events{background:#fff;padding:90px 0;border-top:1px solid var(--border)}
.events-layout{display:grid;grid-template-columns:300px 1fr;gap:56px;align-items:start}

.ev-sidebar h2{font-size:30px;font-weight:700;color:var(--navy);margin-bottom:14px;line-height:1.25}
.ev-sidebar > p{font-size:15px;color:#607080;line-height:1.7;margin-bottom:28px}
.ev-check-list{margin:0 0 32px;display:flex;flex-direction:column;gap:14px}
.ev-check-item{display:flex;align-items:center;gap:10px;font-size:14.5px;font-weight:500;color:var(--navy)}
.ev-check-item svg{width:18px;height:18px;color:var(--green);flex-shrink:0}

.ev-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:16px}
.ev-card{border:1px solid var(--border);border-radius:var(--r2);overflow:hidden;transition:all .18s;background:#fff}
.ev-card:hover{box-shadow:var(--shadow2);transform:translateY(-3px)}
.ev-card-img{width:100%;height:148px;object-fit:cover;display:block;background:#c8d8e8}
.ev-card-body{padding:20px}
.ev-card-body h4{font-size:14.5px;font-weight:700;color:var(--navy);line-height:1.4;margin-bottom:8px}
.ev-card-loc{font-size:13px;color:var(--txt3);margin-bottom:10px;display:flex;align-items:center;gap:5px}
.ev-card-date{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--txt3)}
.ev-card-date svg{width:14px;height:14px;flex-shrink:0}
.ev-view-all{text-align:right;margin-top:8px}
.ev-view-all a{font-size:14px;font-weight:700;color:var(--navy);display:inline-flex;align-items:center;gap:6px}
.ev-view-all a:hover{color:var(--accent)}
.ev-view-all svg{width:14px;height:14px}

/* ======================================================
   8. INSIGHTS & POLICY
   ====================================================== */
.insights{
  background:#F2F7F2;padding:90px 0;
  border-top:1px solid #d8e4d8;
}
.insights .sec-heading{margin-bottom:56px}
.insights-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:44px}

.insight-card{
  display:block;text-decoration:none;
  background:#fff;border:1px solid var(--border);
  border-radius:var(--r2);overflow:hidden;
  transition:all .18s;
}
.insight-card:hover{box-shadow:var(--shadow2);transform:translateY(-3px)}
.insight-card-img{width:100%;height:160px;object-fit:cover;background:#c8d8e8;display:block}
.insight-card-body{padding:22px}
.insight-tag{
  display:inline-block;font-size:11px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--accent);margin-bottom:10px;
}
.insight-card-body h3{
  font-size:17px;font-weight:700;color:var(--navy);
  line-height:1.4;margin-bottom:10px;
}
.insight-card-body p{font-size:13.5px;color:#607080;line-height:1.65;margin-bottom:14px}
.insight-date{font-size:12px;color:var(--txt3)}
.insights-cta{text-align:center}

/* ======================================================
   9. SUCCESS STORIES
   ====================================================== */
.stories{background:#fff;padding:90px 0;border-top:1px solid var(--border)}
.stories .sec-heading{margin-bottom:56px}

.testimonial-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.testimonial-card{
  background:#F8FAFC;border:1px solid var(--border);
  border-radius:var(--r2);padding:40px 36px;
  position:relative;
}
.testimonial-card::before{
  content:'\201C';
  position:absolute;top:24px;left:30px;
  font-size:72px;font-family:Georgia,serif;font-weight:700;
  color:var(--navy);opacity:.08;line-height:1;
}
.testimonial-quote{
  font-size:15.5px;color:#455060;
  line-height:1.8;font-style:italic;
  margin-bottom:24px;position:relative;z-index:1;
}
.testimonial-author{display:flex;align-items:center;gap:14px}
.testimonial-avatar{
  width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:17px;font-weight:700;
  color:#fff;flex-shrink:0;
}
.avatar-nz{background:#0B2A4A}
.avatar-in{background:#F36C21}
.author-name{font-size:14px;font-weight:700;color:var(--navy);display:block;margin-bottom:2px}
.author-role{font-size:13px;color:var(--txt3);display:block}

/* ======================================================
   10. JOIN NETWORK CTA
   ====================================================== */
.cta-section{
  background:var(--navy);padding:90px 0;
  border-top:1px solid rgba(255,255,255,.06);
  text-align:center;
}
.cta-section h2{color:#fff;font-size:30px;margin-bottom:14px}
.cta-section > .wrap > p{
  color:rgba(255,255,255,.68);font-size:16px;
  line-height:1.7;max-width:540px;margin:0 auto 36px;
}
.cta-btns{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}

/* ======================================================
   11. FOOTER
   ====================================================== */
.footer{background:#091f37;color:#94a3b8}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
  padding:64px 0 48px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand p{font-size:14px;color:rgba(255,255,255,.5);line-height:1.7;margin-top:14px;max-width:280px}
.footer-brand .logo-icon,.footer-brand .custom-logo{height:60px}

.footer-col h4{
  font-size:12px;font-weight:700;color:#fff;
  text-transform:uppercase;letter-spacing:.1em;
  margin-bottom:18px;
}
.footer-col ul{display:flex;flex-direction:column;gap:11px}
.footer-col ul li a{font-size:13.5px;color:rgba(255,255,255,.52);transition:color .15s}
.footer-col ul li a:hover{color:var(--accent)}

/* wp_nav_menu in footer */
.footer-col .menu{display:flex;flex-direction:column;gap:11px;list-style:none;padding:0;margin:0}
.footer-col .menu li a{font-size:13.5px;color:rgba(255,255,255,.52);transition:color .15s}
.footer-col .menu li a:hover{color:var(--accent)}

.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 0;flex-wrap:wrap;gap:10px;
}
.footer-bottom p{font-size:12.5px;color:rgba(255,255,255,.3)}
.footer-bottom .fb-links{display:flex;gap:20px}
.footer-bottom a{font-size:12.5px;color:rgba(255,255,255,.3);transition:color .15s}
.footer-bottom a:hover{color:var(--accent)}

/* ======================================================
   HAMBURGER
   ====================================================== */
.hamburger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;
  padding:8px;border-radius:4px;flex-shrink:0;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:#1A1A1A;border-radius:2px;transition:all .22s ease;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ======================================================
   PAGE CONTENT (sub-pages)
   ====================================================== */
.page-hero{
  background:var(--navy);padding:64px 0 56px;
  text-align:center;
}
.page-hero h1{color:#fff;font-size:clamp(28px,4vw,46px);font-weight:700;line-height:1.2;margin-bottom:14px}
.page-hero p{color:rgba(255,255,255,.7);font-size:17px;max-width:600px;margin:0 auto}

.page-body{padding:72px 0}
.page-body .entry-content h2{color:var(--navy);margin-bottom:20px;margin-top:40px;font-size:26px}
.page-body .entry-content h2:first-child{margin-top:0}
.page-body .entry-content h3{color:var(--navy);margin-bottom:14px;margin-top:32px;font-size:20px}
.page-body .entry-content p{color:#455060;line-height:1.8;margin-bottom:18px;font-size:15.5px}
.page-body .entry-content ul{margin-bottom:20px;padding-left:0}
.page-body .entry-content ul li{color:#455060;font-size:15px;line-height:1.7;padding-left:22px;position:relative;margin-bottom:8px}
.page-body .entry-content ul li::before{content:'•';position:absolute;left:0;color:var(--accent);font-weight:700}
.page-body .entry-content hr{border:none;border-top:1px solid var(--border);margin:36px 0}
.page-body .entry-content blockquote{border-left:4px solid var(--accent);padding:16px 24px;background:var(--light2);margin:24px 0;border-radius:0 var(--r) var(--r) 0}
.page-body .entry-content .btn{display:inline-flex;text-decoration:none}

/* Membership cards */
.membership-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin:32px 0}
.membership-card{background:#fff;border:1px solid var(--border);border-radius:var(--r2);padding:28px 24px;text-align:center;transition:all .18s}
.membership-card:hover{box-shadow:var(--shadow2);transform:translateY(-3px);border-color:var(--navy)}
.membership-card h3{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:8px}
.membership-card .mc-desc{font-size:13.5px;color:#607080;margin-bottom:14px}
.membership-card .mc-price{font-size:26px;font-weight:700;color:var(--accent)}
.membership-card .mc-period{font-size:13px;color:var(--txt3)}

/* ======================================================
   RESPONSIVE — 1024px
   ====================================================== */
@media(max-width:1024px){
  .primary-nav .nav-item > a,.primary-nav > a{padding:8px 10px;font-size:13px}
  .sector-grid{grid-template-columns:repeat(3,1fr)}
  .vp-col{padding:0 24px}
  .events-layout{grid-template-columns:240px 1fr;gap:32px}
  .ev-cards{grid-template-columns:repeat(2,1fr)}
  .insights-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;row-gap:36px}
}

/* ======================================================
   RESPONSIVE — 768px
   ====================================================== */
@media(max-width:768px){
  .hamburger{display:flex}
  .primary-nav{
    display:none;position:fixed;
    top:84px;left:0;right:0;
    background:#fff;border-bottom:2px solid var(--border);
    flex-direction:column;padding:8px 0 16px;
    box-shadow:0 8px 24px rgba(0,0,0,.12);z-index:8999;
  }
  .primary-nav.open{display:flex}
  .nav-item{width:100%;flex-direction:column;align-items:stretch}
  .primary-nav .nav-item > a,.primary-nav > a{padding:13px 24px;font-size:15px;border-radius:0;border-bottom:1px solid #f2f2f2;width:100%}
  .primary-nav .nav-item > a svg,.primary-nav > a svg{display:none}
  .primary-nav .nav-item > a.nav-cta,.primary-nav > a.nav-cta{display:none}
  .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;border-radius:0;padding:0;background:var(--light2)}
  .dropdown-menu li a{padding:10px 36px;font-size:14px;border-bottom:1px solid #eaecf0}

  .hero{min-height:460px}
  .hero .wrap{padding-top:52px;padding-bottom:48px}
  .hero-btns{flex-direction:column;align-items:center}
  .btn-lg{width:100%;max-width:300px;justify-content:center}
  .partner-strip-wrap{flex-wrap:wrap}
  .partner-strip{flex-wrap:wrap;gap:12px;justify-content:center;padding:12px 16px}

  .be-grid{grid-template-columns:1fr}
  .be-card{padding:32px 28px}

  .vp-grid{grid-template-columns:1fr}
  .vp-col{padding:24px 0;border-right:none!important;border-bottom:1px solid #dde3ea}
  .vp-col:last-child{border-bottom:none}

  .sector-grid{grid-template-columns:repeat(2,1fr)}

  .fp-inner{flex-direction:column;align-items:flex-start;gap:20px}
  .fp-btns{flex-wrap:wrap}

  .events-layout{grid-template-columns:1fr;gap:32px}
  .ev-cards{grid-template-columns:1fr}

  .insights-grid{grid-template-columns:1fr}

  .testimonial-grid{grid-template-columns:1fr}

  .cta-section{padding:60px 0}

  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* ======================================================
   RESPONSIVE — 480px
   ====================================================== */
@media(max-width:480px){
  .wrap{padding:0 16px}
  h2,.sec-title{font-size:24px}
  .hero h1{font-size:28px}

  .be-card{padding:28px 20px}
  .sector-grid{grid-template-columns:1fr;gap:16px}

  .fp-btns{flex-direction:column;width:100%}
  .fp-btns .btn{justify-content:center}

  .partner-strip{gap:8px;padding:10px 12px}
  .ps-divider{display:none}

  .cta-btns{flex-direction:column;align-items:center}
  .cta-btns .btn{width:100%;max-width:300px;justify-content:center}

  .footer-bottom .fb-links{flex-wrap:wrap;gap:12px}

  .membership-cards{grid-template-columns:1fr}
}

/* ======================================================
   CONTACT FORM 7
   ====================================================== */

/* Outer wrapper */
.wpcf7{max-width:700px}
.page-body .wpcf7{margin-top:32px}

/* CF7 wraps each input in a span — make it block so inputs fill grid cell */
.wpcf7-form-control-wrap{display:block;width:100%}

/* Two-column grid for form fields */
.cf7-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px 24px;margin-bottom:4px}
.cf7-field{display:flex;flex-direction:column;gap:5px}
.cf7-field.cf7-full,.cf7-full{grid-column:1/-1}

/* Labels */
.cf7-field label,.wpcf7 label{font-size:14px;font-weight:500;color:var(--navy);display:block;margin-bottom:2px;line-height:1.4}

/* Section dividers (e.g. "Personal Details", "Organisation Details") */
.cf7-section-title{font-size:11px;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.09em;margin:28px 0 16px;padding-bottom:8px;border-bottom:2px solid rgba(243,108,33,.2);display:block}
.cf7-section-title:first-child{margin-top:8px}

/* Input fields */
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 select,
.wpcf7 textarea{width:100%;padding:11px 14px;border:1.5px solid #d4dbe6;border-radius:6px;font-family:inherit;font-size:15px;color:var(--navy);background:#fff;transition:border-color .2s,box-shadow .2s;-webkit-appearance:none;appearance:none;box-sizing:border-box;line-height:1.5}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus{outline:none;border-color:var(--navy);box-shadow:0 0 0 3px rgba(11,42,74,.1)}

/* Chevron for select */
.wpcf7 select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2A4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:16px;padding-right:36px;cursor:pointer}

/* Textarea */
.wpcf7 textarea{resize:vertical;min-height:130px;line-height:1.55}

/* Validation states */
.wpcf7 input.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid{border-color:#e53e3e!important;box-shadow:0 0 0 3px rgba(229,62,62,.1)!important}
.wpcf7-not-valid-tip{color:#e53e3e;font-size:12px;margin-top:3px;display:block!important;line-height:1.4}

/* Form-level response banner */
.wpcf7-response-output{margin:20px 0 0!important;padding:14px 18px!important;border-radius:6px!important;font-size:14px!important;border:none!important;line-height:1.5}
.wpcf7-mail-sent-ok{background:#edf7ee!important;color:#2E7D32!important;border-left:4px solid var(--green)!important}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-acceptance-missing{background:#fff3f3!important;color:#c53030!important;border-left:4px solid #e53e3e!important}

/* Submit button */
.wpcf7-submit{display:inline-flex!important;align-items:center;justify-content:center;gap:8px;background:var(--accent)!important;color:#fff!important;border:none!important;border-radius:6px!important;padding:13px 32px!important;font-family:inherit!important;font-size:15px!important;font-weight:600!important;cursor:pointer!important;transition:background .2s,transform .1s;margin-top:12px!important;min-width:180px;letter-spacing:-.01em}
.wpcf7-submit:hover{background:#d45f18!important}
.wpcf7-submit:active{transform:translateY(1px)}
.wpcf7-spinner{vertical-align:middle;margin-left:8px}

/* Acceptance / privacy checkbox */
.wpcf7 .wpcf7-acceptance{margin-top:12px}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item{margin:0}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#555;cursor:pointer;font-weight:400;line-height:1.55}
.wpcf7 .wpcf7-acceptance input[type=checkbox]{width:18px;height:18px;flex-shrink:0;margin-top:2px;accent-color:var(--navy);cursor:pointer}

/* Required asterisk */
.wpcf7 abbr[title]{color:var(--accent);text-decoration:none;margin-left:1px}

/* Responsive — single column below 640px */
@media(max-width:640px){
  .cf7-grid{grid-template-columns:1fr}
  .cf7-field.cf7-full{grid-column:auto}
  .wpcf7-submit{width:100%!important}
}

/* ======================================================
   EVENT DETAIL PAGE
   ====================================================== */

/* ev-card as a link — reset anchor styles */
a.ev-card{display:block;color:inherit;text-decoration:none;cursor:pointer}
a.ev-card:hover{box-shadow:0 8px 28px rgba(11,42,74,.18);transform:translateY(-3px)}

/* Hero */
.event-hero{
  background-color:var(--navy);
  padding:80px 0 60px;
  color:#fff;
}
.event-back-link{
  display:inline-block;
  color:rgba(255,255,255,.75);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  margin-bottom:18px;
  letter-spacing:.01em;
  transition:color .2s;
}
.event-back-link:hover{color:#fff}
.event-hero h1{
  font-size:clamp(26px,4vw,42px);
  font-weight:700;
  line-height:1.2;
  margin:0;
  max-width:780px;
}

/* Meta bar */
.event-meta-bar{background:#f5f7fa;border-bottom:1px solid #e2e8f0;padding:16px 0}
.event-meta-inner{display:flex;flex-wrap:wrap;gap:20px 36px;align-items:center}
.event-meta-item{
  display:flex;align-items:center;gap:8px;
  font-size:15px;color:var(--navy);font-weight:500;
}
.event-meta-item svg{width:18px;height:18px;flex-shrink:0;opacity:.7}

/* Body */
.event-body{padding:60px 0 80px}
.event-content{max-width:820px;margin:0 auto;font-size:16px;line-height:1.75;color:#1A1A1A}
.event-content h2{font-size:22px;font-weight:700;color:var(--navy);margin:36px 0 12px}
.event-content h3{font-size:18px;font-weight:600;color:var(--navy);margin:28px 0 10px}
.event-content p{margin:0 0 18px;color:#1A1A1A}
.event-content ul{list-style:disc;padding-left:24px;margin:0 0 18px}
.event-content ol{list-style:decimal;padding-left:24px;margin:0 0 18px}
.event-content li{margin-bottom:6px;color:#1A1A1A}
.event-content li::marker{color:#1A1A1A}
.event-featured-img{width:100%;max-height:480px;object-fit:cover;border-radius:8px;margin-bottom:32px;display:block}
.event-content img{max-width:100%;border-radius:8px;margin:24px 0}
.event-content a{color:var(--accent);text-decoration:underline}
.event-content a:hover{color:var(--navy)}
.event-content blockquote{
  border-left:4px solid var(--accent);
  padding:14px 20px;
  margin:28px 0;
  background:#fdf5ef;
  border-radius:0 6px 6px 0;
  font-style:italic;
  color:#555;
}

.event-footer-nav{max-width:820px;margin:40px auto 0;padding-top:32px;border-top:1px solid #e2e8f0}

@media(max-width:640px){
  .event-hero{padding:52px 0 40px}
  .event-body{padding:40px 0 60px}
  .event-meta-inner{gap:14px 24px}
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT & MEMBERSHIP PAGE STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* Page hero variants */
.page-hero--short{padding:56px 0 48px}
.page-hero-label{font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);margin-bottom:10px}
.page-hero-sub{font-size:16px;color:rgba(255,255,255,.75);max-width:560px;margin:12px auto 0;line-height:1.6}

/* ── Contact info strip ───────────────────────────────────────────── */
.contact-strip{background:#fff;border-bottom:1px solid var(--border);padding:28px 0}
.contact-strip-inner{display:flex;gap:0;justify-content:space-between;align-items:center}
.cstrip-item{display:flex;align-items:center;gap:14px;padding:0 32px;flex:1}
.cstrip-item+.cstrip-item{border-left:1px solid var(--border)}
.cstrip-item svg{width:22px;height:22px;flex-shrink:0;color:var(--accent)}
.cstrip-label{display:block;font-size:11.5px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--txt3);margin-bottom:3px}
.cstrip-item a,.cstrip-item span{font-size:14px;color:var(--navy);font-weight:500;text-decoration:none}
.cstrip-item a:hover{color:var(--accent)}

/* ── Contact body layout ──────────────────────────────────────────── */
.contact-body{background:#F5F7FA;padding:60px 0 80px}
.contact-layout{display:grid;grid-template-columns:1fr 320px;gap:32px;align-items:start}

/* ── Form card ─────────────────────────────────────────────────────── */
.contact-form-card,.memb-form-card{
  background:#fff;border-radius:16px;
  border:1px solid var(--border);
  box-shadow:0 4px 24px rgba(11,42,74,.07);
  padding:40px 44px;
}
.cfc-header{margin-bottom:28px;padding-bottom:24px;border-bottom:1px solid #f0f3f7}
.cfc-header h2{font-size:22px;font-weight:700;color:var(--navy);margin-bottom:6px}
.cfc-header p{font-size:14px;color:var(--txt2);margin:0}

/* ── Sidebar cards ────────────────────────────────────────────────── */
.contact-sidebar{display:flex;flex-direction:column;gap:16px}
.csidebar-card{background:#fff;border-radius:14px;border:1px solid var(--border);padding:28px 24px}
.csidebar-card h3{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:16px}
.csidebar-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:18px}
.csidebar-list li{display:flex;gap:14px;align-items:flex-start}
.cs-num{width:28px;height:28px;border-radius:50%;background:var(--light2);color:var(--navy);font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.csidebar-list strong{display:block;font-size:13.5px;font-weight:600;color:var(--navy);margin-bottom:2px}
.csidebar-list p{font-size:13px;color:var(--txt2);margin:0;line-height:1.5}
.csidebar-card--dark{background:var(--navy)}
.csidebar-card--dark h3{color:#fff}
.csidebar-card--dark p{color:rgba(255,255,255,.7);font-size:14px;line-height:1.6}

/* ── Form elements — shared ───────────────────────────────────────── */
.form-row{margin-bottom:20px}
.form-row--2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group label{font-size:13px;font-weight:600;color:#374151;letter-spacing:.01em}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:11px 14px;
  font-size:14px;font-family:inherit;color:#1a2535;
  background:#fff;
  border:1.5px solid #d1d9e0;
  border-radius:8px;
  transition:border-color .15s,box-shadow .15s;
  -webkit-appearance:none;appearance:none;
  outline:none;
  line-height:1.5;
}
.form-group input::placeholder,
.form-group textarea::placeholder{color:#a0aec0}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(11,42,74,.08);
}
.form-group textarea{resize:vertical;min-height:110px}
.form-group.field-invalid input,
.form-group.field-invalid select,
.form-group.field-invalid textarea,
.form-group input.field-invalid,
.form-group select.field-invalid,
.form-group textarea.field-invalid{border-color:#e53e3e;box-shadow:0 0 0 3px rgba(229,62,62,.08)}

/* Select wrapper with custom chevron */
.select-wrap{position:relative}
.select-wrap select{padding-right:36px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;cursor:pointer}

/* Req asterisk */
.req{color:var(--accent);font-weight:700}

/* Form sections (membership) */
.form-section{padding:28px 0;border-bottom:1px solid #f0f3f7}
.form-section--last{padding-bottom:0;border-bottom:none}
.form-section-title{display:flex;align-items:center;gap:12px;margin-bottom:22px}
.form-section-title h3{font-size:15px;font-weight:700;color:var(--navy);margin:0}
.form-step{width:26px;height:26px;border-radius:50%;background:var(--navy);color:#fff;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}

/* Checkbox */
.form-checkbox{display:flex;align-items:flex-start;gap:12px;cursor:pointer;margin-bottom:24px}
.form-checkbox input[type=checkbox]{margin-top:2px;width:17px;height:17px;flex-shrink:0;accent-color:var(--accent);cursor:pointer}
.form-checkbox span{font-size:13.5px;color:var(--txt2);line-height:1.55}
.form-checkbox a{color:var(--accent);text-decoration:underline}
.form-checkbox input.field-invalid{outline:2px solid #e53e3e;outline-offset:2px}

/* Form footer */
.form-footer{display:flex;align-items:center;flex-wrap:wrap;gap:16px;margin-top:8px}
.form-note{font-size:12px;color:var(--txt3);margin:0}
.form-note a{color:var(--accent)}

/* Submit button */
.btn-submit{min-width:180px;position:relative;overflow:hidden}
.btn-submit[disabled]{opacity:.65;cursor:not-allowed}
.btn-spinner{display:inline-block;width:14px;height:14px;border:2px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;animation:spin .7s linear infinite;vertical-align:middle;margin-right:6px}
@keyframes spin{to{transform:rotate(360deg)}}

/* AJAX response message */
.form-msg{border-radius:10px;padding:0;font-size:14px;font-weight:500;line-height:1.5;margin-bottom:0;transition:all .2s;overflow:hidden;max-height:0}
.form-msg:not(:empty){max-height:200px;padding:16px 20px;margin-bottom:24px}
.form-msg--success{background:#ecfdf5;border:1px solid #6ee7b7;color:#065f46}
.form-msg--error{background:#fff5f5;border:1px solid #feb2b2;color:#c53030}

/* ── Membership form section ──────────────────────────────────────── */
.memb-form-section{background:#F5F7FA;padding:70px 0 90px}
.memb-form-header{text-align:center;max-width:600px;margin:0 auto 40px}
.memb-form-header h2{font-size:30px;font-weight:700;color:var(--navy);margin-bottom:12px}
.memb-form-header p{font-size:15px;color:var(--txt2);line-height:1.65}
.memb-form-card{max-width:780px;margin:0 auto}

/* Membership page content area */
.membership-content{max-width:900px;margin:0 auto}

/* ── Responsive ───────────────────────────────────────────────────── */
@media(max-width:1024px){
  .contact-layout{grid-template-columns:1fr 280px;gap:24px}
  .contact-form-card,.memb-form-card{padding:32px 32px}
}
@media(max-width:768px){
  .contact-strip-inner{flex-wrap:wrap;gap:0}
  .cstrip-item{flex:1 1 calc(50% - 1px);padding:16px 20px}
  .cstrip-item:nth-child(3){border-left:none}
  .contact-layout{grid-template-columns:1fr}
  .contact-sidebar{order:-1;flex-direction:row;gap:16px}
  .csidebar-card{flex:1}
  .form-row--2{grid-template-columns:1fr}
}
@media(max-width:640px){
  .contact-form-card,.memb-form-card{padding:24px 20px}
  .cstrip-item{flex:1 1 100%;border-left:none!important;border-top:1px solid var(--border)}
  .cstrip-item:first-child{border-top:none}
  .contact-sidebar{flex-direction:column}
  .form-footer{flex-direction:column;align-items:stretch}
  .btn-submit{width:100%;justify-content:center}
}


/* ======================================================
   LEADERSHIP PAGE
   ====================================================== */

/* ── Stat band ── */
.leader-stat-band{
  background:var(--navy);
  padding:28px 0;
  border-top:3px solid var(--accent);
}
.leader-stat-inner{
  display:flex;align-items:center;justify-content:center;
  gap:20px;flex-wrap:wrap;text-align:center;
}
.leader-stat-number{
  font-size:clamp(42px,6vw,64px);font-weight:800;color:#fff;
  line-height:1;letter-spacing:-.02em;
}
.leader-stat-number sup{font-size:.45em;vertical-align:super;color:var(--accent)}
.leader-stat-label{
  font-size:clamp(14px,2vw,18px);color:rgba(255,255,255,.8);
  font-weight:500;max-width:420px;line-height:1.45;
}

/* ── Section shells ── */
.leader-section{padding:80px 0}
.leader-section--alt{background:var(--light2)}

/* ── Board profiles (with photos) ── */
.board-profiles{
  display:flex;flex-direction:column;gap:40px;
  max-width:860px;margin:0 auto;
}
.board-profile{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:40px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:box-shadow .2s,transform .2s;
}
.board-profile:hover{box-shadow:var(--shadow2);transform:translateY(-3px)}

.board-profile-photo{
  flex-shrink:0;
  background:var(--light2);
  overflow:hidden;
  min-height:320px;
}
.board-profile-photo img{
  width:100%;height:100%;
  object-fit:cover;object-position:center 20%;
  display:block;
}

.board-profile-body{
  padding:36px 36px 36px 0;
  display:flex;flex-direction:column;
  justify-content:center;
}
.board-profile-body h3{
  font-size:24px;font-weight:700;color:var(--navy);
  margin-bottom:4px;
}
.profile-role{
  font-size:14px;font-weight:600;color:var(--accent);
  margin-bottom:14px;line-height:1.4;
}
.profile-sector-tag{
  display:inline-block;
  background:var(--light);border:1px solid #c9d8ea;
  color:var(--navy);font-size:12px;font-weight:600;
  padding:5px 12px;border-radius:20px;
  margin-bottom:18px;letter-spacing:.02em;
}
.profile-bio{
  font-size:15px;color:#455060;line-height:1.8;margin:0;
}

/* ── Director grid (no photo) ── */
.director-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.director-card{
  background:#fff;
  border:1px solid var(--border);
  border-left:4px solid var(--accent);
  border-radius:var(--r2);
  padding:28px 28px 24px;
  transition:box-shadow .18s,transform .18s;
}
.director-card:hover{box-shadow:var(--shadow2);transform:translateY(-2px)}

.director-card-top{margin-bottom:14px}
.director-card-top h4{
  font-size:17px;font-weight:700;color:var(--navy);
  margin-bottom:6px;
}
.director-sector{
  display:inline-block;
  background:rgba(243,108,33,.08);
  color:var(--accent);
  font-size:11.5px;font-weight:700;
  padding:3px 10px;border-radius:14px;
  letter-spacing:.04em;text-transform:uppercase;
}
.director-card > p{
  font-size:14px;color:#516070;line-height:1.75;margin:0;
}

/* ── Responsive ── */
@media(max-width:860px){
  .board-profile{
    grid-template-columns:1fr;
  }
  .board-profile-photo{
    min-height:unset;max-height:unset;
  }
  .board-profile-body{
    padding:28px;
  }
}
@media(max-width:640px){
  .leader-section{padding:56px 0}
  .director-grid{grid-template-columns:1fr}
  .leader-stat-inner{flex-direction:column;gap:8px}
}
