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

/* ─── CSS Variables ─── */
:root {
  --black: #0D0D0D;
  --off-black: #1A1A1A;
  --green: #2B6040;
  --green-light: #3A7D55;
  --green-pale: #EBF3EE;
  --gold: #B8963E;
  --gold-light: #D4AF5A;
  --gold-pale: #F5EDD6;
  --white: #FAFAF8;
  --grey-light: #F2F0EC;
  --grey-mid: #C8C4BC;
  --grey-dark: #6B6760;
  --text: #1A1A1A;
  --text-muted: #6B6760;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Montserrat', sans-serif;

  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --max-width: 1280px;
  --section-pad: clamp(60px, 8vw, 120px);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Kente Pattern Utility ─── */
.kente-pattern {
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent, transparent 8px,
      rgba(184,150,62,0.12) 8px, rgba(184,150,62,0.12) 9px
    ),
    repeating-linear-gradient(
      0deg,
      transparent, transparent 8px,
      rgba(43,96,64,0.08) 8px, rgba(43,96,64,0.08) 9px
    );
}

.kente-border-top {
  border-top: 4px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--green) 0, var(--green) 12px,
    var(--gold) 12px, var(--gold) 24px,
    var(--black) 24px, var(--black) 36px
  ) 1;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-xl {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
}

.display-md {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg { font-size: 1.15rem; line-height: 1.8; }
.body-sm { font-size: 0.9rem; }

/* ─── Layout Utilities ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section { padding: var(--section-pad) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-40 { gap: 40px; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-light); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px);
  transition: var(--transition);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  letter-spacing: 0.1em;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(184,150,62,0.06);
  padding-left: 28px;
}

.nav-dropdown-menu a::after { display: none; }

.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: var(--transition);
}

.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(43,96,64,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184,150,62,0.12) 0%, transparent 50%),
    var(--black);
}

.hero-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 15vw, 180px) clamp(20px, 5vw, 80px) clamp(80px, 10vw, 120px);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 32px;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.card-icon.gold-bg { background: var(--gold-pale); }

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ─── Section Headers ─── */
.section-header {
  margin-bottom: 64px;
}

.section-header.centered { text-align: center; }

.section-header .eyebrow { margin-bottom: 16px; display: block; }

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1.05rem;
}

.section-header.centered p { margin: 0 auto; }

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  margin: 24px 0;
}

.divider.centered { margin: 24px auto; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--off-black);
  padding: 48px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
}

/* ─── Quote / Callout ─── */
.callout {
  background: var(--green);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.callout::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}

.callout-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
}

blockquote cite {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-ui);
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 24px;
}

/* ─── Map / Region ─── */
.region-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.region-content {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.region-map {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.region-map svg {
  width: 80%;
  max-width: 320px;
}

/* ─── Blog Cards ─── */
.blog-card {
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 220px;
  background: var(--grey-light);
  overflow: hidden;
  position: relative;
}

.blog-card-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body { padding: 28px; }

.blog-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-meta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--grey-mid);
  letter-spacing: 0.08em;
}

/* ─── Team ─── */
.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--gold-pale);
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Contact Form ─── */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition);
  border-radius: 0;
  outline: none;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(43,96,64,0.08);
}

.form-control::placeholder { color: var(--grey-mid); }

textarea.form-control { resize: vertical; min-height: 140px; }

select.form-control { cursor: pointer; }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) 60px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px clamp(20px, 5vw, 80px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.footer-kente {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0, var(--green) 20px,
    var(--gold) 20px, var(--gold) 40px,
    var(--black) 40px, var(--black) 60px,
    var(--green) 60px, var(--green) 80px
  );
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: var(--black);
  padding: clamp(140px, 18vw, 200px) clamp(20px, 5vw, 80px) clamp(80px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(43,96,64,0.2) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 { color: var(--white); margin-bottom: 20px; }

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-size: 1.1rem;
}

/* ─── Service Page ─── */
.service-detail {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--grey-light);
  padding: 36px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.sidebar-nav a {
  display: block;
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: var(--transition);
  margin-bottom: 4px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--green);
  border-color: var(--green);
  background: var(--green-pale);
  padding-left: 24px;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── Values / Principles ─── */
.value-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.value-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── Expertise Tags ─── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--grey-light);
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.tag:hover,
.tag.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ─── Notification ─── */
.notification {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  z-index: 9999;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.4s ease;
}

