/* ============================================================
   PILLAR AND PATH CONSULTING — Website Stylesheet v2
   Fonts: Arial (headings) | Calibri (body)
   ============================================================ */

:root {
  --forest:   #1A3D2B;
  --moss:     #2E5E3E;
  --sage:     #4A8C5C;
  --gold:     #C9A84C;
  --gold-lt:  #F0DFA0;
  --light:    #E8EFE9;
  --off-wh:   #F6F9F7;
  --white:    #FFFFFF;
  --text:     #1C1C1C;
  --muted:    #5A6472;
  --border:   #D4DDD8;
  --shadow:   0 2px 20px rgba(26,61,43,0.09);
  --radius:   4px;
  --nav-h:    74px;
  --font-head: Arial, Helvetica, sans-serif;
  --font-body: Calibri, 'Gill Sans MT', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--muted); line-height: 1.8; font-family: var(--font-body); }

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--forest);
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center;
}
.navbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 58px; width: auto;
  background: white; border-radius: 4px;
  padding: 4px 6px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85); padding: 6px 11px; border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  font-weight: 700 !important; margin-left: 6px; padding: 7px 16px !important;
}
.nav-cta:hover { background: #b8963a !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--forest); padding: 16px 24px 28px;
  border-bottom: 2px solid var(--gold); z-index: 999;
}
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.85); padding: 13px 0;
  font-size: 0.95rem; font-family: var(--font-head);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: block; }

/* ── Layout ── */
.page-top { padding-top: var(--nav-h); }
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.inner { max-width: 1240px; margin: 0 auto; }
.inner-sm { max-width: 860px; margin: 0 auto; }
.section-alt { background: var(--off-wh); }
.section-dark { background: var(--forest); }

.sec-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 10px;
}
.sec-eyebrow.lt { color: var(--gold); }
.sec-head { margin-bottom: 48px; }
.sec-head h2 { color: var(--forest); border-left: 3px solid var(--gold); padding-left: 18px; }
.sec-head.lt h2 { color: var(--white); }
.sec-head p { margin-top: 14px; padding-left: 21px; max-width: 600px; }
.sec-head.lt p { color: rgba(255,255,255,0.65); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(135deg, rgba(13,36,25,0.88) 0%, rgba(26,61,43,0.82) 60%, rgba(13,36,25,0.88) 100%),
              url('hero-bg.jpg') center/cover no-repeat;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  width: 100%; position: relative; z-index: 2;
}
.hero-content { max-width: 680px; padding: 88px 0; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.80);
  margin-bottom: 40px; max-width: 560px;
  font-family: var(--font-body); line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--forest);
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.03em;
  padding: 13px 28px; border-radius: var(--radius);
  display: inline-block; transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: #b8963a; transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.45); color: var(--white);
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem;
  padding: 13px 28px; border-radius: var(--radius);
  display: inline-block; transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Who We Are ── */
.wwa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.wwa-text h2 { color: var(--forest); border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 20px; }
.wwa-text p { margin-bottom: 14px; font-size: 1rem; }
.wwa-text p:first-of-type { color: var(--text); }
.wwa-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat-box { background: var(--light); border-radius: var(--radius); padding: 18px 20px; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--forest); line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 4px; font-family: var(--font-body); }
.wwa-panel {
  background: linear-gradient(145deg, var(--forest), #0e2a1a);
  border-radius: var(--radius); padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 380px;
}
.wwa-quote {
  font-family: var(--font-head); font-size: 1.25rem; line-height: 1.6;
  color: rgba(255,255,255,0.9); border-left: 3px solid var(--gold); padding-left: 18px;
}
.wwa-reg { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.reg-pill {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold-lt); background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 2px; padding: 5px 11px;
  font-family: var(--font-head);
}

/* ── Services ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(262px, 1fr)); gap: 20px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid transparent; border-radius: var(--radius);
  padding: 28px; transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-icon { width: 42px; height: 42px; background: var(--light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.svc-card h3 { color: var(--forest); font-size: 1rem; margin-bottom: 8px; }
.svc-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── Clients bar ── */
.clients-bar { background: var(--light); padding: 44px 24px; text-align: center; }
.clients-lbl { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; max-width: 960px; margin: 0 auto; }
.client-tag { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; color: var(--forest); opacity: 0.65; background: var(--white); border: 1px solid var(--border); border-radius: 40px; padding: 6px 14px; transition: opacity 0.2s; }
.client-tag:hover { opacity: 1; }

/* ── Promise ── */
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.promise-card { padding: 28px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); border-radius: var(--radius); border-top: 3px solid var(--gold); }
.promise-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.promise-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ── Page image strips ── */
.page-img-strip {
  height: 280px; background: center/cover no-repeat;
  position: relative; overflow: hidden;
}
.page-img-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,61,43,0.65), rgba(13,36,25,0.4));
}
.page-img-caption {
  position: absolute; bottom: 24px; left: 32px; z-index: 2;
  color: rgba(255,255,255,0.8); font-size: 0.8rem; font-family: var(--font-head);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.img-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.img-split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 340px; object-fit: cover; }

