/* ============================================================
   ANOTHER CHANCE CSI — Brand Design System
   Color Palette: Deep Purple + Crimson Red + Warm Cream
   Extracted from the Another Chance CSI logo:
     — Deep Purple #5B1E7A  (CHANCE banner)
     — Crimson Red #C41230  (swoosh checkmark)
     — Near-black  #1A1A1A  (letter A)
   Typography: ClashDisplay headings + Inter body
   ============================================================ */

:root {
  /* Brand Colors — Logo-derived */
  --ac-teal:        #5B1E7A;  /* Deep Purple — primary brand */
  --ac-teal-dark:   #3D1254;  /* Deeper purple — overlays, hover */
  --ac-teal-mid:    #7A2FAD;  /* Medium purple — variation */
  --ac-teal-light:  #F0E8F8;  /* Light purple tint — card bgs */
  --ac-teal-soft:   #D4B0E8;  /* Soft purple — decorative */
  --ac-amber:       #C41230;  /* Crimson Red — accent, CTAs */
  --ac-amber-dark:  #9E0E24;  /* Dark red — hover states */
  --ac-amber-light: #FDE8EC;  /* Light red tint — backgrounds */
  --ac-cream:       #FAF8F5;  /* Warm off-white — page bg */
  --ac-white:       #FFFFFF;
  --ac-charcoal:    #1A1A1A;  /* Near-black — logo A color */
  --ac-text:        #3D3545;  /* Purple-tinted dark text */
  --ac-text-muted:  #6B6480;  /* Purple-tinted muted text */
  --ac-border:      #E8E0F0;  /* Purple-tinted border */

  /* Typography */
  --ac-font-heading: 'ClashDisplay-Bold', 'ClashDisplay-Semibold', sans-serif;
  --ac-font-body:    'Inter', sans-serif;

  /* Spacing */
  --ac-section-pt: 100px;
  --ac-section-pb: 100px;
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ac-site {
  font-family: var(--ac-font-body);
  color: var(--ac-text);
  background-color: var(--ac-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.ac-preloader,
#preloader {
  position: fixed;
  inset: 0;
  background: var(--ac-cream) !important;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.ac-preloader.loaded,
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
/* Kill template spinner that comes from main.css */
#preloader .preloader { display: none; }
.ac-preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ac-preloader-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 32px;
  animation: plFadeIn .5s ease forwards;
}
@keyframes plFadeIn {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
/* Legacy text logo (fallback) */
.ac-preloader-logo {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 28px;
  color: var(--ac-teal);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.ac-preloader-logo span { color: var(--ac-amber); }
.ac-preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(91,30,122,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.ac-preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ac-teal), #9E2CC0, var(--ac-amber));
  border-radius: 2px;
  animation: preload 1.4s ease forwards;
}
@keyframes preload {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.ac-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--ac-teal);
  color: var(--ac-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .3s ease;
  z-index: 999;
}
.ac-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ac-back-top:hover {
  background: var(--ac-amber);
  transform: translateY(-3px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.ac-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  /* Always white — no transparent-over-hero state */
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow .4s ease, border-color .4s ease;
}
.ac-nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px rgba(91,30,122,0.09);
  border-bottom-color: transparent;
}
.ac-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1440px;
  margin: 0 auto;
}
.ac-nav.scrolled .ac-nav-inner { height: 68px; }

/* Logo image */
.ac-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ac-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.ac-nav.scrolled .ac-logo-img { height: 40px; }

/* Legacy text logo styles (kept for fallback) */
.ac-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--ac-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 18px;
  color: var(--ac-white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.ac-logo-text { line-height: 1.1; }
.ac-logo-text .line1 {
  display: block;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 15px;
  color: var(--ac-teal);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ac-logo-text .line2 {
  display: block;
  font-family: var(--ac-font-body);
  font-size: 10px;
  color: var(--ac-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop Nav Menu */
.ac-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ac-nav-menu > li > a {
  display: block;
  padding: 8px 16px;
  font-family: var(--ac-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ac-charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
}
.ac-nav-menu > li > a:hover,
.ac-nav-menu > li > a.active {
  color: var(--ac-teal);
  background: var(--ac-teal-light);
}

/* Nav CTA buttons */
.ac-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ac-btn-nav-ghost {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ac-teal);
  background: transparent;
  border: 1.5px solid var(--ac-teal);
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.ac-btn-nav-ghost:hover {
  background: var(--ac-teal);
  color: var(--ac-white);
}
.ac-btn-nav-solid {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ac-white);
  background: var(--ac-amber);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.ac-btn-nav-solid:hover {
  background: var(--ac-amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196,18,48,0.3);
}

/* Mobile hamburger */
.ac-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.ac-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ac-charcoal);
  border-radius: 2px;
  transition: all .3s ease;
}
.ac-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ac-hamburger.open span:nth-child(2) { opacity: 0; }
.ac-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.ac-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ac-teal-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 60px;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.76,0,.24,1);
}
.ac-mobile-menu.open { transform: translateX(0); }
.ac-mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ac-mobile-menu nav ul li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ac-mobile-menu nav ul li a {
  display: block;
  padding: 18px 0;
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 32px;
  color: var(--ac-white);
  text-decoration: none;
  transition: color .2s;
}
.ac-mobile-menu nav ul li a:hover { color: var(--ac-amber); }
.ac-mobile-menu-footer {
  margin-top: auto;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ac-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--ac-teal);
  color: var(--ac-white);
  font-family: var(--ac-font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}
.ac-btn-primary:hover {
  background: var(--ac-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91,30,122,0.25);
  color: var(--ac-white);
}
.ac-btn-primary .btn-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.ac-btn-primary:hover .btn-arrow { transform: rotate(45deg); }

.ac-btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--ac-amber);
  color: var(--ac-white);
  font-family: var(--ac-font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}
.ac-btn-amber:hover {
  background: var(--ac-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,18,48,0.35);
  color: var(--ac-white);
}
.ac-btn-amber .btn-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.ac-btn-amber:hover .btn-arrow { transform: rotate(45deg); }

.ac-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ac-teal);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--ac-teal);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}
.ac-btn-outline:hover {
  background: var(--ac-teal);
  color: var(--ac-white);
  transform: translateY(-2px);
}

