/* ============================================================
   GLOBAL KINGDOM CONSULTANCY — MASTER STYLESHEET
   Design: Original White/Light — Purple + Gold + White
   Visual Reference: First approved screenshot
   © 2026 Anthony A. Frank M.A.™
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors — Original */
  --gold:           #C9A84C;
  --gold-light:     #E8C96A;
  --gold-dark:      #A07830;
  --gold-btn:       #D4A843;
  --gold-btn-hover: #E8C150;
  --purple:         #5A2B7A;
  --purple-mid:     #7A4AA3;
  --purple-nav:     #4B2370;
  --purple-deep:    #3A1858;
  --purple-soft:    #F0EBF8;
  --white:          #FFFFFF;
  --off-white:      #FAFAF8;
  --bg-hero:        #F8F6FB;
  --bg-section:     #FAF9FD;
  --bg-alt:         #F0EBF8;
  --text-dark:      #111111;
  --text-body:      #374151;
  --text-muted:     #6B7280;
  --text-purple:    #5A2B7A;
  --forest:         #2D5016;

  /* Typography */
  --font-heading:   'Cinzel', serif;
  --font-body:      'Inter', sans-serif;
  --font-accent:    'Playfair Display', serif;

  /* Spacing */
  --section-pad:    90px;
  --container:      1200px;
  --nav-h:          72px;

  /* Gradients */
  --grad-gold:      linear-gradient(135deg, #C9A84C 0%, #F5D87A 50%, #A07830 100%);
  --grad-purple:    linear-gradient(135deg, #3A1858 0%, #5A2B7A 60%, #7A4AA3 100%);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--purple); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}
p { color: var(--text-body); line-height: 1.75; }

.accent-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-purple { color: var(--purple); }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--purple-nav);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  font-size: 0.9rem;
  z-index: 9999;
  transition: background 0.2s, transform 0.2s;
}
#backToTop:hover { background: var(--purple-deep); transform: translateY(-2px); }
#backToTop.visible { display: flex; }

/* ============================================================
   NAVBAR — ORIGINAL PURPLE BAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--purple-nav);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--purple-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo — matches original: white box with crest + bold name */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-badge {
  width: 54px; height: 54px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(201,168,76,0.5);
}
/* Nav logo: canvas renders logo over purple radial gradient */
.nav-logo-badge img {
  width: 50px; height: 50px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.nav-logo-badge canvas {
  display: block;
  border-radius: 50%;
}
.hero-crest {
  position: relative;
  z-index: 4;
  width: 138px;
  height: 138px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61,18,96,.18);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links > a,
.nav-dropdown > a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.nav-links > a:hover,
.nav-dropdown > a:hover { color: var(--gold-light); }
.nav-links > a.active,
.nav-dropdown > a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

/* Nav CTA — "Contact" as a subtle link */
a.nav-cta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88) !important;
  padding: 6px 10px;
  transition: color 0.2s;
  white-space: nowrap;
}
a.nav-cta:hover { color: var(--gold-light) !important; }

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-deep);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
}

/* Schedule CTA Button — Original large gold rounded */
.nav-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--gold-btn);
  color: var(--purple-deep) !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(201,168,76,0.35);
}
.nav-schedule-btn:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
  color: var(--purple-deep) !important;
}
.nav-schedule-btn i { font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--purple-deep);
  border-top: 1px solid rgba(201,168,76,0.2);
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
  transform: translateY(-105%);
  transition: transform 0.3s ease;
  z-index: 990;
  padding: 16px 0 24px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--gold-light); background: rgba(255,255,255,0.03); }
