/* ==========================================================================
   AZ AI Leadership Initiative — Website Styles
   ========================================================================== */

/* -- TOKENS ---------------------------------------------------------------- */
:root {
  --sage: #4A7C59;
  --sage-light: #6B9B78;
  --sage-pale: #E8F0EA;
  --copper: #C08B5C;
  --copper-light: #D4A574;
  --copper-pale: #F5EDE4;
  --sky: #5B9BD5;
  --sky-pale: #E8F0F8;
  --charcoal: #2D3436;
  --charcoal-mid: #3D4446;
  --charcoal-light: #636e72;
  --desert-sage: #6B8F71;
  --sand: #FAF8F5;
  --warm-gray: #8B8680;
  --light-warm: #C4BFB8;
  --border: #E8E4DE;
  --white: #FFFFFF;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
  --max-width: 1200px;
  --content-width: 720px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-xs: 0 1px 2px rgba(45,52,54,0.04);
  --shadow-sm: 0 2px 8px rgba(45,52,54,0.06);
  --shadow-md: 0 4px 20px rgba(45,52,54,0.08);
  --shadow-lg: 0 12px 40px rgba(45,52,54,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 2rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--sand);
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--sage-pale); color: var(--sage); }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; border-radius: 2px; }


/* -- TYPOGRAPHY ------------------------------------------------------------ */
h1, h2, h3, h4 { color: var(--charcoal); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

p {
  color: var(--charcoal-light);
  max-width: 65ch;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}


/* -- LAYOUT ---------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-lg {
  padding: 7rem 0;
}


/* -- BUTTONS --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--white);
  color: var(--sage);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--sage);
  background: var(--sage-pale);
}

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

.btn-ghost {
  color: var(--sage);
  padding: 0.4rem 0;
  gap: 0.4rem;
}
.btn-ghost:hover { color: var(--sage-light); }
.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(3px); }

.btn .arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* -- NAVIGATION ------------------------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  background: #FAF8F5;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-nav::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: inherit;
  z-index: -1;
}

.site-nav.scrolled {
  background: #FAF8F5;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

/* Transparent nav for dark hero pages */
.site-nav.nav-transparent {
  background: var(--charcoal);
}

.site-nav.nav-transparent.scrolled {
  background: #FAF8F5;
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-brand svg {
  width: 32px;
  height: 32px;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

/* Dual mark swap for homepage transparent nav */
.nav-mark-w { display: none; }
.nav-transparent .nav-mark { display: none; }
.nav-transparent .nav-mark-w { display: block; }
.nav-transparent.scrolled .nav-mark { display: block; }
.nav-transparent.scrolled .nav-mark-w { display: none; }

/* Transparent nav text colors */
.nav-transparent .nav-brand-text { color: var(--white); }
.nav-transparent.scrolled .nav-brand-text { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-light);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
  background: rgba(74, 124, 89, 0.07);
}

/* Transparent nav link colors */
.nav-transparent .nav-links a { color: rgba(255,255,255,0.65); }
.nav-transparent .nav-links a:hover,
.nav-transparent .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-transparent.scrolled .nav-links a { color: var(--charcoal-light); }
.nav-transparent.scrolled .nav-links a:hover,
.nav-transparent.scrolled .nav-links a.active { color: var(--charcoal); background: rgba(74, 124, 89, 0.07); }

.nav-cta {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  margin-left: 0.5rem;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 0;
  transition: all 0.3s;
  transform-origin: center;
}

.nav-transparent .nav-toggle span { background: var(--white); }
.nav-transparent.scrolled .nav-toggle span { background: var(--charcoal); }


.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: #FAF8F5;
  padding: env(safe-area-inset-top, 0px) 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.mobile-nav-header .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: inherit;
  padding: 0;
  border: none;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--charcoal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  flex-shrink: 0;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav.nav-hidden {
  display: none !important;
}

.mobile-nav > a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav > a:hover,
.mobile-nav > a.active {
  color: var(--sage);
}

.mobile-nav > .btn {
  margin-top: 1rem;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem 2rem;
}


/* -- HERO (HOME) ----------------------------------------------------------- */
.hero {
  background: var(--charcoal);
  padding: calc(var(--nav-height) + 5rem) 0 0;
  position: relative;
  overflow: hidden;
}

/* Aurora gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(74,124,89,0.5), transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(91,155,213,0.35), transparent 70%),
    radial-gradient(ellipse 40% 50% at 60% 80%, rgba(192,139,92,0.3), transparent 70%);
  animation: aurora 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.05) translate(-2%, 1%); }
  66%  { transform: scale(0.97) translate(1%, -1%); }
  100% { transform: scale(1.02) translate(-1%, 2%); }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  will-change: transform, opacity;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  animation: heroFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}

.hero-brand svg {
  width: 280px;
  height: 280px;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-brand-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Staggered hero load animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline  { animation: heroFadeUp 0.7s 0.15s cubic-bezier(0.4,0,0.2,1) both; }
.hero-sub      { animation: heroFadeUp 0.7s 0.3s cubic-bezier(0.4,0,0.2,1) both; }
.hero-actions  { animation: heroFadeUp 0.7s 0.45s cubic-bezier(0.4,0,0.2,1) both; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  letter-spacing: 0;
  margin: 0 auto 1.5rem;
  max-width: 620px;
}

.hero-tagline em {
  font-style: italic;
  color: var(--copper-light);
}


/* Word-by-word reveal */
.word-reveal {
  overflow: hidden;
}

.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: wordUp 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-media-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-frame img,
.hero-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder styling */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.15);
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.img-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Gradient accent bar */
.hero-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--desert-sage), var(--copper));
}


