/* ================================================================
   KADIJATU GRACE KAMARA — Main Stylesheet
   Design System: Navy · Gold · Green · Ivory · Charcoal
================================================================ */

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

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --navy: #4d4d4d;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --brown: #ad3d00;
  --green: #2d6a4f;
  --ivory: #f8f5ef;
  --charcoal: #2c2c2c;
  --slate: #6b7280;
  --white: #ffffff;
  --border: #e5e0d6;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
  --radius: 6px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold);
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.1rem;
}
p:last-child {
  margin-bottom: 0;
}

/* ── Gold Rule Motif ────────────────────────────────────────────── */
.gold-rule {
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform 0.15s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform 0.15s;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background var(--transition),
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-navy:hover {
  background: #ad3d00;
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Badges ─────────────────────────────────────────────────────── */
.badge-green {
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  display: inline-block;
}
.badge-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  display: inline-block;
}

/* ── Section Utilities ──────────────────────────────────────────── */
.section-ivory {
  background: var(--ivory);
}
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-white {
  background: var(--white);
}
.section-pad {
  padding: 5rem 0;
}
.section-pad-sm {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--slate);
}

.text-gold {
  color: var(--gold) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-green {
  color: var(--green) !important;
}
.text-slate {
  color: var(--slate) !important;
}
.text-ivory {
  color: var(--ivory) !important;
}
.text-white {
  color: var(--white) !important;
}

/* ── Inner Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 7rem 0 3.5rem; /* 7rem accounts for fixed 70px navbar + breathing room */
  position: relative;
  overflow: hidden;
}
.pt-navbar {
  padding-top: 7rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
}
.page-hero .eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
}

.breadcrumb-nav {
  margin-top: 1rem;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.breadcrumb-nav a:hover {
  color: var(--gold);
}
.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.4rem;
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}
#navbar.transparent {
  background: transparent;
}
#navbar.scrolled {
  background: var(--navy);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--gold);
}

.navbar-brand img {
  height: 44px;
  width: auto;
}
.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.navbar-brand .brand-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem !important;
  border-radius: var(--radius);
  position: relative;
  transition:
    background var(--transition),
    color var(--transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link.active {
  background: rgba(201, 168, 76, 0.14);
  font-weight: 700;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-cta.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  color: var(--navy);
}

.navbar-toggler {
  border: none;
  padding: 0.4rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HOMEPAGE HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 40px,
    rgba(201, 168, 76, 0.025) 40px,
    rgba(201, 168, 76, 0.025) 41px
  );
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-wrap img {
  border-radius: 4px;
  box-shadow: -8px 8px 0 var(--gold);
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.hero-image-placeholder {
  background: rgba(201, 168, 76, 0.15);
  border: 2px dashed var(--gold);
  border-radius: 4px;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}

/* ── Stats Strip ────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 0;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 0.3rem;
}

/* ── About Snapshot ─────────────────────────────────────────────── */
.about-snapshot {
  padding: 5rem 0;
  background: var(--ivory);
}
.about-snapshot .lead-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 4px;
  width: 100%;
  height: 580px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
}

/* ── Vision & Mission ───────────────────────────────────────────── */
.vision-mission {
  padding: 5rem 0;
}
.vm-card {
  padding: 2.5rem;
  height: 100%;
  border-radius: var(--radius);
  position: relative;
}
.vm-card.vision {
  background: var(--navy);
  color: var(--white);
}
.vm-card.mission {
  background: var(--ivory);
  border: 1px solid var(--border);
}
.vm-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.vm-card.vision h3 {
  color: var(--gold);
}
.vm-card.mission h3 {
  color: var(--navy);
}
.vm-card p {
  line-height: 1.9;
  font-size: 1.05rem;
}
.vm-card.vision p {
  color: rgba(255, 255, 255, 0.85);
}
.vm-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* ── Areas of Impact ────────────────────────────────────────────── */
.impact-grid {
  padding: 5rem 0;
  background: var(--white);
}
.impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}
.impact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.impact-icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 106, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--green);
}
.impact-card h4 {
  font-size: 1.05rem;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.impact-card p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.7;
}

