/* ==========================================================================
   Greater Peoria Regional Workforce Alliance — "Daylight"

   Orange leads. The brand's #F7941D is the field, not a trim on charcoal, and
   the page sits on warm cream rather than white. Geometry is generous and
   rounded; the audience routes carry their own colors so someone can find
   their way by hue before they read a word.

   Brand orange #F7941D and charcoal are sampled from the 2025 logo artwork.
   Teal and berry are supporting colors for the routes and committees, kept
   away from the logo itself.
   ========================================================================== */

:root {
	--or:     #F7941D;  /* brand orange */
	--or-hot: #F2700C;  /* deeper orange for links and emphasis */
	--sun:    #FFC24B;  /* light end of the orange arc */
	--cream:  #FFF7ED;  /* page ground */
	--peach:  #FFE9CE;
	--paper:  #FFFFFF;

	--ink:    #2A2118;  /* warm near-black: headings */
	--body:   #584B3E;  /* warm body text */
	--muted:  #857463;
	--line:   #EFE2D2;

	--teal:   #12A5A0;
	--berry:  #D94F70;
	--green:  #1F7A5C;

	--wrap:        1200px;
	--wrap-narrow: 720px;
	--r-sm:  16px;
	--r-md:  26px;
	--r-lg:  36px;
	--r-pill: 999px;

	--shadow-sm: 0 4px 16px rgba(42, 33, 24, .07);
	--shadow-md: 0 8px 30px rgba(42, 33, 24, .10);
	--shadow-lg: 0 20px 56px rgba(42, 33, 24, .18);

	--ui: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--ui);
	font-size: 18px;
	line-height: 1.65;
	color: var(--body);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
	font-family: var(--ui);
	color: var(--ink);
	line-height: 1.05;
	letter-spacing: -.03em;
	margin: 0 0 .4em;
	font-weight: 800;
}

p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }

a { color: var(--or-hot); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--or-hot); outline-offset: 3px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute; left: -9999px;
	background: var(--ink); color: #fff;
	padding: 12px 20px; z-index: 999; font-weight: 700; border-radius: var(--r-pill);
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- Layout --------------------------------------------------------------- */

.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 3rem, var(--wrap-narrow)); }

