/* ===========================================================
   Fayetteville PACT — Shared Stylesheet
   Brand: orange #fc650c / #fc7221, dark ink, warm neutrals
   Design principle: condensed, efficient use of space.
   Images are capped at their native pixel size so they never
   upscale (upscaling is what caused blurriness).
   =========================================================== */
:root {
  --orange: #fc650c;
  --orange-light: #fc7221;
  --orange-dark: #ad5724;
  --ink: #1c1c1e;
  --ink-soft: #3a3a3a;
  --muted: #6b6f76;
  --line: #ececec;
  --bg: #ffffff;
  --bg-soft: #faf7f4;
  --bg-dark: #161310;
  --radius: 14px;
  --shadow-sm: 0 3px 10px rgba(0,0,0,.05);
  --shadow-md: 0 12px 32px rgba(0,0,0,.09);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display { font-family: 'Sora', 'Inter', sans-serif; color: var(--ink); line-height: 1.15; letter-spacing: -.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; line-height: 1;
  padding: 12px 22px; border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(252,101,12,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(252,101,12,.38); background: var(--orange-light); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-light { background: #fff; color: var(--orange-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand-text { font-family: 'Sora'; font-weight: 800; font-size: 16.5px; color: var(--ink); letter-spacing: -.01em; }
.brand-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a, .dropdown > a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 11px; border-radius: 9px; transition: color .2s, background .2s; display: inline-block;
}
.nav-links a:hover { color: var(--orange); background: var(--bg-soft); }
.nav-links a.active { color: var(--orange); }
.nav-cta { margin-left: 6px; padding: 10px 18px !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: " ▾"; font-size: 10px; opacity: .6; }
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 180px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: .2s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 13.5px; }

.menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s; }

/* ===== Sub-page hero (compact) ===== */
.subhero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #161310 0%, #241a12 55%, var(--orange-dark) 130%);
  padding: 46px 0 42px;
}
.subhero::after {
  content: ""; position: absolute; top: -100px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,101,12,.32), transparent 70%);
}
.subhero .crumbs { font-size: 12.5px; color: rgba(255,255,255,.6); margin-bottom: 10px; position: relative; }
.subhero .crumbs a:hover { color: var(--orange-light); }
.subhero h1 { color: #fff; font-size: clamp(1.75rem, 3.6vw, 2.4rem); font-weight: 800; position: relative; }
.subhero p { color: rgba(255,255,255,.8); max-width: 560px; margin-top: 10px; font-size: .98rem; position: relative; }

/* ===== Generic section (condensed) ===== */
section { padding: 56px 0; }
.section-head { max-width: 620px; margin-bottom: 32px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 9px; }
.section-head h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700; margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: .97rem; }
.bg-soft { background: var(--bg-soft); }

/* ===== Hero (home) ===== */
.hero { position: relative; min-height: 62vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,11,8,.93) 0%, rgba(20,14,9,.8) 42%, rgba(252,101,12,.42) 100%); }
.hero-inner { padding: 64px 0; max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  background: rgba(252,101,12,.18); color: #ffd9bf; border: 1px solid rgba(252,114,33,.5);
  padding: 6px 13px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-light); box-shadow: 0 0 0 3px rgba(252,114,33,.25); }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.hero h1 .hl { color: var(--orange-light); }
.hero p { font-size: clamp(.97rem, 1.3vw, 1.08rem); color: rgba(255,255,255,.85); max-width: 540px; margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }

/* Stats strip */
.stats { background: var(--bg-dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 0; }
.stat { text-align: center; }
.stat .num { font-family: 'Sora'; font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--orange-light); }
.stat .label { font-size: 12.5px; color: rgba(255,255,255,.68); margin-top: 2px; }