/* -- PAGE HEADER (INNER PAGES) --------------------------------------------- */
.page-header {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-header .label {
  margin-bottom: 0.5rem;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* -- SECTION PATTERNS ------------------------------------------------------ */
.bg-white { background: var(--white); }
.bg-sand { background: var(--sand); }
.bg-sage-pale { background: var(--sage-pale); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-charcoal h2,
.bg-charcoal h3 { color: var(--white); }
.bg-charcoal p { color: rgba(255,255,255,0.6); }

.section-header {
  margin-bottom: 3rem;
}

.section-header .label {
  margin-bottom: 0.4rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}


/* -- CARDS ----------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.4rem;
}

.card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
}


/* -- PILLAR CARDS ---------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  transition: all var(--transition);
}

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

.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar-icon.sage { background: var(--sage-pale); color: var(--sage); }
.pillar-icon.copper { background: var(--copper-pale); color: var(--copper); }
.pillar-icon.sky { background: var(--sky-pale); color: var(--sky); }

.pillar-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.pillar-content p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Pillar card illustration variant (about page) */
.pillar-card--has-illustration {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}

.pillar-illustration-lg {
  width: 72px;
  min-width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-svg-lg {
  width: 72px;
  height: 72px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.pillar-card:hover .pillar-svg-lg {
  transform: scale(1.08);
}

/* Compact pillar row for homepage */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar-compact {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.pillar-compact:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-compact .pillar-icon {
  margin: 0 auto 0.75rem;
}

.pillar-compact h4 {
  margin-bottom: 0.3rem;
}

.pillar-compact p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--warm-gray);
}

/* Pillar illustration variant */
.pillar-compact--has-illustration {
  padding-top: 1.25rem;
}

.pillar-illustration {
  margin: 0 auto 0.75rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-svg {
  width: 64px;
  height: 64px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.pillar-compact:hover .pillar-svg {
  transform: scale(1.1);
}


/* -- NEWS CARDS ------------------------------------------------------------ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}

.news-card-thumb {
  background: var(--sage-pale);
  position: relative;
  overflow: hidden;
  height: 200px;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.news-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.news-source {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage);
}

.news-date {
  font-size: 0.72rem;
  color: var(--warm-gray);
}

.news-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--light-warm);
}

.news-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage);
  margin-top: auto;
}

.news-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.news-card:hover .news-link svg {
  transform: translateX(3px);
}

/* Featured news card (first/large) */
.news-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.news-card.featured .news-card-thumb {
  height: auto;
  min-height: 240px;
}

.news-card.featured .news-card-body {
  flex: 1;
  justify-content: center;
}

.news-card.featured h3 {
  font-size: 1.25rem;
}


/* -- TESTIMONIAL CAROUSEL -------------------------------------------------- */
.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-quote {
  position: relative;
  padding-left: 0;
}

.quote-mark {
  width: 32px;
  height: 32px;
  color: var(--sage-light);
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-quote p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-headshot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-pale);
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--charcoal);
  display: block;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
}

.carousel-btn:hover {
  background: var(--sage-pale);
  border-color: var(--sage-light);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--sage);
  transform: scale(1.25);
}

/* -- MEMBERS --------------------------------------------------------------- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

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

.member-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: var(--radius-sm);
  color: var(--warm-gray);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
}

.member-card h4 {
  font-size: 0.9rem;
}

.member-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--copper-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}


/* -- MEDIA TOOLKIT --------------------------------------------------------- */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.toolkit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.toolkit-preview {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.toolkit-preview.bg-sand { background: var(--sand); }
.toolkit-preview.bg-charcoal { background: var(--charcoal); }

.toolkit-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* Brandmark sizing */
.brandmark { display: inline-block; flex-shrink: 0; }
.brandmark.xl svg { width: 100px; height: 100px; }
.brandmark.lg svg { width: 96px; height: 96px; }
.brandmark.md svg { width: 48px; height: 48px; }
.brandmark.sm svg { width: 32px; height: 32px; }
.brandmark.xs svg { width: 22px; height: 22px; }

/* Wordmark — Bold Horizontal lockup */
.wordmark {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0;
  justify-content: center;
}
.wordmark .brandmark {
  grid-row: 1 / -1;
  align-self: center;
}
.wordmark-text-primary {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  width: fit-content;
}
.wordmark-text-sub {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  padding-top: 2px;
  width: fit-content;
}

.toolkit-info h4 {
  margin-bottom: 0.2rem;
}

.toolkit-info p {
  font-size: 0.78rem;
  color: var(--warm-gray);
}

/* Color swatches */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.swatch {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.swatch-color {
  height: 72px;
}

.swatch-info {
  padding: 0.6rem 0.75rem;
}

.swatch-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
}

.swatch-hex {
  font-size: 0.68rem;
  color: var(--warm-gray);
  font-family: var(--font-heading);
}


/* -- FORMS & JOIN ---------------------------------------------------------- */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-input::placeholder {
  color: var(--light-warm);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.75rem;
}

/* Success message */
.form-success {
  display: none;
  padding: 1.5rem;
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--sage);
  margin-bottom: 0.3rem;
}

.form-success p {
  color: var(--sage);
  margin: 0 auto;
}

/* Benefits list */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--charcoal);
}


/* -- CTA BANNER ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 0.4rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--sage);
  flex-shrink: 0;
}

.cta-banner .btn:hover {
  background: var(--sand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}


/* -- FOOTER ---------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand svg {
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4,
.footer-col .footer-heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.75rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

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


/* -- STAT GRID (for homepage or about) ------------------------------------- */
.stat-row {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
}


/* -- DIVIDER --------------------------------------------------------------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: var(--max-width);
}

/* Section divider — grows from center on scroll reveal */
.section-divider {
  height: 1px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--sage-light) 30%, var(--copper-light) 50%, var(--sage-light) 70%, transparent 100%);
  transform: translateX(-50%) scaleX(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-divider.revealed::before {
  transform: translateX(-50%) scaleX(1);
}


/* -- SKIP LINK ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 200;
  font-size: 0.85rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}


/* -- SCROLL ANIMATIONS ----------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* Directional reveal variants */
[data-reveal="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
}
[data-reveal="fade-right"] {
  opacity: 0;
  transform: translateX(30px);
}
[data-reveal="scale-up"] {
  opacity: 0;
  transform: scale(0.95);
}

[data-reveal="fade-left"].revealed,
[data-reveal="fade-right"].revealed,
[data-reveal="scale-up"].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children — each child animates sequentially */
[data-stagger-children] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

[data-stagger-children].revealed > *:nth-child(1)  { transition-delay: 0s; }
[data-stagger-children].revealed > *:nth-child(2)  { transition-delay: 0.08s; }
[data-stagger-children].revealed > *:nth-child(3)  { transition-delay: 0.16s; }
[data-stagger-children].revealed > *:nth-child(4)  { transition-delay: 0.24s; }
[data-stagger-children].revealed > *:nth-child(5)  { transition-delay: 0.32s; }
[data-stagger-children].revealed > *:nth-child(6)  { transition-delay: 0.4s; }
[data-stagger-children].revealed > *:nth-child(7)  { transition-delay: 0.48s; }
[data-stagger-children].revealed > *:nth-child(8)  { transition-delay: 0.56s; }

[data-stagger-children].revealed > * {
  opacity: 1;
  transform: translateY(0);
}


/* -- CARD CURSOR GLOW ----------------------------------------------------- */
.pillar-compact,
.news-card,
.member-card,
.pillar-card,
.toolkit-card {
  position: relative;
}

.pillar-compact::after,
.news-card::after,
.member-card::after,
.pillar-card::after,
.toolkit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  background: radial-gradient(
    400px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(0,0,0,0.045),
    transparent 65%
  );
}