.mobile-nav .mobile-schedule {
  margin: 16px 28px 0;
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: var(--gold-btn);
  color: var(--purple-deep) !important;
  font-weight: 800;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ============================================================
   HERO — ORIGINAL CENTERED COMPOSITION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle background grid — from original */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,26,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,26,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Subtle corner glows */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 10% 10%, rgba(74,26,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 90%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ---- ORBIT / RING LOGO SHOWCASE ---- */
.hero-orbit {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

/* Outer ambient glow */
.hero-orbit-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, rgba(74,26,110,0.08) 50%, transparent 75%);
  animation: orbitGlow 4s ease-in-out infinite;
}

/* The three orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
}
.orbit-ring-1 {
  width: 188px; height: 188px;
  margin-top: -94px; margin-left: -94px;
  border: 1.5px dashed rgba(201,168,76,0.55);
  animation: ringRotate 18s linear infinite;
}
.orbit-ring-2 {
  width: 220px; height: 220px;
  margin-top: -110px; margin-left: -110px;
  border: 1px solid rgba(74,26,110,0.30);
  animation: ringRotate 28s linear infinite reverse;
}
.orbit-ring-3 {
  width: 240px; height: 240px;
  margin-top: -120px; margin-left: -120px;
  border: 1px solid rgba(201,168,76,0.20);
  animation: ringRotate 40s linear infinite;
}

/* Gold orbital dots on ring 1 */
.orbit-ring-1::before, .orbit-ring-1::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201,168,76,0.9);
}
.orbit-ring-1::before { top: -3.5px; left: 50%; margin-left: -3.5px; }
.orbit-ring-1::after  { bottom: -3.5px; left: 50%; margin-left: -3.5px; }

/* Purple dots on ring 2 */
.orbit-ring-2::before, .orbit-ring-2::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: rgba(107,47,158,0.7);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.6);
}
.orbit-ring-2::before { top: -2.5px; left: 50%; margin-left: -2.5px; }
.orbit-ring-2::after  { bottom: -2.5px; left: 50%; margin-left: -2.5px; }

/* Logo medallion — dark purple bg so transparent PNG areas blend in */
.hero-logo-medallion {
  position: relative;
  z-index: 4;
  width: 154px; height: 154px;
  border-radius: 50%;
  /* Deep purple bg — any transparent/checkerboard in PNG blends with this */
  background: radial-gradient(circle at 38% 32%, #5a1e96 0%, #3D1260 50%, #2a0d45 100%);
  background-size: 88%;
  background-repeat: no-repeat;
  background-position: center;
  border: 2.5px solid rgba(201,168,76,0.80);
  box-shadow:
    0 0 0 4px rgba(201,168,76,0.15),
    0 0 0 8px rgba(74,26,110,0.06),
    0 4px 28px rgba(74,26,110,0.30),
    0 0 35px rgba(201,168,76,0.30);
  animation: logoFloat 6s ease-in-out infinite;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-medallion img {
  width: 138px; height: 138px;
  object-fit: contain;
  display: block;
  /* purple bg on img element too */
  background: transparent;
}

/* ---- HERO TEXT CONTENT ---- */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-mid);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow-pill .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Original headline: "Global Kingdom" black bold, "Consultancy" gold */
.hero-headline {
  margin-bottom: 14px;
}
.hero-line-1 {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.0;
}
.hero-line-2 {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--gold-btn);
  letter-spacing: -1px;
  line-height: 1.05;
}

/* Tagline — purple italic serif */
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: var(--purple);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

/* Service bar */
.hero-service-bar {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--text-dark);
  text-transform: uppercase;
}
.hero-service-bar .svc-item {
  padding: 0 12px;
}
.hero-service-bar .svc-sep {
  color: var(--gold);
  font-weight: 300;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   BUTTONS — GLOBAL
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--gold-btn);
  color: var(--purple-deep) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(201,168,76,0.35);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.50);
  color: var(--purple-deep) !important;
}

.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: transparent;
  color: var(--purple) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--purple);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-purple:hover {
  background: var(--purple);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(201,168,76,0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold-btn);
  color: var(--purple-deep) !important;
  border-color: var(--gold-btn);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--white); }