.ac-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--ac-white);
  color: var(--ac-teal);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}
.ac-btn-white:hover {
  background: var(--ac-amber);
  color: var(--ac-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.ac-section {
  padding: var(--ac-section-pt) 0 var(--ac-section-pb);
}
.ac-section-sm { padding: 60px 0; }
.ac-section-lg { padding: 140px 0; }

.ac-bg-cream  { background-color: var(--ac-cream); }
.ac-bg-teal   { background-color: var(--ac-teal); }
.ac-bg-teal-light { background-color: var(--ac-teal-light); }
.ac-bg-white  { background-color: var(--ac-white); }

.ac-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.ac-container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.ac-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-amber);
  margin-bottom: 16px;
}
.ac-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ac-amber);
  border-radius: 2px;
}
.ac-eyebrow.white { color: rgba(255,255,255,0.7); }
.ac-eyebrow.white::before { background: rgba(255,255,255,0.5); }

.ac-section-title {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  color: var(--ac-charcoal);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.ac-section-title.white { color: var(--ac-white); }
.ac-section-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--ac-amber);
}

.ac-section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ac-text-muted);
  max-width: 560px;
}
.ac-section-subtitle.white { color: rgba(255,255,255,0.75); }
.ac-section-subtitle.wide { max-width: 720px; }

.ac-divider {
  width: 56px;
  height: 3px;
  background: var(--ac-amber);
  border-radius: 3px;
  margin: 20px 0 32px;
}
.ac-divider.center { margin: 20px auto 32px; }

/* ============================================================
   HERO SECTION — Full-Width Community Photo + Dark Overlay
   hero.png covers the full section; content sits over overlay
   ============================================================ */
.ac-hero {
  position: relative;
  min-height: 100vh;
  background-color: #14082A;          /* deep purple fallback */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Primary dark-purple overlay — ensures text readability */
.ac-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 6, 22, 0.40) 0%,
    rgba(50, 14, 72, 0.82) 50%,
    rgba(14, 6, 22, 0.88) 100%
  );
  z-index: 1;
}

/* Brand accent glow — subtle red shimmer top-right */
.ac-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,18,48,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

/* Legacy bg/overlay divs — not used */
.ac-hero-bg { display: none; }
.ac-hero-overlay { display: none; }

/* ── Content wrapper — above both overlays ── */
.ac-hero-content {
  position: relative;
  z-index: 3;
  padding: 160px 0 100px;
  text-align: center;
}

