/*
 * ============================================================
 * MTMG — Shared Stylesheet
 * mtmg-styles.css  |  Version 1.0  |  April 2026
 * Guidance That Empowers.
 * ============================================================
 *
 * HOW TO LINK THIS FILE
 * ─────────────────────
 * From root-level pages  (e.g. /index.html):
 * <link rel="stylesheet" href="/mtmg-styles.css">
 *
 * From subdirectory pages  (e.g. /north-fractional-leadership/index.html):
 * <link rel="stylesheet" href="../mtmg-styles.css">
 *
 * Page-specific overrides go in a <style> block AFTER this link.
 * Never duplicate brand tokens in page-level style blocks.
 *
 * TABLE OF CONTENTS
 * ─────────────────
 * 1.  Design Tokens (CSS custom properties)
 * 2.  Reset & Base
 * 3.  Typography
 * 4.  Navigation
 * 5.  Hero
 * 6.  Section Shells & Dividers
 * 7.  Buttons
 * 8.  Compass Cards (4-direction grid)
 * 9.  Engagement Cards (situation / what we do / what you get)
 * 10.  Event Format Cards
 * 11.  Tier Cards (Who Leads / Builds / Guides)
 * 12.  AEO Summary Block  ← NEVER restyle or remove
 * 13.  Profile Cards (Who Builds)
 * 14.  Stat Blocks
 * 15.  Community Cards
 * 16.  Tagline Block
 * 17.  Values List
 * 18.  FAQ Accordion
 * 19.  Spotlight & Funfact Blocks
 * 20.  Expertise & Credential Tags
 * 21.  Achievement Rows
 * 22.  Footer
 * 23.  Utilities
 * ============================================================
 */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colours */
  --deep-navy:    #0e193c;   /* Primary bg, hero, headers */
  --mid-blue:     #1f416f;   /* Secondary bg, body text on light */
  --steel-blue:   #5284b2;   /* Accents, links, CTA buttons, Who Builds */
  --ice-blue:     #b7def1;   /* Headings on dark, light highlights, West accent */
  --crimson:      #690806;   /* South direction, alerts */
  --forest-green: #193a29;   /* East direction */
  --indigo:       #31326f;   /* North direction, Who Leads, logo ring */

  /* Engagement card backgrounds (established April 2026) */
  --eng-blue-bg:  #1f416f;
  --eng-red-bg:   #3a1a1a;
  --eng-green-bg: #1a2a1a;

  /* Engagement card borders */
  --eng-blue-border:  #5284b2;
  --eng-red-border:   #690806;
  --eng-green-border: #193a29;

  /* Engagement card label colours */
  --eng-blue-label:  #5284b2;
  --eng-red-label:   #f5c4b3;
  --eng-green-label: #9fe1cb;

  /* Compass card text tints */
  --north-tint: var(--ice-blue);
  --south-tint: #f5c4b3;
  --east-tint:  #9fe1cb;
  --west-tint:  var(--ice-blue);

  /* Layout */
  --nav-h:        56px;
  --max-w:        1000px;
  --section-pad:  5rem 2.5rem;

  /* Card */
  --card-radius:  12px;
  --card-shadow:  0 4px 16px rgba(14, 25, 60, 0.08);
  --card-border:  1px solid #e2e8f0;

  /* Transitions */
  --hover-lift: translateY(-3px);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  font-family: 'Arial Nova Condensed', Arial, sans-serif;
  background: var(--deep-navy);
  color: var(--ice-blue);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

/* Display / H1 */
h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
}
h1 span { color: var(--ice-blue); }

/* Section heading */
h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

/* Card / component heading */
h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Sub-component heading */
h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Section label — 11px uppercase tracked */
.section-label,
.label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 0.75rem;
  display: block;
}

/* Eyebrow (hero) */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 1.25rem;
  display: block;
}

/* Body text */
p {
  font-size: 15px;
  color: var(--ice-blue);
  line-height: 1.85;
}

