/* ============================================================
   IASO MEDIPARK — Global Stylesheet
   Brand: Premium Nigerian Healthcare Development, Ikoyi Lagos
   Palette: Crimson Red + Dark Charcoal + Clean White
   ============================================================ */

@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;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand Colors — exact IASO Medipark logo palette */
  --teal-dark:     #2D2D2D;   /* deep charcoal — text, accents */
  --navbar-bg:     #FFFFFF;   /* navbar solid bg — white */
  --teal-mid:      #3D3D3D;   /* mid charcoal */
  --teal-light:    #C41E1E;   /* crimson red — interactive/hover */
  --teal-bright:   #E02020;   /* brighter crimson */
  --teal-pale:     #FDF0F0;   /* pale crimson tint */

  --gold:          #C41E1E;   /* crimson — primary accent */
  --gold-light:    #E02020;   /* lighter crimson */
  --gold-pale:     #FDF0F0;   /* pale crimson background tint */

  --charcoal:      #2D2D2D;   /* dark charcoal text */
  --charcoal-mid:  #3D3D3D;
  --charcoal-soft: #5A5A5A;
  --warm-grey:     #888888;

  --cream:         #FAFAFA;
  --white:         #FFFFFF;
  --off-white:     #F5F5F5;

  --border:        rgba(45,45,45,0.12);
  --border-gold:   rgba(196,30,30,0.22);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad:   100px;
  --section-pad-sm: 60px;
  --container:     1240px;
  --gutter:        32px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:        0.2s;
  --t-med:         0.4s;
  --t-slow:        0.7s;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(30,30,30,0.08);
  --shadow-md:     0 8px 32px rgba(30,30,30,0.12);
  --shadow-lg:     0 20px 60px rgba(30,30,30,0.16);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1  { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 300; }
h2  { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; }
h3  { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4  { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }
p   { font-size: 1rem; line-height: 1.75; color: var(--charcoal-soft); font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--charcoal-mid); font-weight: 300; }

/* ─── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--teal  { background: #f4f6fa; color: var(--charcoal); border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.section--dark  { background: #f0f2f7; color: var(--charcoal); border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.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-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-teal { color: var(--teal-light) !important; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover::after { transform: translateX(0); }

.btn--primary {
  background: var(--teal-dark);
  color: var(--white);
}
.btn--primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,57,43,0.25); }

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

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

.btn--lg { padding: 18px 44px; font-size: 0.9rem; }
.btn-arrow { font-size: 1.1em; }

/* ─── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--t-med) var(--ease);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.navbar.transparent { background: transparent; }
.navbar.solid { background: #FFFFFF; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--gutter);
  max-width: 1320px;
  margin: 0 auto;
}
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
/* Logo image — navbar */
.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Logo has white background — show naturally at all times */
  filter: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.navbar__logo:hover .navbar__logo-img { opacity: 0.85; }

/* Footer logo image */
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Footer is dark — show logo naturally (white bg reads fine on dark) */
  filter: none;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Legacy text logo spans — hidden */
.logo-mark, .logo-text, .logo-iaso, .logo-medipark,
.logo-name, .logo-sub { display: none; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}
.navbar__nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 10px 14px;
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-fast) var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.navbar__cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--t-fast) var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--charcoal);
  padding: 16px;
}
.mobile-menu .nav-link:hover, .mobile-menu .nav-link.active { color: var(--gold); }
.mobile-menu .nav-link::after { display: none; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--charcoal);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ─── Page Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(20,20,20,0.80) 50%, rgba(10,10,10,0.88) 100%),
    url('') center/cover no-repeat,
    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  background-color: #1a1a1a;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,30,30,0.10) 0%, transparent 60%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0,0,0,0.8) 60px, rgba(0,0,0,0.8) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,0,0,0.8) 60px, rgba(0,0,0,0.8) 61px);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px var(--gutter) 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  color: #fefffe;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 28px;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 620px;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1) translateY(0); }
  50% { opacity: 0.8; transform: scaleY(0.6) translateY(8px); }
}

