/* ============================================================
   HEALING HOMES OF THE DENE — Main Stylesheet
   ============================================================ */

/* Google Fonts loaded via <link> in HTML */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-primary:       #2C5F5A;
  --color-primary-light: #3D7A74;
  --color-primary-dark:  #1A3D39;
  --color-secondary:     #C4912A;
  --color-secondary-lt:  #DFB05C;
  --color-accent:        #7B5C9A;
  --color-bg:            #F8F4EF;
  --color-bg-alt:        #EDE6DC;
  --color-bg-dark:       #1A3D39;
  --color-text:          #2D2D2D;
  --color-text-lt:       #6B6B6B;
  --color-text-muted:    #999;
  --color-white:         #FFFFFF;
  --color-border:        #D5CBC0;
  --color-dene-red:      #C0392B;
  --color-dene-black:    #1A1A1A;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Segoe UI', Arial, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --max-width: 1200px;
  --nav-height: 80px;

  --shadow-sm: 0 2px 10px rgba(44, 95, 90, 0.08);
  --shadow-md: 0 4px 24px rgba(44, 95, 90, 0.12);
  --shadow-lg: 0 10px 48px rgba(44, 95, 90, 0.18);

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-full: 9999px;

  --transition: 0.3s ease;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  /* Hide scrollbar — Firefox */
  scrollbar-width: none;
  /* Hide scrollbar — IE / old Edge */
  -ms-overflow-style: none;
}

/* Hide scrollbar — Chrome, Safari, Edge (Chromium) */
html::-webkit-scrollbar { display: none; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-secondary); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-primary-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section         { padding: var(--space-3xl) 0; }
.section--alt    { background-color: var(--color-bg-alt); }
.section--dark   { background-color: var(--color-bg-dark); color: var(--color-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

.section-header  { text-align: center; margin-bottom: var(--space-2xl); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.section-title         { color: var(--color-primary-dark); margin-bottom: var(--space-sm); }
.section-title--light  { color: var(--color-white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-lt);
  max-width: 620px;
  margin: 0 auto;
}
.section-subtitle--light { color: rgba(255,255,255,0.75); }

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */
.dene-stripe {
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-dene-red)   0px,  var(--color-dene-red)   30px,
    var(--color-dene-black) 30px, var(--color-dene-black) 60px,
    #FFFFFF                 60px, #FFFFFF                 90px
  );
}

.dene-rule {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  justify-content: center;
}
.dene-rule::before, .dene-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.dene-rule span {
  width: 8px; height: 8px;
  background: var(--color-dene-red);
  transform: rotate(45deg);
  display: block; flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-appearance: none;
  touch-action: manipulation;
}

.btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn--primary:hover {
  background: var(--color-secondary-lt);
  border-color: var(--color-secondary-lt);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 145, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(26, 61, 57, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav__logo-icon { width: 60px; height: 60px; flex-shrink: 0; object-fit: contain; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
}
.nav__logo-tagline {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--color-white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--color-secondary) !important;
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--color-secondary-lt) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  background: none;
  border: none;
  z-index: 1001;
  /* Minimum 44px touch target (WCAG / iOS HIG) */
  min-width: 44px; min-height: 44px;
  align-items: center;
  -webkit-appearance: none;
  touch-action: manipulation;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(123, 92, 154, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 65%, rgba(196, 145, 42, 0.07) 0%, transparent 50%),
    linear-gradient(160deg, #0A2420 0%, #1A3D39 28%, #2C5F5A 65%, #3D7A74 100%);
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 5rem) var(--space-lg) 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-2xl);
  width: 100%;
}

.hero__text { animation: fadeInUp 0.9s ease forwards; }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(196, 145, 42, 0.4);
  border-radius: var(--radius-full);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.12;
  margin-bottom: var(--space-md);
}
.hero__title em {
  color: var(--color-secondary);
  font-style: italic;
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s both;
}
.hero__emblem {
  width: min(380px, 100%);
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.3));
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 4;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-right: 1px solid var(--color-border);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-item__label {
  font-size: 0.88rem;
  color: var(--color-text-lt);
  font-weight: 500;
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--space-2xl);
  align-items: start;
}
.mission__text .lead {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary-dark);
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
  line-height: 1.8;
}