.section-alt { background: var(--bg-section); }
.section-soft { background: var(--bg-alt); }
.section-dark {
  background: var(--purple-deep);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title-light { color: var(--white); }
.section-desc {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-desc-light { color: rgba(255,255,255,0.75); }
.section-head-center { text-align: center; margin-bottom: 52px; }

.gold-rule {
  width: 48px; height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 14px auto 0;
}
.gold-rule-left { margin: 14px 0 0; }

/* ============================================================
   METHODOLOGY STRIP
   ============================================================ */
.method-strip {
  background: var(--purple-nav);
  padding: 16px 0;
  overflow: hidden;
}
.method-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.method-word {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.method-arrow { color: var(--gold); font-size: 0.75rem; }

/* ============================================================
   POSITIONING SECTION (below hero)
   ============================================================ */
.positioning {
  padding: 72px 0 64px;
  background: var(--white);
  text-align: center;
}
.positioning-headline {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.positioning-body {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.positioning-pathways {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICE CARDS — FOUR CORE CAPABILITIES
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,26,110,0.12);
  border-color: rgba(201,168,76,0.35);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--purple-deep);
  margin: 0;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.service-card .card-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: color 0.2s, gap 0.2s;
}
.service-card .card-cta:hover { color: var(--gold-dark); gap: 10px; }

/* ============================================================
   PROCESS FLOW
   ============================================================ */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 36px 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.process-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dark);
}
.process-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  padding: 0 10px;
  padding-bottom: 22px;
}

/* ============================================================
   CREDIBILITY / STATS STRIP
   ============================================================ */
.cred-strip {
  background: var(--purple-nav);
  padding: 48px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.cred-item {}
.cred-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.cred-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   CONTENT BLOCKS (service detail pages)
   ============================================================ */
.block-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 12px;
  padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.block-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,26,110,0.10); }
.block-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--purple-deep);
  margin-bottom: 10px;
}
.block-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

.blocks-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.blocks-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}
.feature-list li .fi {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.feature-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-nav) 40%, var(--purple) 100%);
  padding: calc(var(--nav-h) + 52px) 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   CALLOUT / CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-nav) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 14px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 2px solid rgba(201,168,76,0.25);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 90px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 20px;
  text-align: center;
}
.about-photo-placeholder i { font-size: 3rem; color: rgba(74,26,110,0.3); }
.about-photo-placeholder p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* Credential items */
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 8px;
  padding: 14px 16px;
}
.credential-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.credential-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.credential-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Timeline (experience) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-dot {
  position: absolute;
  left: -30px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-date {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.timeline-org {
  font-size: 0.82rem;
  color: var(--purple);
  margin-bottom: 6px;
}
.timeline-body {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid rgba(74,26,110,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(107,47,158,0.10);
}
select { cursor: pointer; }
textarea { resize: vertical; min-height: 100px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent label {
  font-size: 0.78rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.55;
  cursor: pointer;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--purple-deep);
  border-radius: 12px;
  padding: 32px 28px;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-info-text span, .contact-info-text a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.contact-info-text a:hover { color: var(--gold-light); }
.contact-note {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* Restored contact template */
.contact-template-section { padding-top: 18px; }
.contact-template-section .contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 42px;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(90,43,122,.14);
  border-radius: 14px;
  padding: 42px 40px;
  box-shadow: 0 14px 38px rgba(58,24,88,.06);
}
.contact-template-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  margin: 0 0 14px;
  text-transform: none;
}
.contact-template-intro {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.75;
  margin-bottom: 34px;
}
.contact-template-sidebar { padding-top: 16px; }
.contact-information { margin-bottom: 28px; }
.contact-information .contact-info-item { margin-bottom: 20px; }
.contact-information .contact-info-icon {
  background: rgba(215,174,54,.12);
  border-color: rgba(215,174,54,.28);
  color: var(--gold-dark);
}
.contact-information .contact-info-text strong { color: var(--purple); }
.contact-information .contact-info-text span,
.contact-information .contact-info-text a { color: var(--text-body); }
.contact-information .contact-info-text a:hover { color: var(--gold-dark); }
.contact-expect-card {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(90,43,122,.14);
  box-shadow: 0 14px 38px rgba(58,24,88,.06);
}
.contact-expect-card h3 {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.15rem !important;
  text-transform: none;
}
.contact-expect-card p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.contact-expect-card p strong { color: var(--text-dark); font-size: .88rem; }

@media (max-width: 1100px) {
  .contact-template-section .contact-layout { grid-template-columns: 1fr; }
  .contact-template-sidebar { padding-top: 0; }
}
@media (max-width: 680px) {
  .contact-form-card { padding: 28px 20px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
details.faq-item {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details.faq-item[open] { border-color: rgba(201,168,76,0.35); }
details.faq-item summary {
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   RESOURCES
   ============================================================ */
.resource-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 12px;
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(74,26,110,0.10); }
.resource-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-alt);
  color: var(--purple-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 10px;
}
.resource-card h3 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.resource-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SERT PAGE
   ============================================================ */
.sert-positions-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.sert-positions-table th {
  background: var(--bg-alt);
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-deep);
  text-align: left;
  letter-spacing: 0.5px;
}
.sert-positions-table td {
  padding: 11px 16px;
  font-size: 0.85rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(74,26,110,0.06);
}
.sert-positions-table tr:hover td { background: rgba(240,235,248,0.5); }

/* ============================================================
   PILLAR CARDS (3-col)
   ============================================================ */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 24px 22px;
}
.pillar-card i { font-size: 1.5rem; color: var(--purple); margin-bottom: 12px; display: block; }
.pillar-card h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--purple-deep);
  margin-bottom: 8px;
}
.pillar-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; }