.pillar-compact:hover::after,
.news-card:hover::after,
.member-card:hover::after,
.pillar-card:hover::after,
.toolkit-card:hover::after {
  opacity: 1;
}

/* Enhanced card hovers */
.pillar-compact:hover,
.news-card:hover,
.member-card:hover,
.pillar-card:hover {
  border-color: rgba(0,0,0,0.12);
}

.pillar-compact:hover .pillar-icon,
.pillar-card:hover .pillar-icon {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(74,124,89,0.2);
}

/* News card image hover */
.news-card-thumb img {
  transition: opacity 0.3s;
}

.news-card:hover .news-card-thumb img {
  opacity: 0.92;
}

.pillar-icon {
  transition: transform 0.3s, box-shadow 0.3s;
}


/* -- NAV SLIDING UNDERLINE ------------------------------------------------ */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--sage);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

.nav-transparent .nav-links a::after {
  background: var(--white);
}
.nav-transparent.scrolled .nav-links a::after {
  background: var(--sage);
}


/* -- MOBILE NAV STAGGER --------------------------------------------------- */
.mobile-nav.open a:nth-child(1) { animation: heroFadeUp 0.3s 0.05s both; }
.mobile-nav.open a:nth-child(2) { animation: heroFadeUp 0.3s 0.1s both; }
.mobile-nav.open a:nth-child(3) { animation: heroFadeUp 0.3s 0.15s both; }
.mobile-nav.open a:nth-child(4) { animation: heroFadeUp 0.3s 0.2s both; }
.mobile-nav.open a:nth-child(5) { animation: heroFadeUp 0.3s 0.25s both; }
.mobile-nav.open .btn           { animation: heroFadeUp 0.3s 0.3s both; }