/* ── CTA strip ── */
.cta-strip { background: var(--gold); padding: 64px 24px; text-align: center; }
.cta-strip h2 { color: var(--forest); margin-bottom: 10px; }
.cta-strip p { color: rgba(26,61,43,0.72); margin-bottom: 28px; }
.btn-forest { background: var(--forest); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; padding: 13px 28px; border-radius: var(--radius); display: inline-block; transition: background 0.2s; }
.btn-forest:hover { background: var(--moss); }

/* ── Inner page hero ── */
.pg-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #0e2a1a 100%);
  padding: 72px 24px 60px; position: relative; overflow: hidden;
}
.pg-hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(74,140,92,0.15), transparent 70%); }
.pg-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 14px; font-family: var(--font-head); }
.pg-hero h1 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.6rem); }
.pg-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 600px; margin-top: 14px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.about-text h2 { color: var(--forest); border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 20px; }
.about-text p { margin-bottom: 14px; font-size: 1rem; }
.about-text p:first-of-type { color: var(--text); }
.reg-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 0.88rem; font-family: var(--font-body); }
.reg-table tr td { padding: 9px 12px; border-bottom: 1px solid var(--border); }
.reg-table tr:nth-child(even) td { background: var(--off-wh); }
.reg-table td:first-child { font-weight: 700; color: var(--forest); white-space: nowrap; width: 44%; font-family: var(--font-head); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.val-card { background: var(--light); border-radius: var(--radius); padding: 20px; }
.val-card h4 { color: var(--forest); font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; font-family: var(--font-head); }
.val-card p { font-size: 0.85rem; }

/* ── Leadership ── */
.leader-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: flex-start; }
.leader-avatar { width: 160px; height: 160px; background: linear-gradient(145deg, var(--forest), var(--moss)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.leader-name { font-family: var(--font-head); font-size: 1.7rem; color: var(--forest); font-weight: 700; }
.leader-title { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sage); margin: 6px 0 20px; }
.leader-bio p { font-size: 0.97rem; margin-bottom: 12px; }
.skills-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.skill-tag { font-family: var(--font-head); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; background: var(--light); color: var(--moss); padding: 4px 12px; border-radius: 40px; }

/* Core Team (Hassan, Sana) */
.core-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.core-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.core-card h3 { font-family: var(--font-head); color: var(--forest); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.core-role { font-family: var(--font-head); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.core-card p { font-size: 0.9rem; line-height: 1.65; color: var(--ink); }

/* Associates grid */
.assoc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; margin-top: 28px; }
.assoc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: box-shadow 0.2s, transform 0.2s; }
.assoc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.assoc-card h3 { font-family: var(--font-head); color: var(--forest); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.assoc-role { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.assoc-card p { font-size: 0.86rem; line-height: 1.62; color: var(--ink); }

/* ── Tech Partner highlight ── */
.tech-highlight {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: var(--radius); padding: 40px 44px; margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.tech-highlight h3 { color: var(--gold); margin-bottom: 12px; font-size: 1.15rem; }
.tech-highlight p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 10px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tech-tag { background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-lt); font-size: 0.74rem; font-weight: 700; padding: 4px 12px; border-radius: 40px; font-family: var(--font-head); letter-spacing: 0.04em; }
.tech-visual { text-align: center; }
.tech-visual .big-icon { font-size: 4rem; margin-bottom: 12px; }
.tech-visual p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ── Expertise ── */
.exp-item { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 44px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.exp-item:last-child { border-bottom: none; }
.exp-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--light); line-height: 1.1; padding-top: 6px; text-align: center; }
.exp-body h2 { color: var(--forest); font-size: 1.35rem; border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 12px; }
.exp-body p { font-size: 0.97rem; margin-bottom: 10px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tag { font-family: var(--font-head); font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em; background: var(--light); color: var(--moss); padding: 4px 12px; border-radius: 40px; }

/* ── Methodologies ── */
.meth-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.meth-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--sage); border-radius: var(--radius); padding: 32px; }
.meth-card h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.05rem; }
.meth-card p { font-size: 0.92rem; margin-bottom: 10px; }
.meth-card ul li { font-size: 0.88rem; color: var(--muted); padding: 3px 0 3px 16px; position: relative; }
.meth-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.tools-band { background: var(--forest); padding: 44px 24px; }
.tools-inner { max-width: 1240px; margin: 0 auto; }
.tools-lbl { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.tools-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 8px 16px; border-radius: var(--radius); font-size: 0.85rem; color: rgba(255,255,255,0.85); font-family: var(--font-body); }