.pillars { display: grid; gap: var(--space-sm); }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.pillar__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar__body h3 { font-size: 0.95rem; color: var(--color-primary-dark); margin-bottom: 0.2rem; }
.pillar__body p  { font-size: 0.88rem; color: var(--color-text-lt); margin: 0; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 58px; height: 58px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.service-card__icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { font-size: 1.15rem; color: var(--color-primary-dark); margin-bottom: var(--space-xs); }
.service-card p  { font-size: 0.92rem; color: var(--color-text-lt); line-height: 1.7; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.service-card__link svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--transition);
}
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Full-page service detail cards */
.service-detail {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--color-primary);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-md);
  align-items: start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-detail:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.service-detail__icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail__icon svg {
  width: 32px; height: 32px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.service-detail h3 { font-size: 1.25rem; color: var(--color-primary-dark); margin-bottom: var(--space-xs); }
.service-detail p  { font-size: 0.95rem; color: var(--color-text-lt); margin-bottom: 0.5rem; line-height: 1.75; }
.service-detail ul { list-style: none; padding: 0; margin-top: 0.75rem; }
.service-detail ul li {
  font-size: 0.9rem;
  color: var(--color-text-lt);
  padding: 0.2rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-detail ul li::before {
  content: '◆';
  position: absolute; left: 0;
  font-size: 0.45rem;
  color: var(--color-secondary);
  top: 0.45rem;
}

/* ============================================================
   COMMUNITY QUOTE SECTION
   ============================================================ */
.community {
  background: linear-gradient(140deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.community::before {
  content: '\201C';
  position: absolute; top: -3rem; left: 4%;
  font-family: var(--font-heading);
  font-size: 22rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.community__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--space-2xl);
  align-items: center;
}
.community__quote {
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-lg);
}
.community__quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.community__quote cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  letter-spacing: 0.05em;
}
.community__values { display: grid; gap: var(--space-sm); }
.community__values h3 { color: var(--color-white); margin-bottom: var(--space-md); font-size: 1.2rem; }
.community-value {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.community-value::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-secondary);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
  background: var(--color-bg-alt);
}
.cta-section h2 { margin-bottom: var(--space-sm); }
.cta-section .lead-text {
  font-size: 1.05rem;
  color: var(--color-text-lt);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(160deg, #0A2420 0%, #1A3D39 40%, #2C5F5A 100%);
  padding: calc(var(--nav-height) + 4rem) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(196, 145, 42, 0.1) 0%, transparent 65%);
}
.page-header__inner {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-3xl);
}
.page-header h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb__sep { opacity: 0.4; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--space-2xl);
  align-items: center;
}
.story__image-box {
  background: linear-gradient(140deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.story__image-box svg { width: 75%; opacity: 0.25; }
.story__badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.story__badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.story__badge-text { font-size: 0.78rem; opacity: 0.9; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-md);
}
.value-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 70px; height: 70px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}
.value-card__icon svg {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.value-card h3 { font-size: 1.1rem; color: var(--color-primary-dark); margin-bottom: var(--space-xs); }
.value-card p  { font-size: 0.88rem; color: var(--color-text-lt); }

.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-xl);
}
.approach-item { display: flex; gap: var(--space-md); }
.approach-item__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.approach-item h3 { font-size: 1.05rem; color: var(--color-primary-dark); margin-bottom: var(--space-xs); }
.approach-item p  { font-size: 0.9rem; color: var(--color-text-lt); }

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-lg);
  max-width: 920px;
  margin: 0 auto;
}
.mv-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.mv-card--mission { border-top: 5px solid var(--color-primary); }
.mv-card--vision  { border-top: 5px solid var(--color-secondary); }
.mv-card h3 { color: var(--color-primary-dark); margin-bottom: var(--space-sm); }
.mv-card p  { font-size: 0.95rem; color: var(--color-text-lt); line-height: 1.85; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-2xl);
  align-items: start;
}
/* Form toast popup */
.form-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 360px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.form-toast.form-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.form-toast--success { background: #2C5F5A; }
.form-toast--error   { background: #C0392B; }
.form-toast__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.05rem; }
.form-toast__body { flex: 1; }
.form-toast__title { font-weight: 700; margin-bottom: 0.15rem; }
.form-toast__msg   { opacity: 0.88; font-size: 0.875rem; }
.form-toast__close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.1rem; cursor: pointer; padding: 0; line-height: 1;
  flex-shrink: 0; margin-top: 0.1rem;
}
.form-toast__close:hover { color: #fff; }

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: var(--space-xs); }
.contact-form > p { color: var(--color-text-lt); margin-bottom: var(--space-xl); }

.form-group { margin-bottom: var(--space-md); }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-sm);
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem; /* 16px minimum prevents iOS Safari auto-zoom on focus */
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 90, 0.1);
  background: var(--color-white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%236B6B6B' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem; /* ensure text doesn't overlap the arrow */
}
.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.contact-info { display: grid; gap: var(--space-md); }
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: transform var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-card__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card__icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
}
.contact-info-card p  { font-size: 0.92rem; color: var(--color-text); margin: 0; }
.contact-info-card a  { color: var(--color-primary); font-weight: 500; }