.notification.show { display: block; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Page Transitions ─── */
.page-fade {
  animation: fadeUp 0.6s ease forwards;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .region-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── Layout ── */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  /* ── Navigation ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 64px; }

  /* ── Hero ── */
  .hero { min-height: 100svh; align-items: center; }
  .hero-content { padding: 100px 24px 60px; }
  .display-xl { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* ── Typography ── */
  .display-lg { font-size: clamp(2rem, 8vw, 3rem); }
  .display-md { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* ── Page Hero ── */
  .page-hero { padding: 110px 24px 60px; }

  /* ── Sections ── */
  .section { padding: clamp(48px, 10vw, 80px) 0; }
  .container { padding: 0 20px; }

  /* ── Cards ── */
  .card { padding: 28px 24px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 20px 48px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 20px; }
  .footer-brand p { max-width: 100%; }

  /* ── Values ── */
  .value-item { grid-template-columns: 1fr; gap: 4px; }
  .value-number { font-size: 1.8rem; }

  /* ── Callout ── */
  blockquote { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* ── Contact form ── */
  .contact-layout { grid-template-columns: 1fr; }

  /* ── Service detail ── */
  .service-detail { gap: 40px; }
  .sidebar-card { padding: 24px; }

  /* ── Breadcrumb ── */
  .breadcrumb { flex-wrap: wrap; gap: 4px; }

  /* ── Blog ── */
  .blog-small-card { grid-template-columns: 80px 1fr; gap: 14px; }

  /* ── Buttons full width in stacked contexts ── */
  .btn { padding: 14px 28px; }
}

@media (max-width: 480px) {
  /* ── Extra small screens ── */
  .grid-4 { grid-template-columns: 1fr; }

  .hero-content { padding: 90px 20px 48px; }
  .display-xl { font-size: clamp(2.2rem, 12vw, 3rem); }

  .page-hero { padding: 100px 20px 48px; }

  .card { padding: 24px 20px; }

  /* ── Why grid: 2 columns on small ── */
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .why-item { padding: 28px 16px !important; }

  /* ── Corridor flags ── */
  .corridor-flags { gap: 24px !important; }
  .corridor-flag-circle { width: 72px !important; height: 72px !important; font-size: 1.8rem !important; }

  /* ── Impact numbers ── */
  .impact-numbers { grid-template-columns: 1fr !important; }

  /* ── Blog featured ── */
  .blog-featured { grid-template-columns: 1fr !important; }
  .blog-featured-card { min-height: 320px !important; }
  .blog-small-card { grid-template-columns: 72px 1fr; }

  /* ── Footer ── */
  .footer { padding: 48px 0 0; }

  /* ── Pillar tabs ── */
  .pillar-tab { padding: 12px 16px !important; font-size: 0.62rem !important; letter-spacing: 0.08em !important; }

  /* ── Region / corridor sections ── */
  .corridor-section { grid-template-columns: 1fr !important; }
  .corridor-left { padding: 48px 20px !important; }
  .corridor-right { padding: 40px 20px !important; min-height: 280px; }

  /* ── Service pages inline grids ── */
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 3fr 2fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 5fr 4fr"] { grid-template-columns: 1fr !important; }

  /* ── Inline gap reduction ── */
  [style*="gap:80px"] { gap: 40px !important; }
  [style*="gap:60px"] { gap: 32px !important; }

  /* ── Tags ── */
  .tag-cloud { gap: 8px; }
  .tag { font-size: 0.6rem; padding: 6px 12px; }

  /* ── Notification ── */
  .notification { left: 16px; right: 16px; bottom: 16px; }

  /* ── Mobile nav ── */
  .mobile-nav { padding: 90px 24px 40px; }
  .mobile-nav a { font-size: 1.6rem; }
}