/* ── Book Cards ─────────────────────────────────────────────────── */
.books-section {
  padding: 5rem 0;
  background: var(--ivory);
}
.book-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  border: 1px solid var(--border);
}
.book-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.book-card-cover {
  width: 140px;
  min-height: 200px;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-cover-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  font-size: 0.75rem;
}
.book-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.book-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.book-card-body p {
  font-size: 0.88rem;
  color: var(--slate);
  flex: 1;
  margin-bottom: 1rem;
}
.book-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.price-current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.price-original {
  font-size: 0.9rem;
  color: var(--slate);
  text-decoration: line-through;
}

/* ── Blog Cards ─────────────────────────────────────────────────── */
.blog-section {
  padding: 5rem 0;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-card-meta .date {
  font-size: 0.78rem;
  color: var(--slate);
}
.blog-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--slate);
  flex: 1;
  margin-bottom: 1.25rem;
}
.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}
.read-more:hover {
  color: var(--navy);
}

/* ── Speeches Strip ─────────────────────────────────────────────── */
.speeches-section {
  padding: 5rem 0;
  background: var(--ivory);
}
.speech-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.speech-card:hover {
  box-shadow: var(--shadow-md);
}
.speech-card h4 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.speech-meta {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.speech-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Quote / Recognition Banner ─────────────────────────────────── */
.quote-banner {
  padding: 5rem 0;
  background: var(--navy);
}
.quote-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
  padding: 0 1rem;
}
.quote-banner cite {
  display: block;
  text-align: center;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--brown);
  padding: 4rem 0;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}
footer h5 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 0.5rem;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
footer ul li a:hover {
  color: var(--gold);
}
footer p.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-bio {
  padding: 5rem 0;
}
.about-bio .content-wrap {
  max-width: 700px;
}
.about-bio .content-wrap p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.values-grid {
  padding: 5rem 0;
  background: var(--ivory);
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.value-card h5 {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
}

.intl-align {
  padding: 5rem 0;
}
.align-badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.35rem;
}

/* Gallery lightbox */
.gallery-section {
  padding: 5rem 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ============================================================
   AUTHOR PAGE
============================================================ */
.author-bio {
  padding: 5rem 0;
}
.book-featured {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}
.book-featured .cover-img {
  max-width: 260px;
  border-radius: 4px;
  box-shadow: 6px 6px 0 var(--gold);
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 2rem;
}
.timeline-dot {
  position: absolute;
  left: 11px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h5 {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.timeline-item .year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  display: block;
}
.timeline-item p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
}

/* ============================================================
   EBOOK SHOP
============================================================ */
.ebook-hero {
  padding: 5rem 0;
  background: var(--ivory);
  border-bottom: 3px solid var(--gold);
}
.books-grid {
  padding: 5rem 0;
}
.shop-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.shop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.shop-card-cover {
  height: 260px;
  background: linear-gradient(135deg, var(--navy), #2d5070);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-card-cover-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 1.5rem;
}
.shop-card-cover-placeholder .book-title-preview {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  font-weight: 700;
}
.shop-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.shop-card-body p {
  font-size: 0.88rem;
  color: var(--slate);
  flex: 1;
  margin-bottom: 1.25rem;
}
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* ============================================================
   BLOG
============================================================ */
.blog-listing {
  padding: 4rem 0;
}
.featured-post {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  margin-bottom: 3rem;
  min-height: 300px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.featured-post:hover {
  box-shadow: var(--shadow-md);
}
.featured-post-img {
  flex: 0 0 45%;
  background: var(--navy);
  overflow: hidden;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post-body h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.featured-post-body p {
  color: var(--slate);
  margin-bottom: 1.5rem;
}

/* ── Single Blog Post ───────────────────────────────────────────── */
.post-header-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.post-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.post-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}
.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.post-body {
  font-size: 1.07rem;
  line-height: 1.9;
  color: var(--charcoal);
}
.post-body p {
  margin-bottom: 1.4rem;
}
.post-body h2,
.post-body h3,
.post-body h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--ivory);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}
.post-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.75;
  margin-right: 0.1em;
  margin-top: 0.1em;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    opacity var(--transition),
    transform 0.15s;
  color: var(--white);
}
.share-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: var(--white);
}
.share-btn.facebook {
  background: #1877f2;
}
.share-btn.linkedin {
  background: #0a66c2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.whatsapp {
  background: #25d366;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section {
  padding: 5rem 0;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.contact-detail-text span,
.contact-detail-text a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}
.contact-detail-text a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.field-error {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.25rem;
  display: none;
}
.field-error.visible {
  display: block;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

#contact-map {
  height: 350px;
  border-radius: var(--radius);
  margin-top: 2rem;
  z-index: 1;
}