/* Small / caption */
.text-sm  { font-size: 13px; }
.text-xs  { font-size: 11px; }
.text-tiny { font-size: 10px; font-style: italic; }

/* Monospace (hex codes, technical) */
.mono { font-family: 'Courier New', monospace; font-size: 10px; }


/* ============================================================
   4. NAVIGATION
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 9999; /* UPDATED: Increased z-index to stay above hero elements */
  background: rgba(14, 25, 60, 0.97);
  border-bottom: 1px solid var(--mid-blue);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-fallback {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--indigo);
  border: 2px solid var(--steel-blue);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ice-blue);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 13px;
  color: var(--ice-blue);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px); /* Visually retains the 8px gap below the nav */
  left: 0;
  background: var(--deep-navy);
  border: 1px solid var(--mid-blue);
  border-radius: 8px;
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
/* UPDATED: Invisible bridge to fix the 8px hover gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ice-blue);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--mid-blue); color: #ffffff; }
.dropdown-divider { height: 1px; background: var(--mid-blue); margin: 4px 0; opacity: 0.4; }
.compass-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  padding: 8px 18px 4px;
}

/* Nav CTA button */
.nav-cta {
  background: var(--indigo);
  color: var(--ice-blue);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Arial Nova Condensed', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--steel-blue); color: #ffffff; }


/* ============================================================
   5. HERO
   ============================================================ */
.hero-wrapper {
  position: relative;
  background: var(--deep-navy);
  overflow: hidden;
  min-height: 560px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.55;
  pointer-events: none;
}
.hero {
  position: relative;
  z-index: 2;
  padding: 6rem 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text p  { max-width: 520px; margin-bottom: 2rem; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Compass point badge — used in hero and profile cards */
.compass-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compass-badge.north { background: var(--indigo);       color: var(--ice-blue); }
.compass-badge.south { background: var(--crimson);      color: var(--south-tint); }
.compass-badge.east  { background: var(--forest-green); color: var(--east-tint); }
.compass-badge.west  { background: var(--mid-blue);     color: var(--ice-blue); border: 1px solid var(--ice-blue); }

/* Pill metadata tag (hero eyebrow variant) */
.pill-tag {
  display: inline-block;
  background: rgba(82, 132, 178, 0.18);
  border: 1px solid var(--steel-blue);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 1.25rem;
}


/* ============================================================
   6. SECTION SHELLS & DIVIDERS
   ============================================================ */

/* Section backgrounds — alternate to create rhythm */
.section-navy  { background: var(--deep-navy); padding: var(--section-pad); }
.section-mid   { background: var(--mid-blue);  padding: var(--section-pad); }
.section-indigo { background: var(--indigo);   padding: var(--section-pad); }

/* Inner wrapper — max-width centred */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Divider between sections */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mid-blue), transparent);
}