/* ── Governance ── */
.gov-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.gov-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--forest); border-radius: var(--radius); padding: 32px; }
.gov-icon { font-size: 1.7rem; margin-bottom: 14px; }
.gov-card h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.05rem; }
.gov-card p { font-size: 0.9rem; }
.fw-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.fw-badge { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 18px; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--forest); box-shadow: var(--shadow); }

/* ── International ── */
.intl-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.intl-intro h2 { color: var(--forest); border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 18px; }
.intl-intro p { font-size: 0.97rem; margin-bottom: 12px; }
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.region-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 28px; }
.region-card h3 { color: var(--forest); margin-bottom: 6px; font-size: 1.05rem; }
.region-cntry { font-family: var(--font-head); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.region-card p { font-size: 0.88rem; }
.donors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.donor-card { background: var(--light); border-radius: var(--radius); padding: 18px; text-align: center; }
.donor-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--forest); }
.donor-type { font-size: 0.72rem; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-head); }

/* ── Team ── */
.uc-section { background: var(--off-wh); border: 1px solid var(--border); border-radius: var(--radius); padding: 64px 40px; text-align: center; margin-top: 40px; }
.uc-icon { font-size: 2.8rem; margin-bottom: 20px; }
.uc-section h3 { color: var(--forest); margin-bottom: 12px; }
.uc-section p { color: var(--muted); max-width: 480px; margin: 0 auto; font-size: 0.94rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: flex-start; }
.contact-info h2 { color: var(--forest); border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 28px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.cinfo-icon { width: 44px; height: 44px; min-width: 44px; background: var(--light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cinfo-lbl { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cinfo-val { font-size: 0.97rem; color: var(--text); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { color: var(--forest); margin-bottom: 28px; }
.form-grp { margin-bottom: 18px; }
.form-grp label { display: block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.form-grp input, .form-grp select, .form-grp textarea { width: 100%; padding: 11px 15px; font-family: var(--font-body); font-size: 0.97rem; color: var(--text); background: var(--off-wh); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.2s; }
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus { outline: none; border-color: var(--sage); background: var(--white); }
.form-grp textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; padding: 13px; background: var(--forest); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em; border: none; border-radius: var(--radius); cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--moss); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── Footer ── */
footer { background: #0D2419; padding: 64px 24px 32px; color: rgba(255,255,255,0.55); }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-img { height: 64px; width: auto; background: white; border-radius: 4px; padding: 4px 8px; margin-bottom: 16px; }
.footer-about p { font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.75; }
.footer-reg { margin-top: 18px; font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.9; font-family: var(--font-body); }
.footer-col-title { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color 0.2s; font-family: var(--font-body); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; font-family: var(--font-body); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .wwa-grid, .about-grid, .intl-intro, .contact-grid, .img-split, .tech-highlight { grid-template-columns: 1fr; }
  .wwa-panel { display: none; }
  .leader-card { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 64px 0 80px; }
  .exp-item { grid-template-columns: 1fr; gap: 4px; }
  .exp-num { font-size: 1.3rem; color: var(--gold); text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 24px; }
  .page-img-strip { height: 200px; }
}