/* ─── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--teal-dark);
  padding: 160px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(192,57,43,0.1) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.35), transparent);
}
.page-hero__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 640px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ─── Section Headers ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 640px; }
.section-header--center p { margin: 0 auto; }
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.section-header--center .section-divider { margin: 24px auto; }
/* These modifiers are now used on light bg sections — render as dark text */
.section-header--white h2,
.section-header--light h2 { color: var(--charcoal); }
.section-header--white p,
.section-header--light p { color: var(--charcoal-soft); }

/* ─── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: all var(--t-med) var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--t-med) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-gold); }
.card:hover::before { height: 100%; }

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--teal-dark); }
.card p { font-size: 0.95rem; line-height: 1.7; }

.stat-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--t-med) var(--ease);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ─── Specialty Cards ─────────────────────────────────────────── */
.specialty-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.specialty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.specialty-card__img {
  height: 200px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.specialty-card__img img { width: 100%; height: 100%; object-fit: cover; }
.specialty-card__body { padding: 28px 28px 32px; }
.specialty-card__body h3 { font-size: 1.25rem; color: var(--teal-dark); margin-bottom: 12px; }
.specialty-card__body p { font-size: 0.92rem; line-height: 1.7; }

/* ─── Phase Timeline ──────────────────────────────────────────── */
.phase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.phase-block {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.phase-block--1 { background: #3a3a3a; }
.phase-block--2 { background: #4a4a4a; }
.phase-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: -10px;
  right: 32px;
  line-height: 1;
  pointer-events: none;
}
.phase-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.phase-block h3 { color: var(--white); margin-bottom: 20px; font-size: 1.6rem; }
.phase-block p { color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.75; }
.phase-list { display: flex; flex-direction: column; gap: 10px; }
.phase-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.phase-list-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ─── Sustainability Pillars ──────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.pillar {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--t-fast);
}
.pillar:hover { background: var(--teal-pale); }
.pillar__icon { font-size: 2rem; margin-bottom: 16px; }
.pillar h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; color: var(--teal-dark); line-height: 1.4; }

/* ─── FAQ Accordion ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}
.faq-trigger:hover { color: var(--teal-light); }
.faq-trigger h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--teal-light);
  transition: all var(--t-fast) var(--ease);
}
.faq-item.open .faq-icon { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 28px;
}
.faq-answer p { font-size: 0.97rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ─── Consortium / Partner Logos ──────────────────────────────── */
.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.partner-item:hover { opacity: 1; }
.partner-logo-box {
  width: 80px;
  height: 80px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: center;
  padding: 8px;
  line-height: 1.2;
}
.partner-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  text-align: center;
  max-width: 90px;
}

/* ─── Investment Highlights Strip ─────────────────────────────── */
.invest-strip {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}
.invest-strip__inner {
  display: flex;
  align-items: stretch;
}
.invest-item {
  flex: 1;
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background var(--t-fast);
}
.invest-item:last-child { border-right: none; }
.invest-item:hover { background: rgba(255,255,255,0.08); }
.invest-item__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.invest-item__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ─── CTA Band ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--teal-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.12) 0%, transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 40px; font-size: 1.05rem; }
.cta-band .flex-center { gap: 16px; flex-wrap: wrap; }

/* ─── Testimonial / Quote ─────────────────────────────────────── */
.quote-block {
  position: relative;
  padding: 48px 48px 48px 72px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.quote-block::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 24px;
}
.quote-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* ─── Image Treatments ────────────────────────────────────────── */
.img-frame {
  position: relative;
  overflow: hidden;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.img-frame:hover img { transform: scale(1.04); }
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-pale) 0%, #FDF0F0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.img-placeholder span { font-size: 3rem; }

