/* ============================================================
   EWEREKO-BONZO BOATENG — SHARED STYLESHEET
   ============================================================ */

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

:root {
  --navy:    #0D1B2A;
  --navy2:   #142032;
  --navy3:   #1C2D40;
  --gold:    #C9A84C;
  --gold-lt: #DFC07A;
  --gold-dim: rgba(201,168,76,0.15);
  --light:   #F4F1EC;
  --cream:   #FAF8F4;
  --white:   #FFFFFF;
  --muted:   #7A8FA6;
  --muted2:  #B0BEC5;
  --border:  rgba(255,255,255,0.08);
  --border-lt: rgba(0,0,0,0.08);
  --red:     #C0392B;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

/* ── LAYOUT ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section-light { background: var(--cream); }
.section-dark  { background: var(--navy); color: var(--light); }
.section-mid   { background: var(--light); }

.section-header { margin-bottom: 56px; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 640px;
}
.section-dark .section-sub { color: var(--muted2); }

/* ── DIVIDER ── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-dim); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(13,27,42,0.25);
}
.btn-outline-navy:hover { border-color: var(--navy); background: rgba(13,27,42,0.04); }

.btn-navy {
  background: var(--navy);
  color: var(--light);
}
.btn-navy:hover { background: var(--navy3); transform: translateY(-1px); }

/* ── CARDS ── */
.card-light {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-light:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.08); transform: translateY(-2px); }

.card-dark {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.badge-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-navy { background: rgba(13,27,42,0.08); color: var(--navy); border: 1px solid rgba(13,27,42,0.12); }
.badge-dot  { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.nav-logo-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,241,236,0.7);
  transition: color 0.2s;
  letter-spacing: 0.3px;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--light); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--light);
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--light);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  color: var(--light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.page-hero p {
  font-size: 18px;
  color: var(--muted2);
  max-width: 580px;
  line-height: 1.8;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════
   BLOG CARD (shared)
   ════════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-3px); }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img-ph {
  font-size: 32px;
  opacity: 0.25;
}
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
}
.blog-card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card-link { gap: 8px; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,27,42,0.99); padding: 24px 20px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { padding: 0 20px; }
  .page-hero { padding: 120px 0 56px; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .btn { padding: 12px 22px; font-size: 13px; }
}
