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

:root {
  --navy: #0d1b3e;
  --navy2: #162145;
  --accent: #1e3a6e;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --gold-light: rgba(201,168,76,0.12);
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e2e8f0;
  --bg: #f8f9fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); line-height:1.6; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; }

/* ── HEADER ── */
.site-header {
  position: sticky; top:0; z-index:1000;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.header-logo { font-family:'Playfair Display',serif; font-size:22px; font-weight:900; color:white; }
.header-logo span { color:var(--gold2); }
.header-logo small { font-family:'Inter',sans-serif; font-size:10px; color:rgba(255,255,255,0.45); font-weight:400; display:block; letter-spacing:2px; margin-top:-4px; }

.nav-menu { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-menu a {
  color:rgba(255,255,255,0.7); font-size:13px; font-weight:500;
  padding:8px 13px; border-radius:8px;
  transition:all 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color:white; background:rgba(255,255,255,0.1); }
.nav-menu a.active { color:var(--gold2); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; flex-shrink:0; }
.hamburger span { width:22px; height:2px; background:white; border-radius:2px; transition:all 0.3s; display:block; }

.mobile-menu {
  display:none; flex-direction:column;
  background:var(--navy); padding:12px 16px 16px;
  border-top:1px solid rgba(255,255,255,0.08);
  position:sticky; top:64px; z-index:999;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  color:rgba(255,255,255,0.8); padding:12px 16px;
  border-radius:8px; font-size:15px; font-weight:500;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:last-child { border-bottom:none; }
.mobile-menu a:hover, .mobile-menu a.active { background:rgba(255,255,255,0.08); color:var(--gold2); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  color:white; padding:80px 40px 70px; text-align:center; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none;
}
.hero-badge {
  display:inline-block; background:rgba(201,168,76,0.2); border:1px solid rgba(201,168,76,0.4);
  color:var(--gold2); font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  padding:6px 18px; border-radius:100px; margin-bottom:20px;
}
.hero-title { font-family:'Playfair Display',serif; font-size:48px; font-weight:900; margin-bottom:16px; }
.hero-title span { color:var(--gold2); }
.hero-sub { font-size:16px; color:rgba(255,255,255,0.75); max-width:600px; margin:0 auto 32px; }
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:10px; font-size:14px; font-weight:700;
  cursor:pointer; border:none; transition:all 0.2s;
}
.btn-gold { background:linear-gradient(135deg,var(--gold),#a87c2e); color:white; box-shadow:0 4px 20px rgba(201,168,76,0.35); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(201,168,76,0.45); }
.btn-outline { background:rgba(255,255,255,0.1); color:white; border:1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background:rgba(255,255,255,0.18); }
.btn-navy { background:var(--navy); color:white; }
.btn-navy:hover { background:var(--accent); transform:translateY(-1px); }

/* ── LAYOUT ── */
.container { max-width:1080px; margin:0 auto; padding:0 24px; }
.section { padding:72px 0; }
.section-alt { background:white; }
.section-title { text-align:center; margin-bottom:48px; }
.section-title h2 { font-family:'Playfair Display',serif; font-size:34px; color:var(--navy); margin-bottom:12px; }
.section-title p { color:var(--muted); font-size:16px; max-width:580px; margin:0 auto; }
.section-title .label { display:inline-block; font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }

/* ── CARDS ── */
.card-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.card-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.card-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

.card {
  background:white; border-radius:var(--radius); padding:24px;
  border:1px solid var(--border); box-shadow:var(--shadow);
  transition:transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.card-icon { font-size:28px; margin-bottom:14px; }
.card-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.card-text { font-size:13.5px; color:var(--muted); line-height:1.7; }
.card-accent { border-left:4px solid var(--gold); }
.card-dark { background:linear-gradient(135deg,var(--navy),var(--accent)); color:white; }
.card-dark .card-title { color:white; }
.card-dark .card-text { color:rgba(255,255,255,0.75); }

/* ── DATA TABLE ── */
.data-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.data-item { background:var(--bg); border-radius:10px; padding:16px 20px; border:1px solid var(--border); }
.data-item.full { grid-column:1/-1; }
.data-label { font-size:10px; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:6px; font-weight:600; }
.data-value { font-size:15px; font-weight:600; color:var(--navy); }
.data-highlight .data-value { color:var(--gold); font-size:18px; font-weight:800; }

/* ── PILLS ── */
.pill { display:inline-block; background:rgba(13,27,62,0.07); color:var(--navy); border-radius:100px; padding:5px 14px; font-size:12px; font-weight:600; margin:3px; border:1px solid rgba(13,27,62,0.1); }
.pill-gold { background:var(--gold-light); color:#8a6a1e; border-color:rgba(201,168,76,0.3); }
.pill-sm { font-size:11px; padding:4px 10px; }

/* ── EXPERTISE TAGS ── */
.expertise-tag {
  background:linear-gradient(135deg,var(--navy),var(--accent));
  color:white; border-radius:10px; padding:10px 16px;
  font-size:13px; font-weight:600; display:flex; align-items:center; gap:8px;
}
.expertise-tag .dot { width:6px; height:6px; background:var(--gold2); border-radius:50%; flex-shrink:0; }
.tag-list { display:flex; flex-wrap:wrap; gap:10px; }

/* ── PERSON CARD ── */
.person-card {
  background:linear-gradient(135deg,var(--navy),var(--accent));
  border-radius:var(--radius); padding:28px; color:white;
  display:flex; gap:20px; align-items:flex-start;
}
.person-avatar {
  width:64px; height:64px; background:var(--gold); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; font-weight:900; color:var(--navy); flex-shrink:0;
  font-family:'Playfair Display',serif;
}
.person-name { font-size:19px; font-weight:800; margin-bottom:4px; }
.person-role { font-size:11px; color:var(--gold2); font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; }

/* ── DOWNLOAD CARD ── */
.download-card {
  background:white; border-radius:var(--radius); padding:20px 24px;
  border:1px solid var(--border); display:flex; align-items:center; gap:16px;
  transition:all 0.2s; flex-wrap:wrap;
}
.download-card:hover { border-color:var(--gold); box-shadow:var(--shadow); }
.download-icon { font-size:28px; flex-shrink:0; }
.download-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.download-meta { font-size:12px; color:var(--muted); }
.download-btn {
  margin-left:auto; background:var(--navy); color:white; border:none;
  border-radius:8px; padding:8px 16px; font-size:12px; font-weight:700; cursor:pointer;
  white-space:nowrap; transition:all 0.2s;
}
.download-btn:hover { background:var(--accent); }
.badge-soon { background:rgba(201,168,76,0.15); color:#8a6a1e; font-size:10px; font-weight:700; letter-spacing:1px; padding:3px 8px; border-radius:6px; text-transform:uppercase; white-space:nowrap; }

/* ── CTA SECTION ── */
.cta-section {
  background:linear-gradient(135deg,var(--navy),var(--accent));
  color:white; padding:72px 40px; text-align:center; border-radius:20px;
  margin:40px 0;
}
.cta-section h2 { font-family:'Playfair Display',serif; font-size:34px; margin-bottom:14px; }
.cta-section p { font-size:16px; color:rgba(255,255,255,0.75); margin-bottom:32px; max-width:560px; margin-left:auto; margin-right:auto; }

/* ── FORM ── */
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:13px 16px; border-radius:10px; border:1.5px solid var(--border);
  font-size:14px; font-family:'Inter',sans-serif; background:white; color:var(--text);
  transition:border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,0.12);
}
.form-textarea { min-height:140px; resize:vertical; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* ── FOOTER ── */
.site-footer {
  background:var(--navy); color:white; padding:56px 40px 32px;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-logo { font-family:'Playfair Display',serif; font-size:24px; font-weight:900; color:var(--gold2); margin-bottom:10px; }
.footer-desc { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.8; }
.footer-col h4 { font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:16px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.65); transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--gold2); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,0.35); }

/* ── PAGE HERO ── */
.page-hero {
  background:linear-gradient(135deg,var(--navy),var(--accent));
  color:white; padding:56px 40px 48px; position:relative; overflow:hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.page-hero-label { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold2); opacity:0.8; margin-bottom:10px; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:38px; font-weight:900; margin-bottom:12px; }
.page-hero p { font-size:15px; color:rgba(255,255,255,0.75); max-width:560px; }

/* ── STAT STRIP ── */
.stat-strip { display:flex; gap:0; background:white; border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; border:1px solid var(--border); }
.stat-item { flex:1; padding:24px; text-align:center; border-right:1px solid var(--border); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:'Playfair Display',serif; font-size:32px; font-weight:900; color:var(--gold); }
.stat-label { font-size:12px; color:var(--muted); font-weight:600; margin-top:4px; text-transform:uppercase; letter-spacing:1px; }

/* ── UTILS ── */
.text-center { text-align:center; }
.mt-8 { margin-top:8px; } .mt-16 { margin-top:16px; } .mt-24 { margin-top:24px; } .mt-32 { margin-top:32px; }
.mb-16 { margin-bottom:16px; } .mb-24 { margin-bottom:24px; }
.fw-700 { font-weight:700; } .color-gold { color:var(--gold); } .color-muted { color:var(--muted); } .text-sm { font-size:13px; }

/* ── ALERT ── */
.info-box { background:var(--gold-light); border:1px solid rgba(201,168,76,0.3); border-radius:10px; padding:16px 20px; font-size:13.5px; color:#6b4f12; margin-bottom:24px; }

/* ── PIF COPY BOX ── */
.pif-copybox { background:var(--bg); border:1.5px dashed var(--border); border-radius:var(--radius); padding:28px; font-family:monospace; font-size:13px; line-height:1.9; color:var(--text); white-space:pre-wrap; word-break:break-word; }

/* ── TABLET (≤900px) ── */
@media(max-width:900px) {
  .site-header { padding:0 20px; }
  .nav-menu { display:none; }
  .hamburger { display:flex; }
  .card-grid-3 { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .page-hero h1 { font-size:30px; }
  .hero-title { font-size:36px; }
  .hero { padding:60px 24px 50px; }
  .contact-layout { grid-template-columns:1fr !important; }
}

/* ── MOBILE (≤640px) ── */
@media(max-width:640px) {
  .card-grid-2, .card-grid-3 { grid-template-columns:1fr; }
  .data-grid { grid-template-columns:1fr; }
  .data-item.full { grid-column:1; }
  .form-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:20px; }
  .site-footer { padding:40px 20px 24px; }
  .hero { padding:48px 20px 40px; }
  .hero-title { font-size:28px; }
  .hero-sub { font-size:14px; }
  .section { padding:48px 0; }
  .section-title h2 { font-size:26px; }
  .person-card { flex-direction:column; }
  .stat-strip { flex-direction:column; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); padding:16px; }
  .stat-item:last-child { border-bottom:none; }
  .stat-num { font-size:22px; }
  .page-hero { padding:36px 20px; }
  .page-hero h1 { font-size:24px; }
  .cta-section { padding:40px 20px; border-radius:12px; }
  .cta-section h2 { font-size:24px; }
  .download-card { flex-direction:column; align-items:flex-start; gap:10px; }
  .download-btn { margin-left:0; width:100%; text-align:center; }
  .pif-copybox { padding:16px; font-size:11px; }
  .container { padding:0 16px; }
}

@media print {
  .site-header, .site-footer, .hero-btns, .cta-section, .hamburger, .mobile-menu { display:none !important; }
}