/* ─── Feature List ────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--t-fast) var(--ease);
}
.feature-item:hover { border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--teal-dark);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.feature-body p { font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* ─── Map / Location Strip ─────────────────────────────────────── */
.location-strip {
  background: var(--gold);
  padding: 16px 0;
}
.location-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.location-inner strong { color: #fefffe; }

/* ─── Contact Form ────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--t-fast);
  outline: none;
  border-radius: 0;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(30,112,112,0.08); }
textarea { resize: vertical; min-height: 140px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }

/* ─── Info Boxes ──────────────────────────────────────────────── */
.info-box {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal-light);
  padding: 24px 28px;
}
.info-box p { color: var(--teal-dark); font-size: 0.92rem; }

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--white);
  color: var(--charcoal);
  border-top: 2px solid var(--border-gold);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer-brand .logo-name { margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--gold); font-size: 0.85rem; margin-top: 2px; }
.footer-contact-text { font-size: 0.85rem; color: var(--charcoal-soft); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--off-white);
  padding: 20px 0;
  width: 100%;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.footer-bottom__inner p {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin: 0;
  white-space: nowrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--warm-grey); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--warm-grey); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  transition: all var(--t-fast);
  cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Animations ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--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; }

/* ─── Utility ─────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.highlight-text { color: var(--teal-light); }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag--gold { background: var(--gold-pale); color: var(--gold); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .hero__stats { gap: 32px; }
  .invest-strip__inner { flex-direction: column; }
  .invest-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px; --gutter: 20px; }
  h1  { font-size: 2.4rem; }
  h2  { font-size: 1.8rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-direction: column; gap: 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom__inner { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .footer-bottom__inner p, .footer-bottom-links a { font-size: 0.72rem; white-space: nowrap; }
  .partner-strip { gap: 32px; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */

/* page-hero--contact inherits the standard dark .page-hero styles */

/* Contact intro grid */
.contact-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-intro-text p { margin-bottom: 1rem; color: var(--charcoal); line-height: 1.75; }
.contact-intro-text p strong { color: var(--teal); }

/* Contact details */
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-detail-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail-item a { color: var(--teal); text-decoration: none; font-weight: 500; }
.contact-detail-item a:hover { color: var(--gold); }

/* Form wrapper */
.contact-form-wrapper {
  background: white;
  border-radius: 12px;
  padding: 2.75rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.req { color: #C41E1E; font-weight: 700; }

.form-row { display: flex; gap: 1rem; }
.form-row--half .form-group { flex: 1; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #dde3e3;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #f4f6fa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,30,30,0.08);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group--checkbox { margin-top: 0.5rem; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.5;
  cursor: pointer; text-transform: none; font-weight: 400; letter-spacing: 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--teal);
}

.btn--full { width: 100%; text-align: center; margin-top: 0.75rem; }

/* Form success state */
.form-success {
  margin-top: 1.5rem;
  background: #FDF0F0;
  border: 1.5px solid #C41E1E;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.form-success__icon {
  width: 48px; height: 48px;
  background: #C41E1E; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 1rem;
}
.form-success h4 { color: var(--teal-dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Map section */
.map-section { padding: var(--section-pad) 0; }
.map-placeholder {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f6fa 0%, #EFEFEF 100%); border: 1px solid rgba(0,0,0,0.08);
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(192,57,43,0.25);
}
.map-placeholder__inner { text-align: center; padding: 3rem; }
.map-icon { font-size: 3rem; margin-bottom: 1rem; }
.map-placeholder__label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.map-placeholder__address { color: var(--charcoal-soft); font-size: 0.95rem; margin: 0; }

/* Contact cards */
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card__category {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-card__org {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}
.contact-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.contact-card__link {
  color: var(--teal);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px dashed var(--teal);
  padding-bottom: 1px;
}
.contact-card__link:hover { color: var(--gold); border-color: var(--gold); }

/* Responsive contact */
@media (max-width: 1000px) {
  .contact-intro-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .contact-form-wrapper { padding: 1.75rem; }
  .form-row--half { flex-direction: column; gap: 0; }
}

/* ── Extended nav (9 items) — tighten spacing ── */
.navbar__nav { gap: 0; }
.nav-link { padding: 10px 10px; font-size: 0.78rem; }