/* Eyebrow badge pill */
.ac-hero-eyebrow { display: none; }
.ac-hero-eyebrow-dot { display: none; }

/* Main headline */
.ac-hero-title {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.0;
  color: var(--ac-white);
  margin: 0 0 28px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* Red decorative rule — echoes logo swoosh */
.ac-hero-title-line {
  display: block;
  width: 80px;
  height: 5px;
  background: var(--ac-amber);
  border-radius: 5px;
  margin: 18px auto;
}

/* Brand name — crimson red italic */
.ac-hero-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--ac-amber);
  font-size: 0.92em;
  display: block;
  letter-spacing: -0.02em;
}

.ac-hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 44px;
}

.ac-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}

/* Ghost link CTA */
.ac-hero-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.30);
  padding-bottom: 3px;
  transition: all .25s ease;
}
.ac-hero-ghost-link:hover {
  color: var(--ac-white);
  border-bottom-color: var(--ac-amber);
  gap: 14px;
}

/* Stats row */
.ac-hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 680px;
  margin: 0 auto;
}
.ac-hero-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ac-hero-stat:last-child { border-right: none; }
.ac-hero-stat h3 {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 40px;
  color: var(--ac-white);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ac-hero-stat h3 span { color: var(--ac-amber); }
.ac-hero-stat p {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Scroll indicator */
.ac-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.ac-scroll-indicator svg { opacity: 0.5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ac-marquee-section {
  background: var(--ac-amber);
  padding: 16px 0;
  overflow: hidden;
}
.ac-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.ac-marquee-track:hover { animation-play-state: paused; }
.ac-marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 15px;
  color: var(--ac-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ac-marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MISSION STATEMENT
   ============================================================ */
.ac-mission {
  padding: 120px 0;
  background: var(--ac-white);
}
.ac-mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--ac-charcoal);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
}
.ac-mission-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 120px;
  color: var(--ac-teal-soft);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.35;
}
.ac-mission-source {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-amber);
}

/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.ac-impact {
  padding: 80px 0;
  background: var(--ac-teal);
}
.ac-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ac-impact-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ac-impact-item:last-child { border-right: none; }
.ac-impact-number {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  color: var(--ac-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.ac-impact-number span { color: var(--ac-amber); }
.ac-impact-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.ac-about {
  padding: 120px 0;
  background: var(--ac-cream);
}
.ac-about-img-wrap { position: relative; }
.ac-about-img-main {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 580px;
}
.ac-about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  border: 6px solid var(--ac-white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.ac-about-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--ac-amber);
  color: var(--ac-white);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(196,18,48,0.3);
}
.ac-about-badge .badge-year {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 32px;
  line-height: 1;
  display: block;
}
.ac-about-badge .badge-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.ac-about-content { padding-left: 60px; }
.ac-about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.ac-value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--ac-white);
  border-radius: 10px;
  border: 1px solid var(--ac-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--ac-charcoal);
  transition: all .25s ease;
}
.ac-value-chip:hover {
  border-color: var(--ac-teal-soft);
  box-shadow: 0 4px 16px rgba(91,30,122,0.08);
}
.ac-value-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ac-teal);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.ac-services {
  padding: 120px 0;
  background: var(--ac-white);
}
.ac-services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.ac-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ac-service-card {
  padding: 36px 32px;
  background: var(--ac-white);
  border: 1px solid var(--ac-border);
  border-radius: 20px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.ac-service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--ac-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.ac-service-card:hover {
  box-shadow: 0 20px 60px rgba(91,30,122,0.1);
  transform: translateY(-6px);
  border-color: transparent;
}
.ac-service-card:hover::before { transform: scaleX(1); }
.ac-service-icon {
  width: 56px;
  height: 56px;
  background: var(--ac-teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ac-teal);
  font-size: 24px;
  transition: all .3s ease;
}
.ac-service-card:hover .ac-service-icon {
  background: var(--ac-teal);
  color: var(--ac-white);
}
.ac-service-name {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 20px;
  color: var(--ac-charcoal);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.ac-service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0;
}
.ac-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ac-teal);
  text-decoration: none;
  transition: gap .2s;
}
.ac-service-link:hover { gap: 10px; color: var(--ac-teal); }
.ac-service-link svg { transition: transform .2s; }
.ac-service-link:hover svg { transform: translateX(3px); }

