:root {
  --orange: #B35000;
  --orange-light: #D4600A;
  --charcoal: #111111;
  --slate: #1B2A3B;
  --warm-gray: #F5F3F0;
  --off-white: #FAF9F7;
  --white: #FFFFFF;
  --border: #E2DDD8;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #696969;
  --dac-teal: #005F73;
  --dac-teal-light: #0A7A91;
  --dac-green: #1B6B3A;
  --dac-blue: #1B4F8A;
  --dac-accessible: #0057B7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-primary); background: var(--white); overflow-x: hidden; }

/* ── SYSTEM BAR ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #111111 0%, #1B2A3B 50%, #111111 100%);
  color: #fff;
  padding: 4.5rem 3rem 4rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
@media (max-width: 780px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,95,115,0.25); border: 1px solid rgba(0,95,115,0.5);
  color: #7fd4e0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-badge::before { content: '♿'; font-size: 0.75rem; }
.hero-title { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; }
.hero-title .dac-accent { color: #7fd4e0; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 530px; line-height: 1.65; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-light); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.7rem 1.5rem; border-radius: 6px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Hero stat chips */
.hero-stats { display: flex; flex-direction: column; gap: 0.9rem; min-width: 200px; }
.hero-stat {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 1rem 1.25rem; text-align: center;
}
.hero-stat-num { font-size: 1.9rem; font-weight: 800; color: #7fd4e0; line-height: 1; }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }

/* ── QUICK LAUNCH ── */
section.quick-launch {
  background: var(--charcoal);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ql-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.ql-label { color: rgba(255,255,255,0.62); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-right: 0.5rem; white-space: nowrap; }
.ql-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px; text-decoration: none;
  color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500;
  transition: all 0.15s;
}
.ql-link:hover { background: rgba(255,255,255,0.13); color: #fff; }
.ql-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ── SHARED ── */
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--charcoal); margin-bottom: 0.65rem; }
.section-sub { font-size: 0.95rem; color: var(--text-secondary); max-width: 660px; line-height: 1.65; margin-bottom: 2.5rem; }

/* ── APPROACH ── */
section.approach-section {
  background: var(--white);
  padding: 4.5rem 2rem;
}
.approach-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
@media (max-width: 820px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-prose p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }
.approach-prose p:last-child { margin-bottom: 0; }
.approach-prose strong { color: var(--text-primary); font-weight: 600; }

/* Sidebar */
.approach-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; background: var(--white);
}
.sidebar-card-img {
  width: 100%; height: 160px; object-fit: cover;
  background: linear-gradient(135deg, #1B2A3B 0%, #243447 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.sidebar-card-body { padding: 1.25rem; }
.sidebar-card-title { font-size: 0.95rem; font-weight: 700; color: var(--dac-teal); margin-bottom: 0.4rem; }
.sidebar-card-text { font-size: 0.81rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1rem; }
.sidebar-link {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--orange); text-decoration: none;
  border: 1px solid var(--orange); border-radius: 6px;
  padding: 0.45rem 1rem; transition: all 0.2s;
}
.sidebar-link:hover { background: var(--orange); color: #fff; }

/* ── SERVICES ── */
section.services-section {
  background: var(--warm-gray);
  padding: 4.5rem 2rem;
}
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .services-split { grid-template-columns: 1fr; } }
.services-col-head {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  margin-bottom: 1.25rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.service-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.service-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-item-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.4rem; }
.service-icon {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0; margin-top: 0.05rem;
}
.service-item h3 { font-size: 0.92rem; font-weight: 700; color: var(--dac-teal); line-height: 1.3; }
.service-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin-left: 2.5rem; }

/* Policy card */
.policy-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--dac-teal);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.policy-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.policy-card p { font-size: 0.81rem; color: var(--text-secondary); line-height: 1.6; }
.policy-card a { color: var(--dac-teal); text-decoration: none; font-weight: 500; }
.policy-card a:hover { text-decoration: underline; }
.policy-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.15rem 0.55rem; border-radius: 3px;
  background: #e6f4f6; color: var(--dac-teal); margin-bottom: 0.6rem;
}
.wcag-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.wcag-chip {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.65rem; border-radius: 4px;
  background: #e6f4f6; color: var(--dac-teal); border: 1px solid rgba(0,95,115,0.2);
}