/* -- BUTTON MICRO-INTERACTIONS -------------------------------------------- */
.btn:active {
  transform: scale(0.97);
}

.btn .arrow {
  transition: transform 0.2s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* Small button variant */
.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  gap: 0.35rem;
}

.btn-sm .arrow,
.btn-sm svg {
  width: 16px;
  height: 16px;
  max-width: none;
  flex-shrink: 0;
}


/* -- IMPACT STATS --------------------------------------------------------- */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.impact-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.impact-label {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Legacy stats-row fallback */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-family: var(--font-heading);
}


/* -- SCROLL PROGRESS BAR -------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--copper-light), var(--sky));
  z-index: 101;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
  will-change: transform;
}


/* -- ANIMATED GRADIENT TEXT ------------------------------------------------ */
.hero-brand-name {
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    rgba(255,255,255,0.6) 25%,
    var(--white) 50%,
    rgba(255,255,255,0.6) 75%,
    var(--white) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both, shimmerText 6s ease-in-out infinite 1.5s;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 200% center; }
}


/* -- SHIMMER TEXT --------------------------------------------------------- */
.shimmer-text {
  background: linear-gradient(
    90deg,
    currentColor 0%,
    currentColor 40%,
    var(--sage-light) 50%,
    currentColor 60%,
    currentColor 100%
  );
  background-size: 200% 100%;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-reveal].revealed .shimmer-text,
[data-stagger-children].revealed .shimmer-text {
  animation: shimmerOnce 1.8s 0.4s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes shimmerOnce {
  0%   { background-position: 100% center; }
  100% { background-position: -100% center; }
}


/* -- ANIMATED DIVIDERS ---------------------------------------------------- */
.divider {
  position: relative;
  overflow: hidden;
}

.divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--sage-light), var(--copper-light), transparent);
  animation: dividerSlide 4s ease-in-out infinite;
}

@keyframes dividerSlide {
  0%   { left: -50%; }
  100% { left: 100%; }
}


/* -- CARD TILT ON HOVER --------------------------------------------------- */
.pillar-compact,
.news-card,
.member-card,
.pillar-card {
  perspective: 600px;
}

.pillar-compact:hover,
.news-card:hover,
.member-card:hover,
.pillar-card:hover {
  transform: translateY(-2px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}



/* -- SECTION LABEL ACCENT LINE -------------------------------------------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--sage);
  border-radius: 1px;
  flex-shrink: 0;
}


/* -- REDUCED MOTION ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="fade-left"],
  [data-reveal="fade-right"],
  [data-reveal="scale-up"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  [data-stagger-children] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::before {
    animation: none;
  }
  .hero-brand,
  .hero-tagline,
  .hero-sub,
  .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-brand-name {
    animation: none;
    opacity: 1;
    -webkit-text-fill-color: var(--white);
    background: none;
  }
  .word-reveal .word {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .divider::after {
    animation: none;
    display: none;
  }
  .section-divider::before {
    transform: translateX(-50%) scaleX(1);
    transition: none;
  }
  .shimmer-text {
    animation: none !important;
    -webkit-text-fill-color: currentColor;
    background: none;
  }
  .mobile-nav.open a,
  .mobile-nav.open .btn {
    animation: none;
  }
  body {
    transition: none;
  }
}


/* -- RESPONSIVE ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .pillars-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .form-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .news-card.featured {
    flex-direction: column;
  }

  .news-card.featured .news-card-thumb {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-lg {
    padding: 4.5rem 0;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + 2rem);
  }

  .hero-inner {
    padding-bottom: 3rem;
  }

  .hero-brand svg {
    width: 180px;
    height: 180px;
  }

  .hero-brand-name {
    font-size: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Grids */
  .pillars-grid,
  .pillars-row {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cta-banner p {
    margin: 0 auto;
  }

  .stat-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-item {
    min-width: 120px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .hero-brand svg {
    width: 140px;
    height: 140px;
  }

  .hero-brand-name {
    font-size: 2.4rem;
  }

  .impact-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