/* ============================================================
   INSURANCE / PROGRAMS ACCEPTED
   ============================================================ */
.ac-insurance {
  padding: 80px 0;
  background: var(--ac-teal-light);
}
.ac-insurance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.ac-insurance-pill {
  padding: 10px 22px;
  background: var(--ac-white);
  border: 1.5px solid var(--ac-teal-soft);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ac-teal);
  letter-spacing: 0.02em;
  transition: all .2s;
}
.ac-insurance-pill:hover {
  background: var(--ac-teal);
  color: var(--ac-white);
  border-color: var(--ac-teal);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS / STORIES
   ============================================================ */
.ac-stories {
  padding: 120px 0;
  background: var(--ac-cream);
}
.ac-story-card {
  background: var(--ac-white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ac-story-card::after {
  content: '\201D';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 100px;
  color: var(--ac-teal-soft);
  line-height: 1;
  opacity: 0.35;
}
.ac-story-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ac-charcoal);
  margin: 0 0 32px;
  font-style: italic;
}
.ac-story-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ac-story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ac-teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 18px;
  color: var(--ac-teal);
  flex-shrink: 0;
}
.ac-story-author-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ac-charcoal);
  margin: 0;
}
.ac-story-author-role {
  font-size: 13px;
  color: var(--ac-text-muted);
  margin: 2px 0 0;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.ac-process {
  padding: 120px 0;
  background: var(--ac-white);
}
.ac-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.ac-process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: var(--ac-border);
  z-index: 0;
}
.ac-step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ac-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ac-teal-light);
  border: 2px solid var(--ac-teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 24px;
  color: var(--ac-teal);
  transition: all .3s ease;
}
.ac-step-card:hover .ac-step-num {
  background: var(--ac-teal);
  color: var(--ac-white);
  border-color: var(--ac-teal);
  transform: scale(1.1);
}
.ac-step-title {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 18px;
  color: var(--ac-charcoal);
  margin: 0 0 10px;
}
.ac-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ac-text-muted);
  margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.ac-cta {
  padding: 100px 0;
  background: var(--ac-teal);
  position: relative;
  overflow: hidden;
}
.ac-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,18,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ac-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.ac-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ac-cta-title {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ac-white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.ac-cta-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--ac-amber);
}
.ac-cta-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 48px;
}
.ac-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ac-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: transparent;
  color: var(--ac-white);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  text-decoration: none;
  transition: all .3s ease;
}
.ac-btn-cta-ghost:hover {
  border-color: var(--ac-white);
  background: rgba(255,255,255,0.1);
  color: var(--ac-white);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.ac-team {
  padding: 120px 0;
  background: var(--ac-cream);
}
.ac-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.ac-team-card {
  background: var(--ac-white);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s ease;
}
.ac-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(91,30,122,0.12);
}
.ac-team-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ac-teal-light);
}
.ac-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ac-team-card:hover .ac-team-img-wrap img { transform: scale(1.05); }
.ac-team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 48px;
  color: var(--ac-teal);
  background: linear-gradient(135deg, var(--ac-teal-light), var(--ac-teal-soft));
}
.ac-team-info { padding: 24px; }
.ac-team-name {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 18px;
  color: var(--ac-charcoal);
  margin: 0 0 4px;
}
.ac-team-role {
  font-size: 13px;
  color: var(--ac-amber-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.ac-careers { padding: 120px 0; background: var(--ac-white); }
.ac-job-card {
  background: var(--ac-white);
  border: 1px solid var(--ac-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transition: all .3s ease;
}
.ac-job-card:hover {
  border-color: var(--ac-teal-soft);
  box-shadow: 0 12px 40px rgba(91,30,122,0.08);
  transform: translateX(4px);
}
.ac-job-title {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 22px;
  color: var(--ac-charcoal);
  margin: 0 0 8px;
}
.ac-job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ac-job-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ac-job-tag.type {
  background: var(--ac-teal-light);
  color: var(--ac-teal);
}
.ac-job-tag.location {
  background: var(--ac-amber-light);
  color: var(--ac-amber-dark);
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.ac-events { padding: 120px 0; background: var(--ac-cream); }
.ac-event-card {
  background: var(--ac-white);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 20px;
  transition: all .3s ease;
  border: 1px solid var(--ac-border);
}
.ac-event-card:hover {
  box-shadow: 0 16px 48px rgba(91,30,122,0.1);
  transform: translateY(-4px);
}
.ac-event-date {
  width: 90px;
  background: var(--ac-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  flex-shrink: 0;
}
.ac-event-day {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 40px;
  color: var(--ac-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ac-event-month {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ac-event-body { padding: 28px 32px; }
.ac-event-title {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 20px;
  color: var(--ac-charcoal);
  margin: 0 0 8px;
}
.ac-event-desc {
  font-size: 15px;
  color: var(--ac-text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.ac-event-info {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--ac-text-muted);
  align-items: center;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ac-contact { padding: 120px 0; background: var(--ac-white); }
.ac-contact-form-wrap {
  background: var(--ac-cream);
  border-radius: 24px;
  padding: 56px;
}
.ac-form-group { margin-bottom: 24px; }
.ac-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ac-charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ac-form-input,
.ac-form-select,
.ac-form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--ac-white);
  border: 1.5px solid var(--ac-border);
  border-radius: 10px;
  font-family: var(--ac-font-body);
  font-size: 15px;
  color: var(--ac-charcoal);
  transition: border .25s, box-shadow .25s;
  outline: none;
  appearance: none;
}
.ac-form-input:focus,
.ac-form-select:focus,
.ac-form-textarea:focus {
  border-color: var(--ac-teal);
  box-shadow: 0 0 0 3px rgba(91,30,122,0.1);
}
.ac-form-textarea {
  height: 140px;
  resize: vertical;
}
.ac-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ac-border);
}
.ac-contact-info-item:last-child { border-bottom: none; }
.ac-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--ac-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ac-teal);
  flex-shrink: 0;
}
.ac-contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-text-muted);
  margin: 0 0 4px;
}
.ac-contact-info-value {
  font-size: 16px;
  color: var(--ac-charcoal);
  font-weight: 500;
  margin: 0;
}
.ac-contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.ac-contact-info-value a:hover { color: var(--ac-teal); }

/* ============================================================
   FOUNDATION SECTION
   ============================================================ */
.ac-foundation {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ac-teal-dark) 0%, var(--ac-teal) 100%);
  position: relative;
  overflow: hidden;
}
.ac-foundation::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,18,48,0.1) 0%, transparent 70%);
}