.crisis-box {
  background: linear-gradient(135deg, var(--color-primary-dark), #1e5048);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.08);
}
.crisis-box h4 {
  color: var(--color-secondary-lt);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.crisis-box p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: var(--space-sm); }
.crisis-box .crisis-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 0;
}
.footer__inner {
  padding: var(--space-3xl) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
}
.footer__brand .nav__logo { margin-bottom: var(--space-md); display: inline-flex; }
.footer__brand p { font-size: 0.88rem; line-height: 1.8; max-width: 290px; }

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer__col ul li a:hover { color: var(--color-secondary); padding-left: 6px; }

.footer__contact p {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer__contact p svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: var(--color-secondary); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 3px;
}
.footer__contact a { color: rgba(255,255,255,0.65); }
.footer__contact a:hover { color: var(--color-secondary); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer__bottom p { font-size: 0.78rem; margin: 0; }
.footer__bottom-links { display: flex; gap: var(--space-md); }
.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-links a:hover { color: var(--color-secondary); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  /* Prevent Safari paint flicker on animated elements */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

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

/* ---- 1200px: prevent nav crowding ---- */
@media (max-width: 1200px) {
  .nav__links { gap: var(--space-sm); }
  .nav__logo-name { font-size: 0.9rem; }
}

/* ---- 1024px: two-col footer, condense hero ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .hero__content { gap: var(--space-xl); }
}

/* ---- 900px: hamburger menu kicks in for tablets ---- */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  /* Card "See more" expand/collapse */
  .card-expand-btn { display: inline-block; }

  /* Domain cards: bullet list hidden until expanded */
  .domain-card ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-bottom: 0;
  }
  .domain-card.card-expanded ul { max-height: 400px; }

  /* How/phil cards: paragraph truncated until expanded */
  .how-card p, .phil-card p {
    max-height: 5.25em; /* ~3 lines at 1.75 line-height */
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .how-card.card-expanded p, .phil-card.card-expanded p { max-height: 600px; }

  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;          /* fallback */
    height: 100dvh;         /* dynamic viewport height — handles iOS Safari toolbar */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 2.5rem;
    background: rgba(10, 36, 32, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: var(--space-lg);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a {
    font-size: 1.15rem;
    padding: 0.5rem 1rem;
    display: inline-block;
    width: auto;
  }
  .nav__links .nav__cta {
    margin-top: var(--space-sm);
    padding: 0.8rem 2.5rem !important;
    font-size: 1rem !important;
  }
}

/* ---- 768px: single-column layouts ---- */
@media (max-width: 768px) {
  :root { --space-3xl: 4rem; }

  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__description { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .stat-item:last-child { border-bottom: none; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .story__image-box { aspect-ratio: 3/2; }
  .story__badge { bottom: -0.75rem; right: -0.5rem; }

  /* New page components */
  .bio-portrait { aspect-ratio: 4/3; }
  .phil-card, .domain-card__body { padding: var(--space-lg); }
  .how-card { padding: var(--space-xl) var(--space-lg); }
}

/* ---- 600px: stack service-detail flex rows ---- */
@media (max-width: 600px) {
  .service-detail { flex-direction: column; }
  .service-detail__icon { width: 52px; height: 52px; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  .section { padding: var(--space-2xl) 0; }
  .contact-form { padding: var(--space-lg); }
  .hero__title { font-size: 2rem; }
  .nav__logo-tagline { display: none; }
  .nav__logo-name { font-size: 0.85rem; }
  .nav__links { gap: var(--space-md); }
  .quote-band blockquote { font-size: 1.2rem; }
  .tagline-strip p { font-size: 0.72rem; letter-spacing: 0.08em; }
  .phil-card { padding: var(--space-lg); }
}

/* ============================================================
   SERVICES DETAIL LIST WRAPPER
   ============================================================ */
.services-detail__list {
  display: grid;
  gap: var(--space-lg);
}

/* ============================================================
   TAGLINE STRIP
   ============================================================ */
.tagline-strip {
  background: var(--color-primary-dark);
  padding: 0.9rem 0;
  text-align: center;
  overflow: hidden;
}
.tagline-strip p {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.tagline-strip span { color: var(--color-secondary); margin: 0 0.5rem; }

/* ============================================================
   QUOTE BAND (main Bobby Dorton quote)
   ============================================================ */
.quote-band {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1A3D39 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute; top: -5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 28rem;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--color-white);
  max-width: 860px;
  margin: 0 auto var(--space-lg);
  line-height: 1.55;
  position: relative; z-index: 1;
}
.quote-band cite {
  font-size: 0.88rem;
  color: var(--color-secondary);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  position: relative; z-index: 1;
}
.quote-band .principle-tag {
  display: inline-block;
  margin-top: var(--space-lg);
  background: rgba(196, 145, 42, 0.12);
  border: 1px solid rgba(196, 145, 42, 0.4);
  color: var(--color-secondary-lt);
  padding: 0.5rem 1.75rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

/* ============================================================
   PHILOSOPHY GRID (2×2)
   ============================================================ */
.phil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--space-lg);
}
.phil-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--color-primary);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.phil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.phil-card--red    { border-left-color: var(--color-dene-red); }
.phil-card--amber  { border-left-color: var(--color-secondary); }
.phil-card--purple { border-left-color: var(--color-accent); }
.phil-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.phil-card h3 { font-size: 1.15rem; color: var(--color-primary-dark); margin-bottom: var(--space-xs); }
.phil-card p  { font-size: 0.92rem; color: var(--color-text-lt); line-height: 1.75; }

/* ============================================================
   DOMAIN CARDS (Three Domains — 3-col)
   ============================================================ */
.domain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-lg);
}
.domain-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.domain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.domain-card__bar { height: 6px; background: var(--color-primary); }
.domain-card--red   .domain-card__bar { background: var(--color-dene-red); }
.domain-card--amber .domain-card__bar { background: var(--color-secondary); }
.domain-card__body { padding: var(--space-xl); }
.domain-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}
.domain-card--red   .domain-card__icon { background: linear-gradient(135deg, var(--color-dene-red), #e05c4a); }
.domain-card--amber .domain-card__icon { background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-lt)); }
.domain-card__icon svg {
  width: 28px; height: 28px;
  fill: none; stroke: white;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.domain-card h3 { font-size: 1.15rem; color: var(--color-primary-dark); margin-bottom: var(--space-sm); }
.domain-card p  { font-size: 0.88rem; color: var(--color-text-lt); line-height: 1.75; margin-bottom: var(--space-md); }
.domain-card ul { list-style: none; padding: 0; }
.domain-card ul li {
  font-size: 0.88rem; color: var(--color-text-lt);
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}
.domain-card ul li::before {
  content: '◆';
  position: absolute; left: 0;
  font-size: 0.4rem;
  color: var(--color-secondary);
  top: 0.52rem;
}

/* ============================================================
   HOW-CARDS (How It Works — 3-col)
   ============================================================ */
.how-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-lg);
}
.how-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.how-card__step {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}
.how-card h3 { font-size: 1.1rem; color: var(--color-primary-dark); margin-bottom: var(--space-sm); }
.how-card p  { font-size: 0.9rem; color: var(--color-text-lt); line-height: 1.75; }