.band { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.band--alt { background: var(--peach); }

.section-head { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .35em; }
.section-intro { max-width: 46ch; margin-bottom: 2.6rem; }
.section-lede { font-size: 1.1rem; margin: 0; }
.section-more { margin-top: 2.2rem; }

.eyebrow, .router-head {
	font-size: .92rem; font-weight: 700; letter-spacing: .16em;
	text-transform: uppercase; color: var(--or-hot); margin: 0 0 1.4rem;
}

.prose { font-size: 1.05rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose .lede { font-size: 1.15rem; }

/* --- Floating header ------------------------------------------------------ */

.site-head { padding: 1.1rem 0; position: sticky; top: 0; z-index: 60; background: var(--cream); }
.site-head__inner {
	background: var(--paper); border-radius: var(--r-pill);
	padding: .6rem .7rem .6rem 1.6rem;
	display: flex; align-items: center; gap: 1.6rem;
	box-shadow: 0 6px 24px rgba(42, 33, 24, .09);
}
.brand__link { display: flex; align-items: center; text-decoration: none; }
/* The lockup already reads "Greater Peoria / RWA / Regional Workforce
   Alliance", so no type is set beside it. */
.brand__logo { height: 50px; width: auto; max-width: 240px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.5rem; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
	color: var(--ink); text-decoration: none; font-weight: 600;
	font-size: .94rem; white-space: nowrap;
}
.nav__list a:hover, .nav__list .current-menu-item > a { color: var(--or-hot); }

.nav-toggle {
	display: none; margin-left: auto; background: none;
	border: 2px solid var(--line); border-radius: var(--r-pill);
	padding: .6rem .7rem; cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after { display: block; width: 22px; height: 2px; background: var(--ink); content: ""; }
.nav-toggle__bars::before { transform: translateY(-7px); }
.nav-toggle__bars::after  { transform: translateY(5px); }

/* --- Buttons and links ---------------------------------------------------- */

.btn {
	display: inline-block; font-weight: 700; font-size: 1rem;
	padding: 1rem 1.7rem; border-radius: var(--r-pill);
	text-decoration: none; border: 0; cursor: pointer;
	transition: transform .15s, box-shadow .15s, background .15s;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--or-hot); color: #fff; transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--sun); color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--or); color: var(--or-hot); }
.nav__cta { background: var(--ink); color: #fff; border-radius: var(--r-pill); padding: .72rem 1.4rem; font-weight: 700; text-decoration: none; font-size: .94rem; }
.nav__cta:hover { background: var(--or-hot); color: #fff; }

.link-arrow {
	font-weight: 700; font-size: 1rem; text-decoration: none;
	color: var(--ink); border-bottom: 3px solid var(--sun); padding-bottom: 1px;
}
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { color: var(--or-hot); border-bottom-color: var(--or); }

/* --- Hero ----------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
/* The sun arc: the brand orange as a field, sweeping in behind the headline. */
.hero::before {
	content: ""; position: absolute; right: -16%; top: -42%;
	width: 74vw; aspect-ratio: 1; border-radius: 50%;
	background: radial-gradient(circle at 35% 65%, var(--sun), var(--or) 62%, var(--or-hot));
	opacity: .92; pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { font-size: .92rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin: 0 0 1.1rem; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); margin: 0 0 .45em; max-width: 15ch; }
/* One-column heroes sit clear of the arc. */
.hero:not(.hero--home):not(.hero--split) .hero__inner { max-width: 46rem; }
.hero:not(.hero--home) .hero__title { max-width: 17ch; }
/* On a split hero the big sweeping arc gets clipped by the section edge and
   reads as a stray orange rectangle. Here it becomes a contained circle sitting
   behind the photograph's top corner, which the image then overlaps. */
.hero--split::before {
	right: 2%; top: 8%; width: min(30vw, 380px);
	border-radius: 50%; opacity: 1;
}
.hero:not(.hero--home):not(.hero--split)::before { right: -26%; top: -50%; width: 66vw; }
.hero__title em { font-style: normal; color: var(--or-hot); }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); margin: 0; max-width: 46ch; color: var(--body); }

/* Copy beside a photograph in a rounded frame — the homepage and any interior
   page given a photo. */
.hero--home .hero__inner,
.hero--split .hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__shot { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.2; }
.hero__shot img { width: 100%; height: 100%; object-fit: cover; }

/* Interior heroes keep the arc but run a single column. */
.hero--dark, .hero--orange { background: transparent; }

/* --- Audience routes ------------------------------------------------------ */

.router { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.router__link {
	border-radius: var(--r-md); padding: 1.9rem 1.7rem; text-decoration: none;
	display: flex; flex-direction: column; height: 100%; min-height: 210px;
	box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.router__link:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(42, 33, 24, .16); }
.router__item:nth-child(1) .router__link { background: var(--or);   color: var(--ink); }
.router__item:nth-child(2) .router__link { background: var(--teal);  color: #fff; }
.router__item:nth-child(3) .router__link { background: var(--berry); color: #fff; }
.router__item:nth-child(4) .router__link { background: var(--ink);   color: #fff; }
.router__point { font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; opacity: .72; margin-bottom: .9rem; }
.router__label { font-size: 1.32rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .35rem; }
.router__lede { font-size: .96rem; opacity: .92; line-height: 1.5; }
.router__arrow { margin-top: auto; font-size: 1.45rem; font-weight: 700; padding-top: 1rem; }

/* --- Numbers -------------------------------------------------------------- */

.band--stats { background: var(--ink); padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem; }
.stat__figure { font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 800; line-height: .9; letter-spacing: -.05em; margin: 0 0 .3em; }
.stat:nth-child(1) .stat__figure { color: var(--or); }
.stat:nth-child(2) .stat__figure { color: var(--teal); }
.stat:nth-child(3) .stat__figure { color: var(--berry); }
.stat:nth-child(4) .stat__figure { color: var(--sun); }
.stat__label { color: #fff; font-weight: 700; margin: 0 0 .35em; font-size: 1.02rem; }
.stat__note { color: rgba(255,255,255,.6); font-size: .89rem; line-height: 1.5; margin: 0; }

/* --- Cards ---------------------------------------------------------------- */

.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
	background: var(--paper); border-radius: 28px; padding: 2rem 1.9rem;
	display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.card__node { margin: 0 0 1.2rem; line-height: 0; }
.card__num {
	display: inline-grid; place-items: center; width: 46px; height: 46px;
	border-radius: 14px; color: #fff; font-weight: 800; font-size: .95rem; line-height: 1;
	background: var(--ink);
}
.card--committee:nth-child(1) .card__num { background: var(--teal); }
.card--committee:nth-child(2) .card__num { background: var(--or); color: var(--ink); }
.card--committee:nth-child(3) .card__num { background: var(--berry); }
.card__pillar { height: 62px; width: auto; margin: 0 0 1.2rem; }
.card__title { font-size: 1.42rem; margin: 0 0 .2em; }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a:hover { color: var(--or-hot); }
.card__tagline { color: var(--or-hot); font-weight: 700; margin: 0 0 .8em; }
.card__body { font-size: .99rem; margin: 0 0 1.2em; }
.card__more { margin: auto 0 0; }

/* --- Committees ----------------------------------------------------------- */

.committee { display: grid; gap: 3rem; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.committee__pillar { height: 104px; width: auto; margin-bottom: 1.6rem; }
.committee__title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: .2em; }
.committee__tagline { font-size: 1.2rem; font-weight: 700; color: var(--or-hot); margin-bottom: 1.2em; }
.committee__sub {
	font-size: .92rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: var(--ink); margin: 2.2rem 0 1.1rem; padding-bottom: .6rem;
	border-bottom: 3px solid var(--sun);
}
.committee__detail .committee__sub:first-child { margin-top: 0; }

.checklist { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.checklist li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; font-size: .99rem; }
.checklist li::before {
	content: ""; position: absolute; left: 0; top: .55em;
	width: 11px; height: 11px; border-radius: 50%; background: var(--or);
}

.inits { list-style: none; margin: 0; padding: 0; }
.init { padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: .2rem; }
.init:last-child { border-bottom: 0; }
.init__name { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.init__desc { font-size: .95rem; }

.chairs { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.chair { display: flex; flex-direction: column; padding-left: 1rem; border-left: 4px solid var(--sun); }
.chair__name { font-weight: 700; color: var(--ink); }
.chair__title { font-size: .92rem; color: var(--muted); }

/* --- People --------------------------------------------------------------- */

.people-group { margin-bottom: 3.2rem; }
.people-group__head {
	font-size: .92rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: var(--ink); padding-bottom: .6rem; margin-bottom: 1.7rem; border-bottom: 3px solid var(--sun);
}
.people { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }


.person__media { aspect-ratio: 8 / 9; background: var(--peach); overflow: hidden; margin-bottom: 1rem; border-radius: 24px; display: grid; place-items: center; }
.person__media img { width: 100%; height: 100%; object-fit: cover; }
.person__monogram { font-weight: 800; font-size: 2.6rem; color: var(--or-hot); width: 100%; height: 100%; display: grid; place-items: center; letter-spacing: -.03em; }
.person__role { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--or-hot); margin: 0 0 .35em; }
.person__name { font-size: 1.1rem; margin: 0 0 .2em; }
.person__title { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.45; }

/* --- Partner wall --------------------------------------------------------- */

.partners {
	list-style: none; margin: 0 0 1.4rem; padding: 0;
	display: grid; gap: 1rem;
	grid-template-columns: repeat(4, 1fr);
}
.partners__link {
	display: grid; place-items: center; height: 100%; min-height: 118px;
	padding: 1.5rem 1.4rem; background: var(--paper);
	border-radius: var(--radius-lg); text-decoration: none;
	box-shadow: 0 2px 10px rgba(42,33,24,.06);
	transition: transform .16s, box-shadow .16s;
}
.band--alt .partners__link { background: var(--paper); }
a.partners__link:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(42,33,24,.14); }

/* Logos vary wildly in aspect and weight; cap both axes and let them sit
   optically centred rather than filling the tile. */
/* Partner logos arrive in wildly different aspects: wide wordmarks (ICC,
   EdSystems) alongside square crests (ROE 48, Eureka). Capping width rather
   than height lets the square marks grow to a comparable optical size instead
   of shrinking to a thumbnail beside the wide ones. */
.partners__logo {
	max-height: 76px; max-width: 100%; width: auto;
	object-fit: contain; filter: saturate(.92);
}
.partners__wordmark {
	font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em;
	color: var(--ink); text-align: center;
}
.partners__note { font-size: .92rem; color: var(--muted); margin: 0; }

/* --- News ----------------------------------------------------------------- */

.news { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.news__item { background: var(--paper); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem; box-shadow: 0 2px 10px rgba(42,33,24,.06); }
.news__date {
	font-size: .78rem; font-weight: 700; letter-spacing: .14em;
	text-transform: uppercase; color: var(--or-hot); margin: 0 0 .6em;
}
.news__title { font-size: 1.2rem; margin: 0 0 .4em; }
.news__title a { color: var(--ink); text-decoration: none; }
.news__title a:hover { color: var(--or-hot); }
.news__excerpt { font-size: .96rem; margin: 0; }

/* --- Regional roundup ----------------------------------------------------- */

.feed { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.feed__item { display: flex; }
.feed__link {
	display: flex; flex-direction: column; width: 100%;
	background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
	text-decoration: none; box-shadow: 0 2px 10px rgba(42,33,24,.06);
	transition: transform .16s, box-shadow .16s;
}
.feed__link:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(42,33,24,.15); }

.feed__media { display: block; aspect-ratio: 16 / 9; background: var(--peach); overflow: hidden; }
.feed__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Not every partner publishes an image with its posts, so items without one get
   a branded tile rather than an empty frame or a ragged grid. */
.feed__fallback {
	display: grid; place-items: center; width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--sun), var(--or) 55%, var(--or-hot));
}
.feed__fallback img { width: 42%; height: auto; opacity: .9; object-fit: contain; }
/* A publisher's own logo needs a light ground to read against, not the orange. */
.feed__fallback--logo { background: var(--paper); border-bottom: 4px solid var(--or); }
.feed__fallback--logo img { width: auto; max-width: 62%; max-height: 58%; opacity: 1; }

.feed__body { display: flex; flex-direction: column; padding: 1.4rem 1.5rem 1.5rem; flex: 1; }
.feed__meta {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem;
	font-size: .74rem; font-weight: 700; letter-spacing: .09em;
	text-transform: uppercase; color: var(--or-hot); margin-bottom: .6rem;
}
/* Keep "17 Aug 2026" on one line; it was breaking after the month. */
.feed__meta > span { white-space: nowrap; }
.feed__dot { margin: 0 .4rem; opacity: .6; }
.feed__title { display: block; font-weight: 800; font-size: 1.08rem; line-height: 1.3; color: var(--ink); margin-bottom: .5rem; letter-spacing: -.02em; }
.feed__link:hover .feed__title { color: var(--or-hot); }
.feed__summary { display: block; font-size: .94rem; line-height: 1.55; color: var(--body); margin-bottom: 1.1rem; }
.feed__more { display: block; margin-top: auto; font-size: .88rem; font-weight: 700; color: var(--ink); }
.feed__more::after { content: " \2197"; color: var(--or-hot); }

/* --- Program directory ---------------------------------------------------- */

.directory__filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.chip {
	font-family: var(--ui); font-size: .92rem; font-weight: 600;
	padding: .6rem 1.2rem; border-radius: var(--r-pill); cursor: pointer;
	background: var(--paper); border: 0; color: var(--body); box-shadow: var(--shadow-sm);
}
.chip:hover { color: var(--or-hot); }
.chip.is-on { background: var(--ink); color: #fff; }

.directory__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
.program { background: var(--paper); border-radius: var(--r-md); padding: 1.8rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.program[hidden] { display: none; }
.program__title { font-size: 1.2rem; margin: 0 0 .15em; }
.program__org { font-size: .82rem; color: var(--or-hot); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .9em; }
.program__desc { font-size: .96rem; margin: 0 0 1em; }
.program__facts { list-style: none; margin: 0 0 1em; padding: 0; font-size: .9rem; }
.program__facts li { margin-bottom: .25rem; }
.program__facts strong { color: var(--ink); }
.program__facts--lg { font-size: 1rem; border-left: 4px solid var(--sun); padding-left: 1rem; }
.program__actions { margin: auto 0 0; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.program__phone { font-size: .95rem; font-weight: 700; text-decoration: none; }
.directory__empty { color: var(--muted); font-style: italic; }

/* --- The gap, as a dial --------------------------------------------------- */

.gapcard {
	background: var(--paper); border-radius: var(--r-lg); padding: clamp(2.5rem, 5vw, 4rem);
	display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center;
	box-shadow: var(--shadow-md);
}
.dial {
	width: min(38vw, 290px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
	background: conic-gradient(var(--or) 0 43%, var(--peach) 43% 60%, #F0EAE2 60%);
}
.dial__inner { width: 74%; aspect-ratio: 1; border-radius: 50%; background: var(--paper); display: grid; place-items: center; text-align: center; }
.dial__fig { display: block; font-size: 2.9rem; font-weight: 800; color: var(--ink); line-height: 1; }
.dial__cap { color: var(--body); font-size: .92rem; }
.gapcard h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 16ch; }

/* Legacy gauge kept for the Impact page's detailed bar. */
.gauge { max-width: 820px; }
.gauge__track { position: relative; height: 56px; background: var(--peach); border-radius: var(--r-pill); overflow: visible; }
.gauge__fill { height: 100%; background: var(--or); border-radius: var(--r-pill); display: flex; align-items: center; justify-content: flex-end; padding-right: 1.1rem; }
.gauge__now { font-weight: 800; color: var(--ink); }
.gauge__goal { position: absolute; top: -8px; bottom: -8px; width: 4px; border-radius: 2px; background: var(--green); }
.gauge__goal-label { position: absolute; top: -2rem; left: 50%; transform: translateX(-50%); white-space: nowrap; font-weight: 700; font-size: .85rem; color: var(--green); }
.gauge__key { list-style: none; margin: 2.4rem 0 0; padding: 0; font-size: .97rem; }
.gauge__key li { margin-bottom: .4rem; }
.gauge__key strong { color: var(--ink); margin-right: .4rem; }

/* --- Forms ---------------------------------------------------------------- */

.contact-grid { display: grid; gap: 3rem; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
.contact-grid__form { background: var(--paper); border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-sm); }
.contact-aside__head, .contact-aside__sub { font-size: 1.15rem; margin-bottom: .5em; }
.contact-aside__sub { margin-top: 2rem; }
.contact-aside__block { font-style: normal; margin-bottom: 1.5rem; }
.contact-aside__block p { margin-bottom: .4em; }

.form__row { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.3rem; }
.form__row label { font-weight: 700; font-size: .95rem; color: var(--ink); }
.req { color: var(--or-hot); }
.form__row input, .form__row select, .form__row textarea, .searchform input {
	font-family: var(--ui); font-size: 1rem; color: var(--ink);
	padding: .9rem 1.1rem; border: 2px solid var(--line);
	border-radius: var(--r-sm); background: var(--cream); width: 100%;
}
.form__row textarea { border-radius: var(--r-sm); }
.form__row input:focus, .form__row select:focus, .form__row textarea:focus { border-color: var(--or); outline: none; background: var(--paper); }
.form__pot { position: absolute; left: -9999px; }
.form__submit { margin-top: 1.6rem; }

.form-note { padding: 1.2rem 1.4rem; border-radius: var(--r-sm); margin-bottom: 1.6rem; }
.form-note p { margin: 0; }
.form-note--ok { background: #E6F6F0; border-left: 5px solid var(--green); }
.form-note--bad { background: var(--peach); border-left: 5px solid var(--or-hot); }
.form-note ul { margin: .6rem 0 0; }

.searchform { display: flex; gap: .6rem; }
.searchform input { flex: 1; }

/* --- Call to action ------------------------------------------------------- */

.band--cta { padding: 0 0 clamp(3.5rem, 6vw, 5rem); }
.cta {
	background: var(--ink); color: rgba(255,255,255,.8);
	border-radius: var(--r-lg); padding: clamp(2.5rem, 5vw, 4rem);
	max-width: none;
}
.cta__title { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.8rem); max-width: 18ch; }
.cta__body { font-size: 1.08rem; max-width: 52ch; }
.cta__action { margin: 1.9rem 0 0; }

/* --- Post lists ----------------------------------------------------------- */

.post-list { list-style: none; margin: 0; padding: 0; }
.post-list__item { background: var(--paper); border-radius: var(--r-md); padding: 1.6rem 1.8rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.post-list__title { font-size: 1.35rem; margin-bottom: .2em; }
.post-list__title a { color: var(--ink); text-decoration: none; }
.post-list__title a:hover { color: var(--or-hot); }
.post-list__meta { font-size: .86rem; color: var(--muted); margin-bottom: .6em; }

/* --- Footer --------------------------------------------------------------- */

.site-foot { background: var(--ink); color: rgba(255,255,255,.68); border-radius: var(--r-lg) var(--r-lg) 0 0; margin-top: 1rem; }
.site-foot__inner { display: grid; gap: 2.5rem; padding: clamp(3rem, 6vw, 4.5rem) 0; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); }
.site-foot__logo { height: 62px; width: auto; margin-bottom: 1.2rem; }
.site-foot__blurb { font-size: .94rem; margin-bottom: 1em; }
.site-foot__social a { color: var(--sun); font-weight: 700; font-size: .94rem; }
.site-foot__head { font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--or); margin-bottom: 1.1em; }
.site-foot__list { list-style: none; margin: 0; padding: 0; }
.site-foot__list li { margin-bottom: .55rem; }
.site-foot__list a, .site-foot__contact a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .96rem; }
.site-foot__list a:hover, .site-foot__contact a:hover { color: var(--sun); }
.site-foot__contact { font-style: normal; display: flex; flex-direction: column; gap: .5rem; font-size: .96rem; }
.site-foot__base { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; font-size: .86rem; color: rgba(255,255,255,.48); }
.site-foot__base p { margin: 0; }

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.router, .stats, .partners { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
	.nav-toggle { display: block; }
	.nav {
		position: absolute; left: 0; right: 0; top: calc(100% + .6rem);
		background: var(--paper); border-radius: var(--r-md);
		flex-direction: column; align-items: stretch; gap: 0;
		padding: 1rem 1.5rem 1.5rem; display: none; box-shadow: var(--shadow-md);
	}
	.nav.is-open { display: flex; }
	.nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav__list li { border-bottom: 1px solid var(--line); }
	.nav__list a { display: block; padding: .9rem 0; }
	.nav__cta { margin-top: 1.2rem; text-align: center; }
	.site-head__inner { position: relative; }
}

@media (max-width: 1080px) {
	.partners { grid-template-columns: repeat(3, 1fr); }
	.news { grid-template-columns: repeat(2, 1fr); }
	.feed { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.hero--split .hero__inner { grid-template-columns: 1fr; gap: 2.2rem; }
	.hero--split .hero__shot { order: 2; }
	.hero--home .hero__inner { grid-template-columns: 1fr; }
	.hero::before { right: -40%; top: -18%; width: 130vw; }
	.cards--3, .cards--2 { grid-template-columns: 1fr; }
	.committee, .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
	.directory__list { grid-template-columns: 1fr; }
	.partners { grid-template-columns: repeat(2, 1fr); }
	.news { grid-template-columns: 1fr; }
	.feed { grid-template-columns: 1fr; }
	.gapcard { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.site-foot__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	body { font-size: 17px; }
	.router, .stats, .partners { grid-template-columns: 1fr; }
	.site-foot__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.router__link:hover, .btn:hover { transform: none; }
}