/* ============================================================
   NOTICE / ALERT BARS
   ============================================================ */
.notice-bar {
  background: var(--bg-alt);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}
.notice-bar i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.notice-bar p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes orbitGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollCerts {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reveal animations */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.in, .reveal-left.in, .reveal-right.in,
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0, 0);
}

/* ============================================================
   CERT BANNER (scrolling logos)
   ============================================================ */
.cert-banner {
  background: var(--bg-section);
  border-top: 1px solid rgba(74,26,110,0.08);
  border-bottom: 1px solid rgba(74,26,110,0.08);
  padding: 18px 0;
  overflow: hidden;
}
.cert-banner-track {
  display: flex;
  width: max-content;
  animation: scrollCerts 30s linear infinite;
  gap: 0;
}
.cert-banner-track:hover { animation-play-state: paused; }
.cert-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  border-right: 1px solid rgba(74,26,110,0.08);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cert-item i { color: var(--gold); font-size: 0.85rem; }

/* ============================================================
   FOOTER — DARK PURPLE
   ============================================================ */
.footer {
  background: var(--purple-deep);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-badge {
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 2px;
  border: 1px solid rgba(201,168,76,0.4);
}
.footer-logo-badge img { width: 36px; height: 36px; object-fit: contain; background: #ffffff; mix-blend-mode: multiply; }
.footer-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}
.footer-contact-line i { color: var(--gold); font-size: 0.8rem; width: 14px; }
.footer-contact-line a { color: rgba(255,255,255,0.6); }
.footer-contact-line a:hover { color: var(--gold-light); }
.footer-address-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 10px 0 4px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 9px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 18px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }
.footer-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
  text-align: center;
  padding-bottom: 4px;
}