/* ============================================================
   PAGE HEADER (breadcrumb pages)
   ============================================================ */
.ac-page-header {
  padding: 160px 0 80px;
  background: var(--ac-teal-dark);
  position: relative;
  overflow: hidden;
}
.ac-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--ac-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.ac-page-header.cream::after { background: var(--ac-cream); }
.ac-page-title {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--ac-white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.ac-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.ac-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s;
}
.ac-breadcrumb a:hover { color: var(--ac-amber); }
.ac-breadcrumb .sep { opacity: 0.4; }
.ac-breadcrumb .current { color: var(--ac-amber); }

/* ============================================================
   FOOTER
   ============================================================ */
.ac-footer {
  background: var(--ac-charcoal);
  padding: 80px 0 0;
}
.ac-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Footer logo image */
.ac-footer .ac-logo-img {
  height: 52px;
  width: auto;
  /* Logo has black A — add subtle white glow to make visible on dark bg */
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)) drop-shadow(0 0 2px rgba(255,255,255,0.15));
  margin-bottom: 4px;
}

/* Legacy footer text logo */
.ac-footer-logo-wrap .ac-logo-mark {
  background: var(--ac-teal);
  width: 48px;
  height: 48px;
  font-size: 20px;
}
.ac-footer-logo-wrap .ac-logo-text .line1 { color: var(--ac-white); font-size: 17px; }
.ac-footer-logo-wrap .ac-logo-text .line2 { color: rgba(255,255,255,0.4); }

.ac-footer-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 28px;
  max-width: 300px;
}
.ac-footer-social {
  display: flex;
  gap: 10px;
}
.ac-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all .25s ease;
}
.ac-footer-social a:hover {
  background: var(--ac-teal);
  color: var(--ac-white);
  border-color: var(--ac-teal);
  transform: translateY(-2px);
}
.ac-footer-col-title {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 14px;
  color: var(--ac-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.ac-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ac-footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .2s;
}
.ac-footer-links li a:hover { color: var(--ac-amber); }
.ac-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.ac-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--ac-amber); }
.ac-footer-contact-item a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .2s;
}
.ac-footer-contact-item a:hover { color: var(--ac-amber); }
.ac-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.ac-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.ac-footer-legal {
  display: flex;
  gap: 20px;
}
.ac-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color .2s;
}
.ac-footer-legal a:hover { color: var(--ac-amber); }