/* ============================================================
   CARD EXPAND TOGGLE — "See more / See less" on mobile
   ============================================================ */
.card-expand-btn {
  display: none; /* visible only on mobile via media query */
  margin-top: var(--space-sm);
  padding: 0.35rem 1rem;
  background: none;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background var(--transition), color var(--transition);
}
.card-expand-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================
   BIO SECTION (Bobby Dorton)
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--space-2xl);
  align-items: start;
}
.bio-portrait {
  background: linear-gradient(140deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.bio-portrait__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio-portrait__badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
}
.bio-portrait__badge h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 0.25rem; }
.bio-portrait__badge p  { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; }
.bio-content h2 { margin-bottom: var(--space-sm); }
.bio-content .lead-text { color: var(--color-text-lt); margin-bottom: var(--space-xl); font-size: 1.05rem; }
.bio-journey {
  border-left: 3px solid var(--color-primary-light);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.bio-journey p { font-size: 0.95rem; color: var(--color-text-lt); line-height: 1.85; margin-bottom: var(--space-md); }
.bio-journey p:last-child { margin-bottom: 0; }

/* ============================================================
   CREDENTIALS GRID
   ============================================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}
.cred-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  border-left: 4px solid var(--color-secondary);
}
.cred-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-lt));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.cred-item__icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: white;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cred-item p { font-size: 0.88rem; color: var(--color-text); line-height: 1.5; margin: 0; }

/* ============================================================
   LEADERSHIP ROLES
   ============================================================ */
.leadership-list { display: grid; gap: var(--space-md); }
.leadership-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  border-left: 5px solid var(--color-primary);
}
.leadership-item--red { border-left-color: var(--color-dene-red); }
.leadership-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.leadership-item--red .leadership-item__icon { background: linear-gradient(135deg, var(--color-dene-red), #e05c4a); }
.leadership-item__icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: white;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.leadership-item__role {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}
.leadership-item__org { font-size: 0.85rem; color: var(--color-text-lt); margin: 0; }