/* ============================================================
   FOOTER — ENHANCED LAYOUT (Phase 7)
   ============================================================ */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-disciplines {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-top: 6px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-address p { margin: 0; }
.footer-address-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px !important;
  display: block;
}
.footer-contact-links { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item i { color: var(--gold); font-size: 0.8rem; width: 14px; }
.footer-contact-item:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col-60-40 { grid-template-columns: 1.4fr 1fr; }
.two-col-40-60 { grid-template-columns: 1fr 1.4fr; }
.col-text {}
.col-visual {}

/* ============================================================
   CTA GROUP & BUTTONS (supplemental)
   ============================================================ */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-btn);
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-gold-lg:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--purple-nav);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--purple-nav); color: #fff; }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.55);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-padded { padding: var(--section-pad) 0; }
.section-white { background: var(--white); }
.section-light { background: var(--bg-hero); }
.section-purple-light { background: #f0ebf8; }
.section-body { font-size: 1rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1.1rem; }
.section-subtitle { font-size: 1rem; color: var(--text-mid); line-height: 1.65; margin-top: 10px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  color: var(--purple-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(74,26,110,0.12);
  margin-bottom: 14px;
}
.section-intro { margin-bottom: 2rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-nav) 0%, var(--purple-deep) 100%);
  padding: 72px 0;
}
.cta-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-banner-title {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-banner .cta-group { justify-content: center; }

/* ============================================================
   RESOURCES PAGE — CATEGORY GRID
   ============================================================ */
.resource-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
}
.resource-cat-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.resource-cat-card:hover {
  box-shadow: 0 8px 32px rgba(74,26,110,0.10);
  transform: translateY(-3px);
}
.resource-cat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--purple-nav), var(--purple-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.resource-cat-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 0;
}
.resource-cat-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.resource-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(74,26,110,0.05);
}
.resource-list li:last-child { border-bottom: none; }
.resource-list li i { color: var(--text-muted); font-size: 0.75rem; flex-shrink: 0; }
.badge-coming {
  display: inline-block;
  padding: 2px 9px;
  background: #fff8e6;
  color: #9a6e00;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(212,168,67,0.35);
  margin-left: auto;
  white-space: nowrap;
}
.resource-cat-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple-nav);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
}
.resource-cat-link:hover { color: var(--gold-btn); gap: 10px; }

/* ============================================================
   RESOURCES PAGE — CONTRACTING SECTION
   ============================================================ */
.contracting-card {
  background: var(--purple-deep);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--white);
}
.contracting-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.contracting-card-header i {
  font-size: 1.6rem;
  color: var(--gold);
}
.contracting-card-header h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.contracting-who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contracting-who-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}
.contracting-who-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   RESOURCES PAGE — PROCUREMENT GRID
   ============================================================ */
.procurement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.procurement-item {
  background: var(--bg-hero);
  border: 1px solid rgba(74,26,110,0.09);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.procurement-item:hover { box-shadow: 0 4px 18px rgba(74,26,110,0.08); }
.procurement-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-nav), var(--purple-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.procurement-content { flex: 1; }
.procurement-content h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.procurement-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 10px;
}
.procurement-status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 50px;
}
.procurement-status.available {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46,125,50,0.25);
}
.procurement-status.request {
  background: #fff8e6;
  color: #9a6e00;
  border: 1px solid rgba(212,168,67,0.35);
}

/* ============================================================
   RESOURCES PAGE — GRANT SECTION
   ============================================================ */