/* ── Form alerts ────────────────────────────────────────────────── */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-alert.show {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.form-alert.success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}
.form-alert.error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

/* ============================================================
   BOOK DETAIL PAGE
============================================================ */
.book-detail {
  padding: 5rem 0;
}
.book-detail-cover {
  text-align: center;
}
.book-detail-cover img {
  max-width: 300px;
  border-radius: 4px;
  box-shadow: 8px 8px 0 var(--gold);
  margin: 0 auto;
}
.book-detail-cover-placeholder {
  max-width: 300px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 4px;
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 2rem;
  text-align: center;
  box-shadow: 8px 8px 0 var(--gold);
}
.book-detail-cover-placeholder h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  margin-top: 1rem;
}
.book-detail-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.book-detail-info .author {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.book-detail-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin: 1.75rem 0;
}

/* ============================================================
   THANK YOU & 404
============================================================ */
.thank-you,
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  background: var(--ivory);
}
.thank-you-icon,
.error-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.error-404 .error-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  /* ── Full-screen mobile menu ─────────────────────────────── */
  #navMenu,
  #navMenu.collapsing {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100%;
    z-index: 998;
    background: var(--navy);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100% !important;
    overflow: hidden !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease !important;
  }
  #navMenu.show {
    opacity: 1;
    pointer-events: all;
  }
  #navMenu .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }
  #navMenu .nav-link {
    font-size: 1.4rem !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    padding: 0.75rem 2rem !important;
    text-align: center;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  #navMenu .nav-link.active {
    background: rgba(201, 168, 76, 0.16);
    color: var(--gold) !important;
  }
  #navMenu .nav-link::after {
    left: 50%;
    right: 50%;
    transform: scaleX(0);
    transform-origin: center;
  }
  #navMenu .nav-link:hover::after,
  #navMenu .nav-link.active::after {
    left: 2rem;
    right: 2rem;
    transform: scaleX(1);
  }
  #navMenu .btn-gold {
    margin-top: 1.5rem;
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
  }
  /* Toggler sits above the overlay */
  .navbar-toggler {
    position: relative;
    z-index: 999;
  }

  .hero {
    min-height: 100vh;
    padding: 7rem 0 4rem;
    display: flex;
    align-items: center;
  }
  .hero-eyebrow {
    min-width: 0;
    flex-wrap: wrap;
  }
  .hero h1 {
    overflow-wrap: anywhere;
  }
  .hero-image-wrap {
    margin-top: 2rem;
  }
  .featured-post {
    flex-direction: column;
  }
  .featured-post-img {
    flex: 0 0 250px;
  }
  .book-card {
    flex-direction: column;
  }
  .book-card-cover {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 3.5rem 0;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .vm-card {
    margin-bottom: 1.5rem;
  }
  .timeline::before {
    left: 12px;
  }
  .timeline-item {
    padding-left: 40px;
  }
  .timeline-dot {
    left: 4px;
  }
  .contact-form-wrap,
  .contact-info-card {
    margin-bottom: 1.5rem;
  }
  .book-featured {
    padding: 1.5rem;
  }
}