/* ============================================================
   PROGRAM DETAIL CARDS (Services page)
   ============================================================ */
.ac-program-detail { padding: 120px 0; }
.ac-program-detail:nth-child(even) { background: var(--ac-cream); }
.ac-program-detail:nth-child(odd)  { background: var(--ac-white); }
.ac-program-icon-lg {
  width: 80px;
  height: 80px;
  background: var(--ac-teal-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--ac-teal);
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.ac-accordion-item {
  border-bottom: 1px solid var(--ac-border);
}
.ac-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.ac-accordion-title {
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-size: 18px;
  color: var(--ac-charcoal);
  margin: 0;
}
.ac-accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ac-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
  color: var(--ac-teal);
}
.ac-accordion-item.open .ac-accordion-icon {
  background: var(--ac-teal);
  color: var(--ac-white);
  border-color: var(--ac-teal);
  transform: rotate(45deg);
}
.ac-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.ac-accordion-item.open .ac-accordion-content { max-height: 500px; }
.ac-accordion-body {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ac-text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-ac-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-ac-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}
[data-ac-delay="100"] { transition-delay: 0.1s; }
[data-ac-delay="150"] { transition-delay: 0.15s; }
[data-ac-delay="200"] { transition-delay: 0.2s; }
[data-ac-delay="300"] { transition-delay: 0.3s; }
[data-ac-delay="400"] { transition-delay: 0.4s; }
[data-ac-delay="450"] { transition-delay: 0.45s; }
[data-ac-delay="500"] { transition-delay: 0.5s; }
[data-ac-delay="600"] { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .ac-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-team-grid { grid-template-columns: repeat(3, 1fr); }
  .ac-footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .ac-about-content { padding-left: 40px; }
}

@media (max-width: 991px) {
  :root {
    --ac-section-pt: 80px;
    --ac-section-pb: 80px;
  }
  .ac-nav-menu, .ac-nav-actions { display: none; }
  .ac-hamburger { display: flex; }
  .ac-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-process-steps { grid-template-columns: repeat(2, 1fr); }
  .ac-process-steps::before { display: none; }
  .ac-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-about-content { padding-left: 0; margin-top: 40px; }
  .ac-about-img-accent { display: none; }
  .ac-footer-top { grid-template-columns: 1fr 1fr; }
  .ac-contact-form-wrap { padding: 40px; }
  .ac-hero-trust-badge { right: 0; }
}

@media (max-width: 767px) {
  :root {
    --ac-section-pt: 60px;
    --ac-section-pb: 60px;
  }
  .ac-nav { padding: 0 20px; }
  .ac-container { padding: 0 20px; }
  .ac-container-narrow { padding: 0 20px; }
  .ac-services-grid { grid-template-columns: 1fr; }
  .ac-team-grid { grid-template-columns: 1fr 1fr; }
  .ac-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ac-process-steps { grid-template-columns: 1fr; }
  .ac-hero-actions { flex-direction: column; align-items: center; }
  .ac-hero-stat-row { gap: 24px; }
  .ac-footer-top { grid-template-columns: 1fr; gap: 40px; }
  .ac-footer-bottom { flex-direction: column; text-align: center; }
  .ac-about-badge { display: none; }
  .ac-event-card { grid-template-columns: 1fr; }
  .ac-event-date { width: 100%; padding: 16px; flex-direction: row; gap: 8px; justify-content: center; }
  .ac-event-day { font-size: 28px; }
  .ac-contact-form-wrap { padding: 28px 20px; }
  .ac-cta-actions { flex-direction: column; align-items: center; }
  .ac-mobile-menu { padding: 100px 20px 40px; }
  .ac-mobile-menu nav ul li a { font-size: 24px; }
  .ac-hero-title { font-size: clamp(40px, 10vw, 64px); }
  .ac-page-header { padding: 140px 0 60px; }
  .ac-services-header { flex-direction: column; align-items: flex-start; }
  .ac-hero-trust-badge { display: none; }
}

@media (max-width: 479px) {
  .ac-team-grid { grid-template-columns: 1fr; }
  .ac-about-values { grid-template-columns: 1fr; }
}