/* Stats bar (used in In Good Company hero) */
.stats-bar {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stats-bar .stat-item { text-align: center; }
.stats-bar .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.stats-bar .stat-desc {
  font-size: 12px;
  color: var(--steel-blue);
  letter-spacing: 0.04em;
  display: block;
}

/* Intro text — used below section h2 */
.intro-text {
  font-size: 15px;
  color: var(--ice-blue);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 3rem;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */

/* Shared button base */
.btn {
  display: inline-block;
  font-family: 'Arial Nova Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* Primary — Indigo fill (default, North, Who Leads) */
.btn-primary {
  background: var(--indigo);
  color: var(--ice-blue);
  border: none;
  padding: 13px 28px;
  font-size: 14px;
}
.btn-primary:hover { background: var(--steel-blue); color: #ffffff; }

/* Steel — Steel Blue fill (Who Builds, East) */
.btn-steel {
  background: var(--steel-blue);
  color: #ffffff;
  border: none;
  padding: 13px 28px;
  font-size: 14px;
}
.btn-steel:hover { background: var(--indigo); color: var(--ice-blue); }

/* Secondary — transparent with Indigo border */
.btn-secondary {
  background: transparent;
  color: var(--ice-blue);
  border: 2px solid var(--indigo);
  padding: 13px 28px;
  font-size: 14px;
}
.btn-secondary:hover { border-color: var(--steel-blue); color: #ffffff; }

/* Light — transparent with Ice Blue border (on dark/indigo bg) */
.btn-light {
  background: transparent;
  color: var(--ice-blue);
  border: 2px solid var(--ice-blue);
  padding: 13px 32px;
  font-size: 14px;
}
.btn-light:hover { background: var(--ice-blue); color: var(--deep-navy); }

/* Large — for CTA sections */
.btn-large {
  background: var(--deep-navy);
  color: var(--ice-blue);
  border: 2px solid var(--ice-blue);
  padding: 16px 40px;
  font-size: 16px;
}
.btn-large:hover { background: var(--ice-blue); color: var(--deep-navy); }


/* ============================================================
   8. COMPASS CARDS (four-direction grid)
   ============================================================ */
.compass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.compass-card {
  border-radius: var(--card-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.compass-card:hover {
  transform: var(--hover-lift);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.compass-card.north { background: var(--indigo);       border: 1px solid var(--steel-blue); }
.compass-card.south { background: var(--crimson);      border: 1px solid #f0997b; }
.compass-card.east  { background: var(--forest-green); border: 1px solid #9fe1cb; }
.compass-card.west  { background: var(--mid-blue);     border: 1px solid var(--ice-blue); }

.compass-card .direction {
  font-size: 48px;
  font-weight: 700;
  opacity: 0.12;
  position: absolute;
  top: 10px; right: 20px;
  color: #ffffff;
}
.compass-card .point-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.compass-card.north .point-label { color: var(--north-tint); }
.compass-card.south .point-label { color: var(--south-tint); }
.compass-card.east  .point-label { color: var(--east-tint); }
.compass-card.west  .point-label { color: var(--west-tint); }
.compass-card h3 { font-size: 20px; margin-bottom: 10px; }
.compass-card.north p { color: var(--north-tint); }
.compass-card.south p { color: var(--south-tint); font-size: 13px; line-height: 1.75; }
.compass-card.east  p { color: var(--east-tint);  font-size: 13px; line-height: 1.75; }
.compass-card.west  p { color: var(--west-tint);  font-size: 13px; line-height: 1.75; }

/* Mini compass grid — cross-page reference (Managed Services) */
.compass-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.compass-mini-card {
  border-radius: 8px;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.compass-mini-card:hover { transform: var(--hover-lift); }
.compass-mini-card.north { background: var(--indigo); }
.compass-mini-card.south { background: var(--crimson); }
.compass-mini-card.east  { background: var(--forest-green); }
.compass-mini-card.west  { background: var(--mid-blue); border: 1px solid var(--ice-blue); }
.compass-mini-card .mini-dir  { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 6px; display: block; }
.compass-mini-card h4 { font-size: 14px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.compass-mini-card p  { font-size: 12px; line-height: 1.6; color: var(--ice-blue); }


/* ============================================================
   9. ENGAGEMENT CARDS (situation / what we do / what you get)
   Established in Managed Services page, April 2026.
   Row colour order for 6-card sections:
     Row 1: Blue / Red / Green
     Row 2: Red / Green / Blue   (mirrored)
   ============================================================ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.eng-card {
  border-radius: var(--card-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eng-card.blue  { background: var(--eng-blue-bg);  border-top: 3px solid var(--eng-blue-border); }
.eng-card.red   { background: var(--eng-red-bg);   border-top: 3px solid var(--eng-red-border); }
.eng-card.green { background: var(--eng-green-bg); border-top: 3px solid var(--eng-green-border); }

.eng-card .eng-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.eng-card.blue  .eng-label { color: var(--eng-blue-label); }
.eng-card.red   .eng-label { color: var(--eng-red-label); }
.eng-card.green .eng-label { color: var(--eng-green-label); }

.eng-card h3 { font-size: 18px; margin-bottom: 8px; }
.eng-card .situation { font-size: 13px; color: var(--ice-blue); line-height: 1.7; font-style: italic; }

.eng-card .what-box {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 1rem;
}
.eng-card .what-box .what-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 6px;
  display: block;
}
.eng-card .what-box p { font-size: 13px; color: var(--ice-blue); line-height: 1.7; margin: 0; }

.eng-card .get-box {
  background: rgba(82,132,178,0.1);
  border-left: 3px solid var(--steel-blue);
  border-radius: 0 6px 6px 0;
  padding: 0.75rem 1rem;
}
.eng-card .get-box .get-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 4px;
  display: block;
}
.eng-card .get-box p { font-size: 13px; color: var(--ice-blue); line-height: 1.6; margin: 0; }


/* ============================================================
  10. EVENT FORMAT CARDS
   Established in In Good Company page, April 2026.
   6 cards, 3-col grid, each with colour-coded 3px top border.
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 1.75rem;
  border-top: 3px solid;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--mid-blue);
}
.event-card:hover {
  transform: var(--hover-lift);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Individual event colours — match In Good Company assignments */
.event-card.keynote   { border-top-color: var(--steel-blue); }
.event-card.sounding  { border-top-color: var(--forest-green); }
.event-card.lab       { border-top-color: var(--indigo); }
.event-card.brief     { border-top-color: var(--crimson); }
.event-card.dinner    { border-top-color: var(--mid-blue); }
.event-card.patio     { border-top-color: var(--ice-blue); }

.event-card .event-pill {
  display: inline-block;
  border-radius: 99px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
}
.event-card.keynote  .event-pill { background: var(--steel-blue); }
.event-card.sounding .event-pill { background: var(--forest-green); }
.event-card.lab      .event-pill { background: var(--indigo); }
.event-card.brief    .event-pill { background: var(--crimson); }
.event-card.dinner   .event-pill { background: var(--mid-blue); }
.event-card.patio    .event-pill { background: var(--ice-blue); color: var(--mid-blue); }

.event-card h3 { font-size: 18px; color: var(--mid-blue); margin-bottom: 8px; }
.event-card p  { font-size: 13px; color: var(--mid-blue); line-height: 1.7; }
.event-card .capacity {
  font-size: 11px;
  color: var(--steel-blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  display: block;
}


/* ============================================================
  11. TIER CARDS (Who Leads / Who Builds / Who Guides)
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier-card {
  background: var(--deep-navy);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  border-top: 4px solid;
}
.tier-card.leads  { border-color: var(--indigo); }    /* Who Leads = Indigo */
.tier-card.builds { border-color: var(--steel-blue); } /* Who Builds = Steel Blue */
.tier-card.guides { border-color: var(--ice-blue); }   /* Who Guides = Ice Blue */

.tier-card .tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.tier-card.leads  .tier-name { color: var(--ice-blue); }
.tier-card.builds .tier-name { color: var(--steel-blue); }
.tier-card.guides .tier-name { color: var(--ice-blue); opacity: 0.7; }
.tier-card h3 { font-size: 18px; margin-bottom: 10px; }
.tier-card p  { font-size: 13px; color: var(--steel-blue); line-height: 1.7; }


/* ============================================================
  12. AEO SUMMARY BLOCK
   !! NEVER restyle, recolour, or remove this component !!
   Required on every service/content page — critical for
   AI/LLM search indexing.
   ============================================================ */
.aeo-block {
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
  border-left: 4px solid var(--steel-blue);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}
.aeo-block .aeo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 8px;
  display: block;
}
.aeo-block p {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mid-blue);
  line-height: 1.75;
  margin: 0;
}


/* ============================================================
  13. PROFILE CARDS (Who Builds)
   ============================================================ */
.profile-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.profile-card:hover {
  transform: var(--hover-lift);
  box-shadow: 0 8px 28px rgba(14,25,60,0.14);
}
.profile-tier-bar {
  height: 4px;
  width: 100%;
}
.profile-tier-bar.builds { background: var(--steel-blue); }
.profile-tier-bar.leads  { background: var(--indigo); }
.profile-tier-bar.guides { background: var(--ice-blue); }

.profile-body { padding: 1.75rem; }
.profile-name { font-size: 26px; font-weight: 700; color: var(--deep-navy); margin-bottom: 4px; }
.profile-title { font-size: 13px; color: var(--steel-blue); font-weight: 600; margin-bottom: 1rem; }
.profile-bio { font-size: 14px; color: var(--mid-blue); line-height: 1.8; margin-bottom: 1rem; }


/* ============================================================
  TEAM PHOTO CONVENTION
  ─────────────────────
  Rendered size:   120×120px (set via CSS or img attributes)
  Source file:     240×240px (2× for retina sharpness)
  Crop:            Square, face centred
  Folder:          /assets/team/
  Format:          .png
  Naming:          photo-firstname-lastname.png
  Example:         /assets/team/photo-jane-smith.png
  ============================================================ */


/* ============================================================
  14. STAT BLOCKS
   ============================================================ */
.partner-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-block {
  background: var(--mid-blue);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat-block .number {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  display: block;
}
.stat-block .stat-label { font-size: 12px; color: var(--steel-blue); letter-spacing: 0.04em; }


/* ============================================================
  15. COMMUNITY CARDS
   ============================================================ */
.community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.community-card {
  background: var(--deep-navy);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  border-left: 3px solid var(--indigo);
}
.community-card .comm-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 8px;
  display: block;
}
.community-card h3 { font-size: 18px; margin-bottom: 10px; }
.community-card p  { font-size: 13px; color: var(--ice-blue); line-height: 1.7; }


/* ============================================================
  16. TAGLINE BLOCK
   ============================================================ */
.tagline-block {
  background: var(--deep-navy);
  border-radius: var(--card-radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--ice-blue);
}
.tagline-block .tl {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}
.tagline-block p { font-size: 14px; color: var(--steel-blue); line-height: 1.7; margin: 0; }

/* Blockquote variant */
blockquote.brand-quote {
  border-left: 4px solid var(--steel-blue);
  padding: 1.25rem 1.5rem;
  background: rgba(82,132,178,0.08);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
blockquote.brand-quote p { font-size: 15px; font-style: italic; color: #ffffff; line-height: 1.8; margin: 0; }
blockquote.brand-quote cite { font-size: 12px; color: var(--steel-blue); margin-top: 8px; display: block; font-style: normal; }


/* ============================================================
  17. VALUES LIST
   ============================================================ */
.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  font-size: 14px;
  color: var(--ice-blue);
  padding: 10px 0;
  border-bottom: 1px solid var(--indigo);
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-list li:last-child { border-bottom: none; }
.val-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }


/* ============================================================
  18. FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
details.faq-item {
  background: var(--deep-navy);
  border-radius: 8px;
  border: 1px solid var(--mid-blue);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--steel-blue); }

summary.faq-q {
  padding: 1.1rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after { content: '+'; font-size: 20px; color: var(--steel-blue); flex-shrink: 0; }
details.faq-item[open] summary.faq-q::after { content: '−'; }
summary.faq-q:hover { background: var(--mid-blue); }

.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 14px;
  color: var(--ice-blue);
  line-height: 1.8;
  border-top: 1px solid var(--mid-blue);
}
.faq-a p { margin-bottom: 0.75rem; }
.faq-a p:last-child { margin-bottom: 0; }


/* ============================================================
  19. SPOTLIGHT & FUNFACT BLOCKS
   ============================================================ */
.spotlight-block {
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
  border-left: 4px solid var(--steel-blue);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.spotlight-block .spot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 6px;
  display: block;
}
.spotlight-block p { font-size: 13px; color: var(--mid-blue); line-height: 1.7; margin: 0; }

.funfact-block {
  background: linear-gradient(135deg, #ece8ff 0%, #f4f0ff 100%);
  border-left: 4px solid var(--indigo);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.funfact-block .ff-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 6px;
  display: block;
}
.funfact-block p { font-size: 13px; color: var(--indigo); line-height: 1.7; margin: 0; }


/* ============================================================
  20. EXPERTISE & CREDENTIAL TAGS
   ============================================================ */
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0.75rem 0; }

.tag-expertise {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid-blue);
}
.tag-credential {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--indigo);
}


/* ============================================================
  21. ACHIEVEMENT ROWS
   ============================================================ */
.achievement-row {
  background: #f8fafc;
  border-left: 3px solid var(--steel-blue);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin: 6px 0;
  font-size: 13px;
  color: var(--mid-blue);
  line-height: 1.6;
}


/* ============================================================
  22. FOOTER
   ============================================================ */
footer {
  background: var(--deep-navy);
  border-top: 1px solid var(--mid-blue);
  padding: 2rem 2.5rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--mid-blue);
  margin-bottom: 1.5rem;
}
.footer-brand .brand-name { font-size: 15px; font-weight: 700; color: #ffffff; }
.footer-brand p { font-size: 13px; color: var(--steel-blue); line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice-blue);
  margin-bottom: 1rem;
  opacity: 0.6;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--steel-blue);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ice-blue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 11px; color: var(--indigo); }
.footer-bottom a { color: var(--steel-blue); text-decoration: none; }
.footer-bottom a:hover { color: var(--ice-blue); }
.footer-note { font-size: 10px; color: var(--mid-blue); width: 100%; margin-top: 0.5rem; }


/* ============================================================
  23. UTILITIES
   ============================================================ */
.text-white   { color: #ffffff !important; }
.text-ice     { color: var(--ice-blue) !important; }
.text-steel   { color: var(--steel-blue) !important; }
.text-mid     { color: var(--mid-blue) !important; }
.text-navy    { color: var(--deep-navy) !important; }
.text-crimson { color: var(--crimson) !important; }
.text-green   { color: var(--forest-green) !important; }
.text-indigo  { color: var(--indigo) !important; }

.bg-navy   { background: var(--deep-navy) !important; }
.bg-mid    { background: var(--mid-blue) !important; }
.bg-indigo { background: var(--indigo) !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* ============================================================
  24. RESPONSIVE / MOBILE
   Added for mobile rendering improvements.
   ============================================================ */
@media (max-width: 1100px) {
  nav {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  nav {
    height: auto;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav-logo {
    font-size: 15px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }

  .nav-links a,
  .nav-dropdown > a {
    font-size: 13px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero-wrapper {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4.5rem 1rem 3.5rem;
  }

  .hero-bg {
    object-position: center right;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-graphic {
    min-height: 0;
  }

  .section-navy,
  .section-mid,
  .section-indigo,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .two-col,
  .compass-grid,
  .engagement-grid,
  .event-grid,
  .tier-grid,
  .community-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .compass-mini-grid,
  .partner-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    gap: 1rem;
  }

  h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0.9rem 0.9rem 1rem;
  }

  .nav-links {
    gap: 0.6rem 0.9rem;
  }

  .nav-cta,
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-light,
  .btn-steel,
  .btn-large {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .intro-text {
    margin-bottom: 2rem;
  }

  .compass-card,
  .eng-card,
  .event-card,
  .tier-card,
  .community-card,
  .tagline-block,
  .aeo-block,
  .profile-body {
    padding: 1.25rem;
  }

  .compass-mini-grid,
  .partner-stat-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