.grant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.grant-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 26px 22px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.grant-card:hover { box-shadow: 0 6px 22px rgba(74,26,110,0.08); transform: translateY(-2px); }
.grant-icon {
  font-size: 1.7rem;
  color: var(--gold-btn);
  margin-bottom: 14px;
}
.grant-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 0 0 10px;
}
.grant-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   RESOURCES PAGE — COMING SOON GRID
   ============================================================ */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.coming-soon-item {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.coming-soon-item i {
  font-size: 1.4rem;
  color: var(--gold-btn);
  flex-shrink: 0;
  margin-top: 2px;
}
.coming-soon-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.coming-soon-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.resource-notify-box {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 14px;
}
.resource-notify-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.resource-notify-inner > i {
  font-size: 2rem;
  color: var(--gold-btn);
  flex-shrink: 0;
}
.resource-notify-inner > div {
  flex: 1;
  min-width: 200px;
}
.resource-notify-inner strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.resource-notify-inner p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   SERVICE LINKS GRID (cross-page navigation)
   ============================================================ */
.service-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 16px;
}
.service-link-card {
  background: var(--bg-hero);
  border: 1.5px solid rgba(74,26,110,0.10);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-link-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74,26,110,0.08);
}
.service-link-card i {
  font-size: 1.5rem;
  color: var(--purple-nav);
}
.service-link-card span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ============================================================
   EMERGENCY MANAGEMENT PAGE
   ============================================================ */
.em-intro-card {
  background: linear-gradient(135deg, var(--purple-nav), var(--purple-deep));
  border-radius: 16px;
  padding: 30px 26px;
  color: var(--white);
}
.em-intro-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.em-intro-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
}
.em-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.em-intro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
}
.em-intro-list li i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.em-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.em-service-card {
  background: var(--bg-hero);
  border: 1px solid rgba(74,26,110,0.09);
  border-radius: 14px;
  padding: 26px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.em-service-card:hover {
  box-shadow: 0 6px 22px rgba(74,26,110,0.08);
  transform: translateY(-2px);
}
.em-service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--purple-nav), var(--purple-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.em-service-card h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 0 0 10px;
}
.em-service-card p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0 0 12px;
}
.em-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.em-service-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.em-service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-btn);
  font-weight: 700;
}

/* EOP Checklist Card */
.eop-checklist-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.10);
  border-radius: 14px;
  padding: 26px 22px;
}
.eop-checklist-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eop-checklist-card h4 i { color: var(--gold-btn); }
.eop-check-list { display: flex; flex-direction: column; gap: 14px; }
.eop-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.eop-check-item > i {
  color: var(--gold-btn);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.eop-check-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.eop-check-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* NIMS grid */
.nims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.nims-card {
  background: var(--white);
  border: 1px solid rgba(74,26,110,0.09);
  border-radius: 12px;
  padding: 26px 22px;
}
.nims-number {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(61,18,96,0.1);
  line-height: 1;
  margin-bottom: 10px;
}
.nims-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 0 0 10px;
}
.nims-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Credential pills (white on dark bg) */
.cred-pill-white {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Page hero CTA */
.page-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1100px */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 300px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .two-col-layout, .two-col-60-40, .two-col-40-60 { grid-template-columns: 1fr; gap: 36px; }
}

/* 900px */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; }
  .nav-schedule-btn { display: none; }
  .hamburger { display: flex; }
  .hero-line-1, .hero-line-2 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .process-flow { gap: 0; }
  .process-arrow { padding: 0 6px; padding-bottom: 22px; }
  .feature-list-2col { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* 680px */
@media (max-width: 680px) {
  .hero-inner { padding: 40px 20px 30px; }
  .hero-orbit { width: 190px; height: 190px; }
  .hero-logo-medallion { width: 118px; height: 118px; }
  .hero-logo-medallion img { width: 105px; height: 105px; }
  .orbit-ring-1 { width: 148px; height: 148px; margin-top: -74px; margin-left: -74px; }
  .orbit-ring-2 { width: 172px; height: 172px; margin-top: -86px; margin-left: -86px; }
  .orbit-ring-3 { width: 190px; height: 190px; margin-top: -95px; margin-left: -95px; }
  .hero-orbit-glow { width: 170px; height: 170px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.5rem; }
  .nav-logo-text { display: none; }
  .resource-category-grid { grid-template-columns: 1fr; }
  .procurement-grid { grid-template-columns: 1fr; }
  .service-links-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .resource-notify-inner { flex-direction: column; text-align: center; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group a { text-align: center; justify-content: center; }
}