/* ── TRAINING ── */
section.training-section {
  background: var(--slate);
  padding: 4.5rem 2rem;
  color: #fff;
}
.training-header { margin-bottom: 2.5rem; }
.training-header .section-label { color: #7fd4e0; }
.training-header .section-title { color: #fff; }
.training-header .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 720px) { .training-grid { grid-template-columns: 1fr; } }
.training-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.75rem;
}
.training-card-icon { font-size: 1.5rem; margin-bottom: 0.85rem; }
.training-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.training-card p { font-size: 0.82rem; color: rgba(255,255,255,0.68); line-height: 1.6; }
.training-card ul { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.training-card ul li { font-size: 0.81rem; color: rgba(255,255,255,0.65); padding-left: 1rem; position: relative; }
.training-card ul li::before { content: '·'; position: absolute; left: 0.2rem; color: #7fd4e0; font-weight: 700; }

/* Training contact sidebar */
.training-inner { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; margin-top: 2.5rem; }
@media (max-width: 820px) { .training-inner { grid-template-columns: 1fr; } }
.training-cards-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: rgba(0,95,115,0.2); border: 1px solid rgba(0,95,115,0.35);
  border-radius: 10px; padding: 1.75rem; height: fit-content;
}
.contact-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.contact-card p { font-size: 0.83rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.25rem; }
.btn-contact {
  display: inline-block; background: var(--orange); color: #fff;
  padding: 0.65rem 1.25rem; border-radius: 6px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: opacity 0.2s;
}
.btn-contact:hover { opacity: 0.88; }
.btn-teams {
  display: inline-block; background: rgba(98,100,167,0.3); color: #fff;
  border: 1px solid rgba(98,100,167,0.5);
  padding: 0.65rem 1.25rem; border-radius: 6px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  margin-top: 0.6rem; transition: all 0.2s;
  display: block;
}
.btn-teams:hover { background: rgba(98,100,167,0.5); }

/* ── ALLY CALLOUT ── */
section.ally-callout {
  background: var(--charcoal);
  padding: 3rem 2rem;
}
.ally-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center;
}
@media (max-width: 700px) { .ally-inner { grid-template-columns: 1fr; } }
.ally-eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #7fd4e0; margin-bottom: 0.5rem; }
.ally-title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.ally-sub { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 600px; }
.ally-sub strong { color: rgba(255,255,255,0.9); }
.ally-actions { display: flex; flex-direction: column; gap: 0.65rem; align-items: flex-start; }
.btn-ally {
  background: var(--dac-teal); color: #fff;
  padding: 0.65rem 1.4rem; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 0.88rem;
  transition: opacity 0.2s; white-space: nowrap;
}
.btn-ally:hover { opacity: 0.88; }
.btn-ally-outline {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.65rem 1.4rem; border-radius: 6px;
  text-decoration: none; font-weight: 500; font-size: 0.88rem;
  transition: all 0.2s; white-space: nowrap;
}
.btn-ally-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── RESOURCES ── */
section.resources-section {
  background: var(--off-white);
  padding: 4.5rem 2rem;
}
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.resource-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.resource-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.resource-card-thumb {
  height: 100px; background: linear-gradient(135deg, var(--slate) 0%, var(--dac-teal) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  flex-shrink: 0;
}
.resource-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.resource-card-title { font-size: 0.92rem; font-weight: 700; color: var(--dac-teal); margin-bottom: 0.4rem; }
.resource-card-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; flex: 1; }
.resource-ext {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 600; color: var(--orange);
  margin-top: 0.85rem; text-decoration: none;
}

/* ── SUPPORT TRIPTYCH ── */
section.support-section {
  background: var(--white);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.support-card {
  text-align: center; padding: 2rem 1.5rem;
  border: 1px solid var(--border); border-radius: 10px;
  transition: box-shadow 0.2s;
}
.support-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.support-icon { font-size: 2rem; margin-bottom: 1rem; }
.support-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.support-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1.25rem; }
.support-link {
  display: inline-block; font-size: 0.84rem; font-weight: 600;
  color: var(--orange); text-decoration: none;
  border: 1px solid var(--orange); border-radius: 6px;
  padding: 0.5rem 1.1rem; transition: all 0.2s;
}
.support-link:hover { background: var(--orange); color: #fff; }

/* ── FOOTER ── */
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.81rem; text-decoration: none; margin-bottom: 0.4rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