/* Mission band */
.mission { background: var(--bg-soft); }
.mission-card { background: #fff; border-radius: 18px; padding: 38px 42px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.mission-card::before { content: "“"; position: absolute; top: -24px; left: 26px; font-family: Georgia, serif; font-size: 150px; color: rgba(252,101,12,.09); line-height: 1; }
.mission-card .kicker { position: relative; }
.mission-quote { position: relative; font-family: 'Sora'; font-weight: 600; font-size: clamp(1.05rem, 1.9vw, 1.4rem); color: var(--ink); line-height: 1.45; letter-spacing: -.01em; }
.mission-sub { position: relative; margin-top: 14px; color: var(--muted); font-size: .95rem; max-width: 740px; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.about-media { position: relative; max-width: 420px; }   /* about.jpg is 1024px wide — never upscaled */
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.about-media .badge { position: absolute; bottom: -18px; right: -12px; background: var(--orange); color: #fff; border-radius: 12px; padding: 13px 18px; box-shadow: 0 10px 26px rgba(252,101,12,.35); max-width: 190px; }
.about-media .badge strong { font-family: 'Sora'; font-size: 19px; display: block; }
.about-media .badge span { font-size: 11.5px; opacity: .92; line-height: 1.35; display: block; }
.about-text h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin-bottom: 12px; }
.about-text p { color: var(--muted); margin-bottom: 11px; font-size: .95rem; }
.about-text p strong { color: var(--ink-soft); }
.founders { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.founder-chip { display: flex; align-items: center; gap: 10px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; padding: 9px 14px; }
.founder-chip .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: 'Sora'; font-size: 13px; }
.founder-chip .meta b { display: block; color: var(--ink); font-size: 13.5px; }
.founder-chip .meta span { font-size: 11.5px; color: var(--muted); }

/* Focus areas (dark) */
.focus { background: var(--bg-dark); color: #fff; }
.focus .section-head h2 { color: #fff; }
.focus .section-head p { color: rgba(255,255,255,.66); }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.focus-card { background: #1f1b17; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.focus-card:hover { transform: translateY(-5px); border-color: rgba(252,114,33,.5); }
.focus-card .img { height: 150px; overflow: hidden; position: relative; }  /* native 900x461 — downscaled, stays sharp */
.focus-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.focus-card:hover .img img { transform: scale(1.05); }
.focus-card .img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,27,23,.85), transparent 55%); }
.focus-card .body { padding: 20px 20px 24px; }
.focus-num { font-family: 'Sora'; font-weight: 800; font-size: 12px; color: var(--orange-light); letter-spacing: .1em; }
.focus-card h3 { color: #fff; font-size: 1.12rem; margin: 5px 0 8px; }
.focus-card p { color: rgba(255,255,255,.64); font-size: .89rem; line-height: 1.55; }
.focus-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 13px; color: var(--orange-light); font-weight: 600; font-size: 13.5px; }
.focus-card .more .arrow { transition: transform .2s; }
.focus-card:hover .more .arrow { transform: translateX(3px); }

/* Steps / involve */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: box-shadow .3s, transform .3s; }
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(252,101,12,.10); color: var(--orange); margin-bottom: 14px; }
.step .ic svg { width: 21px; height: 21px; }
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .91rem; line-height: 1.55; }

/* ===== Feature / two-column rows =====
   Media column is capped so small source images (e.g. 480px wide)
   are never stretched beyond native width. */
.feature-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.feature-grid.reverse .feature-media { order: 2; }
.feature-media { max-width: 400px; width: 100%; }
.feature-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3.6; object-fit: cover; }
.feature-media.portrait { max-width: 330px; }
.feature-media.portrait img { aspect-ratio: 3/4; }
.feature-text h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: 12px; }
.feature-text p { color: var(--muted); margin-bottom: 12px; font-size: .95rem; }
.check-list { list-style: none; margin-top: 6px; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--ink-soft); font-size: .93rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%; background: rgba(252,101,12,.12);
  color: var(--orange); font-size: 11px; font-weight: 700; display: grid; place-items: center;
}

/* Info cards row */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; transition: .3s; }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(252,101,12,.25); }
.info-card .tag { font-family: 'Sora'; font-weight: 800; color: var(--orange); font-size: 12px; letter-spacing: .08em; }
.info-card h3 { font-size: 1.05rem; margin: 5px 0 7px; }
.info-card p { color: var(--muted); font-size: .9rem; line-height: 1.55; }

/* Q&A list */
.qa-list { display: grid; gap: 11px; }
.qa-item { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 10px; padding: 15px 20px; box-shadow: var(--shadow-sm); }
.qa-item p { margin: 0; color: var(--ink-soft); font-weight: 500; font-size: .94rem; }

/* ===== People grid (board / team) =====
   Board photos are 300px wide natively → cards sized under that. */
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(216px, 1fr)); gap: 20px; }
.people-grid.team { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 660px; margin: 0 auto; }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person .photo { aspect-ratio: 1/1.12; overflow: hidden; background: var(--bg-soft); }
.person .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s; }
.person:hover .photo img { transform: scale(1.04); }
.person .info { padding: 16px 18px 20px; }
.person .info h3 { font-size: 1.02rem; margin-bottom: 3px; }
.person .role { display: block; color: var(--orange); font-weight: 600; font-size: 11.5px; margin-bottom: 8px; line-height: 1.4; }
.person .bio { color: var(--muted); font-size: .85rem; line-height: 1.55; }

/* ===== Documents / downloads ===== */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.doc {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 13px 16px;
  transition: .25s; box-shadow: var(--shadow-sm);
}
.doc:hover { border-color: var(--orange); transform: translateX(3px); }
.doc .file-ic { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 9px; background: rgba(252,101,12,.10); color: var(--orange); display: grid; place-items: center; }
.doc .file-ic svg { width: 18px; height: 18px; }
.doc .file-meta b { display: block; color: var(--ink); font-size: 13.8px; font-weight: 600; line-height: 1.35; }
.doc .file-meta span { font-size: 11.5px; color: var(--muted); }
.doc .dl { margin-left: auto; color: var(--orange); }

/* ===== Events ===== */
.event-feature { display: grid; grid-template-columns: 300px 1fr; gap: 0; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.event-feature .ef-img { height: 100%; }
.event-feature .ef-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.event-feature .ef-body { padding: 32px 34px; }
.pill { display: inline-block; background: rgba(252,101,12,.12); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; margin-bottom: 11px; }
.event-feature h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); margin-bottom: 10px; }
.event-feature p { color: var(--muted); margin-bottom: 18px; font-size: .95rem; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card .nc-img { height: 165px; overflow: hidden; }
.news-card .nc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .nc-img img { transform: scale(1.04); }
.news-card .nc-body { padding: 20px 22px 24px; }
.news-card h3 { font-size: 1.08rem; margin-bottom: 7px; }
.news-card p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; line-height: 1.55; }
.read-more { color: var(--orange); font-weight: 600; font-size: 13.5px; display: inline-flex; gap: 5px; align-items: center; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 20px; }
.contact-info .ci-item { display: flex; gap: 13px; margin-bottom: 18px; }
.contact-info .ci-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: rgba(252,101,12,.10); color: var(--orange); display: grid; place-items: center; }
.contact-info .ci-ic svg { width: 19px; height: 19px; }
.contact-info .ci-item b { display: block; color: var(--ink); font-family: 'Sora'; font-size: 14.5px; }
.contact-info .ci-item a, .contact-info .ci-item span { color: var(--muted); font-size: .92rem; }
.contact-info .ci-item a:hover { color: var(--orange); }
.social-row { display: flex; gap: 9px; margin-top: 22px; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-soft); transition: .25s; }
.social-row a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }

/* ===== CTA band ===== */
.cta { color: #fff; padding: 56px 0; }
.cta-inner { background: linear-gradient(120deg, var(--orange-dark) 0%, var(--orange) 60%, var(--orange-light) 100%); border-radius: 20px; padding: 44px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before, .cta-inner::after { content:""; position:absolute; border-radius:50%; background: rgba(255,255,255,.10); }
.cta-inner::before { width: 240px; height: 240px; top: -100px; right: -60px; }
.cta-inner::after { width: 180px; height: 180px; bottom: -90px; left: -50px; }
.cta h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.95rem); position: relative; margin-bottom: 10px; }
.cta p { position: relative; color: rgba(255,255,255,.92); max-width: 540px; margin: 0 auto 22px; font-size: .97rem; }
.cta .hero-actions { position: relative; justify-content: center; }

/* ===== Footer ===== */
footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding: 48px 0 22px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.10); }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.foot-brand img { width: 36px; height: 36px; border-radius: 9px; }
.foot-brand b { font-family: 'Sora'; color: #fff; font-size: 15.5px; }
.foot-about p { font-size: .88rem; max-width: 310px; line-height: 1.6; }
.foot-col h4 { color: #fff; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.foot-col a { display: block; font-size: 13.5px; margin-bottom: 8px; color: rgba(255,255,255,.64); transition: color .2s; }
.foot-col a:hover { color: var(--orange-light); }
.badge501 { display:inline-block; margin-top: 12px; font-size: 11.5px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); padding: 6px 11px; border-radius: 8px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; font-size: 12.5px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 33px; height: 33px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--orange); transform: translateY(-2px); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-grid, .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid.reverse .feature-media { order: 0; }
  .feature-media, .feature-media.portrait, .about-media { max-width: 400px; margin: 0 auto; }
  .focus-grid, .involve-grid, .info-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .event-feature { grid-template-columns: 1fr; }
  .event-feature .ef-img img { max-height: 260px; min-height: 0; }
  .event-feature .ef-body { padding: 26px 28px 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .doc-grid, .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 15px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 18px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .nav-links.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 2px 0 2px 12px; }
  .nav-links.open .nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .mission-card { padding: 28px 22px; }
  .focus-grid, .involve-grid, .info-grid, .people-grid.team { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .foot-grid { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
  .cta { padding: 44px 0; }
  .cta-inner { padding: 34px 22px; }
  .about-media .badge { position: static; margin-top: 12px; max-width: none; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .subhero { padding: 36px 0 32px; }
}
@media (max-width: 460px) {
  .people-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}
