/* ==========================================================================
   ATVET theme
   Design system matching the "We grow different" homepage and the
   Institutions directory. Inter throughout.
   ========================================================================== */

:root {
	/* Greens pulled from the Figma comps */
	--green-900: #234b41;   /* dark bands, footer, headings */
	--green-800: #1f4239;   /* footer floor */
	--green-700: #2a6b57;
	--green-600: #23a06a;
	--green-500: #2bb673;   /* primary accent, buttons, links */
	--green-400: #34c77d;   /* bright highlight, icon circles */
	--green-050: #eafaf2;

	--ink: #1c2320;
	--body: #4a524e;
	--muted: #79817d;
	--line: #e6eae8;
	--paper: #ffffff;
	--paper-2: #f5f8f6;

	--wrap: 1200px;
	--gutter: clamp(20px, 5vw, 64px);
	--radius: 14px;
	--radius-lg: 22px;

	--font-display: "Inter", system-ui, sans-serif;
	--font-body: "Inter", system-ui, sans-serif;

	--shadow-card: 0 18px 40px -22px rgba(20, 50, 40, 0.35);
	--shadow-soft: 0 10px 30px -18px rgba(20, 50, 40, 0.4);
}

/* ---- Reset-ish -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--body);
	background: var(--paper);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-500); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; margin: 0 0 .6em; }
p { margin: 0 0 1.1em; }
svg { display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 100;
	background: var(--green-900); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; }

/* ---- Buttons and links ----------------------------------------------- */
.btn {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: .98rem;
	padding: 13px 26px;
	border-radius: 8px;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
	cursor: pointer;
	border: 0;
}
.btn--green { background: var(--green-500); color: #fff; }
.btn--green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--dark { background: var(--green-900); color: #fff; }
.btn--dark:hover { background: var(--green-800); transform: translateY(-2px); }

.link-arrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-display); font-weight: 500;
	color: var(--green-500);
}
.link-arrow svg { width: 26px; height: 26px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--green { color: var(--green-500); }

.heading-green { color: var(--green-500); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(255,255,255,.94);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid rgba(0,0,0,.04);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; min-height: 82px;
}
.site-branding img { max-height: 52px; width: auto; }

.atvet-wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.atvet-wordmark__name {
	font-family: var(--font-display); font-weight: 800; letter-spacing: .01em;
	font-size: 1.7rem; color: var(--green-900);
}
.atvet-wordmark__name::first-letter { color: var(--green-900); }
.atvet-wordmark__tag {
	font-family: var(--font-body); font-size: .52rem; letter-spacing: .04em;
	color: var(--muted); margin-top: 5px; text-transform: none; line-height: 1.3;
}
.atvet-wordmark--light .atvet-wordmark__name { color: #fff; }
.atvet-wordmark--light .atvet-wordmark__tag { color: rgba(255,255,255,.7); }

.site-nav { display: flex; align-items: center; gap: 30px; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.nav-menu a {
	font-family: var(--font-body); font-weight: 500; font-size: .96rem;
	color: #333; padding: 6px 0; position: relative;
}
.nav-menu a:hover { color: var(--green-500); }
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--green-500); }

.nav-search {
	background: transparent; border: 0; cursor: pointer; color: var(--green-900);
	padding: 6px; display: inline-flex;
}
.nav-search svg { width: 22px; height: 22px; }

.nav-toggle {
	display: none; flex-direction: column; gap: 5px; background: transparent;
	border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green-900); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-search { border-top: 1px solid var(--line); padding: 16px 0; background: #fff; }
.search-form { display: flex; gap: 10px; }
.search-form__field {
	flex: 1; padding: 12px 16px; border: 1px solid var(--line); border-radius: 8px;
	font-family: var(--font-body); font-size: 1rem;
}
.search-form__submit {
	background: var(--green-500); color: #fff; border: 0; border-radius: 8px;
	padding: 0 22px; font-family: var(--font-display); font-weight: 500; cursor: pointer;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	--hero-dark: #1f4a40;   /* "We grow" and the arc */
	--hero-accent: #56a37e; /* "different!" and the lead line */
	--hero-cta: #18b78c;    /* Explore, arrow, dots */
	position: relative;
	overflow: hidden;
	background: #fff;
}
.hero__inner {
	position: relative;
	z-index: 2;
	max-width: none;
	margin-inline: 0;
	min-height: clamp(460px, 66vh, 660px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-block: clamp(40px, 6vw, 60px) clamp(60px, 8vh, 88px);
}

/* Copy */
.hero__copies { position: relative; }
.hero__copy { max-width: min(40vw, 600px); }
.hero__copy:not(.is-active) { display: none; }

.hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 7.2vw, 6.2rem);
	line-height: .92;
	letter-spacing: -.02em;
	margin: 0 0 26px;
}
.hero__title-lead { display: block; color: var(--hero-dark); }
.hero__title-accent { display: block; color: var(--hero-accent); }

.hero__rule { display: block; width: 84px; height: 4px; background: var(--hero-dark); border-radius: 4px; margin: 0 0 22px; }
.hero__body {
	color: var(--hero-accent); max-width: 46ch; font-weight: 500;
	font-size: clamp(1rem, 1.4vw, 1.2rem); margin-bottom: 30px;
}

.hero__cta {
	display: inline-flex; align-items: center; gap: 14px;
	font-family: var(--font-body); font-weight: 500;
	font-size: clamp(1.05rem, 1.4vw, 1.5rem);
	color: var(--hero-cta);
}
.hero__cta svg { width: 30px; height: 30px; color: var(--hero-cta); transition: transform .2s ease; }
.hero__cta:hover svg { transform: translateX(5px); }

/* Image stage: a large circle bleeding off the right edge, with a
   dark green crescent tracing its upper left. Built from two offset
   circles so the arc tapers naturally. */
.hero__stage {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero__media { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero__media.is-active { opacity: 1; }

/* Big circular image on the right with a tapered dark arc (crescent) on
   its upper-left. The circle is oversized (~half the banner) so the
   centre gap stays tight. Two stacked circles: dark backing, then the
   photo nudged down-right so the dark shows as a crescent on the left. */
.hero__stage .hero__arc,
.hero__stage .hero__image {
	position: absolute;
	top: 50%;
	right: -6vw;
	width: clamp(500px, 56vw, 1280px);
	height: clamp(500px, 56vw, 1280px);
	border-radius: 50%;
}
.hero__stage .hero__arc {
	background: var(--hero-dark);
	transform: translateY(-50%);
}
.hero__stage .hero__image {
	background-size: cover; background-position: center;
	transform: translateY(-50%) translate(5%, 3.5%);
}

/* Dots: active is an outlined ring, others filled (matches the comp) */
/* Dots pinned to the bottom of the banner, out of the centred text group */
.hero__dots {
	display: flex; gap: 12px; justify-content: center;
	position: absolute; left: 0; right: 0; bottom: clamp(20px, 3.5vh, 38px);
	z-index: 3;
}
.hero__dot {
	width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer;
	background: var(--hero-cta); border: 1.5px solid var(--hero-cta); transition: .2s;
}
.hero__dot.is-active { background: transparent; }

/* impact dot geometry (shared base moved here) */
.impact__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; transition: .2s; }

/* ==========================================================================
   Dark intro band
   ========================================================================== */
.band--dark { background: var(--green-900); color: #fff; padding: clamp(56px, 8vw, 96px) 0; }
.band__grid {
	display: grid; grid-template-columns: 1.1fr 1fr;
	gap: clamp(30px, 6vw, 80px); align-items: start;
}
.band__heading {
	color: #fff; font-family: var(--font-display); font-weight: 600;
	font-size: clamp(1.4rem, 2.4vw, 2.05rem); line-height: 1.28; margin: 0;
}
.band__aside p { color: rgba(255,255,255,.82); margin-bottom: 22px; }

/* ==========================================================================
   Pull quote + CTA
   ========================================================================== */
.pullquote { padding: clamp(56px, 8vw, 92px) 0; }
.pullquote__text {
	border-left: 5px solid var(--green-500);
	padding-left: 26px; margin: 0 0 26px;
	font-family: var(--font-display); font-weight: 700;
	color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.4;
	max-width: 46ch;
}

/* ==========================================================================
   Overview
   ========================================================================== */
.overview { padding: 0 0 clamp(56px, 8vw, 100px); }
.overview__grid {
	display: grid; grid-template-columns: 0.9fr 1fr 1.1fr;
	gap: clamp(24px, 4vw, 48px); align-items: center;
}
.overview__mark { color: var(--green-500); display: block; margin-bottom: 14px; }
.overview__mark svg { width: 46px; height: auto; }
.overview__quote-body { color: var(--muted); font-size: .95rem; }
.overview__quote-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: 22px; }

.overview__figure { margin: 0; }
.overview__figure img { width: 100%; border-radius: 6px; box-shadow: var(--shadow-soft); aspect-ratio: 3/4; object-fit: cover; }

.overview__body h2 { margin-bottom: 18px; }
.overview__body p { color: var(--body); }

/* ==========================================================================
   Core Values
   ========================================================================== */
.values {
	position: relative; padding: clamp(70px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
	background-size: cover; background-position: center; color: #fff; overflow: hidden;
}
.values__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(28,60,50,.55) 0%, rgba(31,90,66,.6) 40%, rgba(43,182,115,.92) 100%);
}
.values__inner { position: relative; }
.values__heading {
	color: #fff; font-family: var(--font-display); font-weight: 700;
	font-size: clamp(2rem, 4vw, 3rem); line-height: 1.02; margin: 0 0 clamp(30px, 5vw, 54px);
}
.values__cards {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px);
}
.value-card {
	background: #fff; border-radius: 10px; padding: 30px 22px 34px;
	text-align: center; box-shadow: var(--shadow-card);
	display: flex; flex-direction: column; align-items: center; gap: 22px;
	min-height: 190px; justify-content: flex-start;
}
.value-card__icon {
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--green-400); color: #fff;
	display: grid; place-items: center;
}
.value-card__icon svg { width: 30px; height: 30px; }
.value-card__title {
	font-family: var(--font-display); font-weight: 600; color: var(--ink);
	font-size: 1rem; line-height: 1.3; margin: 0;
}

/* ==========================================================================
   Impact Stories
   ========================================================================== */
.impact { background: var(--green-900); color: #fff; padding: clamp(56px, 8vw, 96px) 0; }
.impact__heading { color: var(--green-400); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 30px; }

.impact__slides { position: relative; }
.impact-card {
	display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: stretch;
	background: transparent;
}
.impact-card:not(.is-active) { display: none; }
.impact-card__media {
	background-size: cover; background-position: center;
	border-radius: 4px 0 0 4px; min-height: 340px;
}
.impact-card__body {
	background: #fff; color: var(--body);
	border-radius: 0 4px 4px 0; padding: clamp(28px, 4vw, 48px);
	display: flex; flex-direction: column; justify-content: center;
}
.impact-card__title { color: var(--green-500); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.impact-card__text { color: var(--muted); }

.impact__dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.impact__dot { background: rgba(255,255,255,.35); }
.impact__dot.is-active { background: #fff; }

/* ==========================================================================
   Institutions directory (image 2)
   ========================================================================== */
.inst-hero { padding: clamp(28px, 4vw, 48px) 0 0; }
.inst-hero__image {
	width: 100%; aspect-ratio: 16 / 6.4; min-height: 260px;
	background-size: cover; background-position: center;
	border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
}

.directory { padding: clamp(36px, 5vw, 64px) 0 clamp(56px, 8vw, 96px); }
.directory__title {
	color: var(--green-900); font-weight: 700;
	font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 26px;
}

.directory__tabs {
	display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 44px);
	border-bottom: 1px solid var(--line); margin-bottom: clamp(34px, 5vw, 56px);
}
.directory__tab {
	background: transparent; border: 0; cursor: pointer;
	font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.15rem);
	color: var(--ink); padding: 0 0 16px; position: relative; white-space: nowrap;
}
.directory__tab::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
	height: 3px; background: var(--green-500); border-radius: 3px;
	transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.directory__tab.is-active { color: var(--green-500); }
.directory__tab.is-active::after { transform: scaleX(1); }
.directory__tab:hover { color: var(--green-600); }

.directory__panel[hidden] { display: none; }
.inst-card.is-hidden { display: none; }
.directory__empty {
	grid-column: 1 / -1; text-align: center;
	color: var(--body); font-size: 1.02rem; padding: 40px 0;
}
.directory__empty[hidden] { display: none; }
.directory__grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 30px);
}
.inst-card {
	display: flex; flex-direction: column; align-items: center; gap: 16px;
	text-align: center; color: var(--green-900);
	transition: transform .18s ease;
}
a.inst-card:hover { transform: translateY(-4px); }
.inst-card__crest {
	width: clamp(110px, 12vw, 150px); height: clamp(110px, 12vw, 150px);
	display: grid; place-items: center;
}
.inst-card__crest img { width: 100%; height: 100%; object-fit: contain; }
.inst-card__name {
	font-family: var(--font-display); font-weight: 500;
	color: var(--green-900); font-size: 1.02rem; line-height: 1.3; max-width: 16ch;
}

/* ==========================================================================
   Generic pages
   ========================================================================== */
.page-body { padding: clamp(40px, 6vw, 80px) 0; }
.entry__title { color: var(--green-900); }
.entry--institution { text-align: center; }
.entry__crest { width: 160px; margin: 0 auto 20px; }
.entry__types { color: var(--muted); }
.entry__content { color: var(--body); }
.entry__content a { text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-800); color: rgba(255,255,255,.82); padding: clamp(50px, 7vw, 84px) 0 clamp(40px, 5vw, 60px); }
.site-footer__grid {
	display: grid; grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: clamp(30px, 5vw, 70px); align-items: start;
}
.site-footer__logo {
	display: inline-block;
	margin-bottom: 18px;
}
.site-footer__logo img {
	max-height: 82px;
	width: auto;
}
.site-footer__rights { font-size: .82rem; color: rgba(255,255,255,.6); }
.site-footer__col h4,
.site-footer__address strong { color: #fff; }
.site-footer__address { font-style: normal; line-height: 1.9; }
.site-footer__contact a { color: rgba(255,255,255,.85); }
.site-footer__contact a:hover { color: #fff; }

.site-footer__social { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.site-footer__social span { font-size: .9rem; color: rgba(255,255,255,.7); margin-right: 4px; }
.site-footer__social a { color: rgba(255,255,255,.85); }
.site-footer__social a:hover { color: var(--green-400); }
.site-footer__social svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.overview__grid { grid-template-columns: 1fr 1fr; }
	.overview__quote { grid-column: 1 / -1; order: 3; }
	.overview__figure { order: 1; }
	.overview__body { order: 2; }
	.values__cards { grid-template-columns: repeat(2, 1fr); }
	.directory__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed; inset: 82px 0 auto 0;
		background: #fff; flex-direction: column; align-items: flex-start;
		gap: 0; padding: 10px var(--gutter) 24px;
		box-shadow: var(--shadow-soft);
		transform: translateY(-120%); transition: transform .3s ease; z-index: 55;
	}
	.site-nav.is-open { transform: translateY(0); }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.nav-menu a { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
	.nav-search { margin-top: 8px; }

	.hero { display: flex; flex-direction: column; }
	.hero__stage { position: relative; order: -1; height: clamp(300px, 74vw, 440px); }
	.hero__inner { min-height: 0; padding-top: 24px; justify-content: flex-start; }
	.hero__stage .hero__arc, .hero__stage .hero__image {
		clip-path: none;
		inset: auto; top: 50%; right: 50%;
		width: clamp(280px, 84vw, 440px); height: clamp(280px, 84vw, 440px);
		border-radius: 50%;
	}
	.hero__stage .hero__arc { transform: translate(50%, -50%); }
	.hero__stage .hero__image { transform: translate(50%, -50%) translate(5%, 4%); }
	.hero__copy { max-width: none; }
	.hero__body { max-width: none; }
	.hero__inner { padding-bottom: clamp(28px, 6vw, 40px); }
	.hero__dots { position: static; bottom: auto; margin-top: clamp(22px, 5vw, 32px); }

	.band__grid { grid-template-columns: 1fr; }
	.overview__grid { grid-template-columns: 1fr; }
	.overview__quote, .overview__figure, .overview__body { order: initial; }
	.overview__figure { max-width: 420px; }

	.impact-card { grid-template-columns: 1fr; }
	.impact-card__media { border-radius: 4px 4px 0 0; min-height: 240px; }
	.impact-card__body { border-radius: 0 0 4px 4px; }

	.directory__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr; }
	.site-footer__logo img { max-height: 64px; }
}

@media (max-width: 480px) {
	.values__cards { grid-template-columns: 1fr; }
	.directory__tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Interior pages (About, Research, Contact)
   ========================================================================== */

/* ---- Page hero (full width background image + overlay) --------------- */
.page-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--green-900);
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}
/* Overlay: dark green on the text side, easing lighter across the photo
   so the image stays visible while white text keeps its contrast. */
.page-hero__overlay {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(90deg,
		rgba(20, 48, 40, 0.82) 0%,
		rgba(20, 48, 40, 0.62) 42%,
		rgba(20, 48, 40, 0.34) 100%);
}
.page-hero__inner {
	position: relative; z-index: 2;
	display: flex; flex-direction: column; justify-content: center;
	min-height: clamp(300px, 40vw, 440px);
	padding: clamp(52px, 7vw, 96px) 0;
}
.page-hero__copy { max-width: 60ch; }
.page-hero__eyebrow {
	display: inline-block; font-family: var(--font-display); font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase; font-size: .74rem;
	color: var(--green-400); margin-bottom: 18px;
}
.page-hero__title {
	color: #fff; font-family: var(--font-display); font-weight: 800;
	font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05; letter-spacing: -.02em;
	margin: 0 0 18px;
	text-shadow: 0 2px 20px rgba(12, 30, 25, 0.35);
}
.page-hero__title em { color: var(--green-400); font-style: normal; }
.page-hero__lead { color: rgba(255,255,255,.9); font-size: 1.08rem; max-width: 52ch; margin: 0; }

/* Plain variant: centred text with an even overlay */
.page-hero--plain .page-hero__overlay {
	background: linear-gradient(180deg, rgba(20, 48, 40, 0.72) 0%, rgba(20, 48, 40, 0.58) 100%);
}
.page-hero--plain .page-hero__inner { align-items: center; text-align: center; }
.page-hero--plain .page-hero__copy { max-width: 62ch; }
.page-hero--plain .page-hero__lead { margin-inline: auto; }

/* ---- Section scaffolding -------------------------------------------- */
.section { padding: clamp(52px, 7vw, 92px) 0; }
.section--muted { background: var(--paper-2); }
.section--dark { background: var(--green-900); color: #fff; }
.section__eyebrow {
	font-family: var(--font-display); font-weight: 600; letter-spacing: .12em;
	text-transform: uppercase; font-size: .74rem; color: var(--green-500); margin: 0 0 12px;
}
.section__title { color: var(--green-900); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 18px; }
.section--dark .section__title { color: #fff; }
.section--dark .section__eyebrow { color: var(--green-400); }
.section__intro { max-width: 62ch; color: var(--body); font-size: 1.05rem; }
.section--dark .section__intro { color: rgba(255,255,255,.85); }
.section__head { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 48px); }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---- Split (text + figure) ------------------------------------------ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split--flip .split__figure { order: -1; }
.split__body h2 { color: var(--green-900); font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.split__body p { color: var(--body); }
.split__figure { margin: 0; position: relative; }
.split__figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4/3; object-fit: cover; }

/* ---- Checklist / pill lists ----------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; }
.checklist--one { grid-template-columns: 1fr; }
.checklist li {
	position: relative; padding-left: 34px; color: var(--body);
	font-weight: 500; line-height: 1.5;
}
.checklist li::before {
	content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
	border-radius: 50%; background: var(--green-050);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%232bb673' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 15px; background-repeat: no-repeat; background-position: center;
}
.section--dark .checklist li { color: rgba(255,255,255,.88); }
.section--dark .checklist li::before { background-color: rgba(52,199,125,.18); }

.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; padding: 0; list-style: none; }
.pill-grid li {
	font-family: var(--font-display); font-weight: 500; font-size: .98rem;
	background: #fff; color: var(--green-900); border: 1px solid var(--line);
	padding: 11px 20px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.section--muted .pill-grid li { background: #fff; }

/* ---- Feature cards --------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.feature-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 30px 28px; box-shadow: var(--shadow-card);
	display: flex; flex-direction: column; gap: 14px;
}
.feature-card__icon {
	width: 54px; height: 54px; border-radius: 14px; background: var(--green-050);
	color: var(--green-500); display: grid; place-items: center; margin-bottom: 4px;
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card__title { font-family: var(--font-display); font-weight: 600; color: var(--green-900); font-size: 1.15rem; margin: 0; }
.feature-card ul { margin: 4px 0 0; padding-left: 18px; color: var(--body); }
.feature-card ul li { margin-bottom: 7px; }

/* ---- Stats ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 34px); }
.stat { text-align: center; }
.stat__num {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1; color: var(--green-400);
	letter-spacing: -.02em;
}
.stat__label { display: block; margin-top: 10px; color: rgba(255,255,255,.82); font-size: .96rem; }
.section--muted .stat__num { color: var(--green-500); }
.section--muted .stat__label { color: var(--body); }

/* ---- Partners -------------------------------------------------------- */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
.partners li {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 22px 24px; font-family: var(--font-display); font-weight: 500;
	color: var(--green-900); box-shadow: var(--shadow-soft); line-height: 1.4;
	display: flex; align-items: center; gap: 14px;
}
.partners li::before {
	content: ""; flex: 0 0 auto; width: 10px; height: 34px; border-radius: 4px;
	background: linear-gradient(180deg, var(--green-400), var(--green-500));
}

/* ---- CTA band -------------------------------------------------------- */
.cta-band { background: linear-gradient(120deg, var(--green-600), var(--green-500)); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: clamp(40px, 5vw, 64px) 0; }
.cta-band__title { color: #fff; font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0; max-width: 22ch; }
.cta-band .btn--dark { background: var(--green-900); }
.cta-band .btn--dark:hover { background: #163029; }

/* ---- Contact --------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
	flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
	background: var(--green-050); color: var(--green-500); display: grid; place-items: center;
}
.contact-item__icon svg { width: 24px; height: 24px; }
.contact-item h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-900); margin: 0 0 4px; }
.contact-item p, .contact-item address { margin: 0; font-style: normal; color: var(--body); line-height: 1.6; }
.contact-item a { color: var(--body); }
.contact-item a:hover { color: var(--green-500); }

.contact-map { margin-top: 4px; }
.contact-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.contact-form {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-card);
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--green-900); }
.field input, .field textarea, .field select {
	font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2);
	transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--green-400); box-shadow: 0 0 0 3px rgba(52,199,125,.18); background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.form-notice { border-radius: 10px; padding: 14px 18px; margin-bottom: 22px; font-weight: 500; }
.form-notice--ok { background: var(--green-050); color: #1c6b47; border: 1px solid rgba(43,182,115,.4); }
.form-notice--err { background: #fdeceb; color: #a5342a; border: 1px solid #f3c6c1; }

/* ---- Interior responsive -------------------------------------------- */
@media (max-width: 1024px) {
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.partners { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	.split { grid-template-columns: 1fr; }
	.split--flip .split__figure { order: initial; }
	.split__figure { max-width: 520px; }
	.checklist { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.contact-form__row { grid-template-columns: 1fr; }
	.contact-map iframe { height: 320px; }
}
@media (max-width: 560px) {
	.feature-grid, .partners { grid-template-columns: 1fr; }
	.stats { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Comments, pagination, misc utilities
   ========================================================================== */
.comments-area { padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--line); }
.comments-title { margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0 0 30px; padding: 0; }
.comment-list .children { list-style: none; margin: 0; padding-left: 28px; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--line); }
.comment-author .fn { font-family: var(--font-display); font-weight: 600; color: var(--green-900); }
.comment-metadata a { color: var(--muted); font-size: .85rem; }
.comment-respond { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px); }
.comment-respond .comment-reply-title { color: var(--green-900); font-family: var(--font-display); }
.comment-form label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--green-900); margin-bottom: 6px; }
.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea {
	width: 100%; font-family: var(--font-body); font-size: 1rem;
	padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px;
	background: #fff; margin-bottom: 16px;
}
.comment-form input:focus, .comment-form textarea:focus {
	outline: none; border-color: var(--green-400); box-shadow: 0 0 0 3px rgba(52,199,125,.18);
}

.pagination, .nav-links {
	display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 40px;
}
.pagination .page-numbers, .nav-links .page-numbers {
	display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
	border: 1px solid var(--line); border-radius: 10px; color: var(--green-900);
	font-family: var(--font-display); font-weight: 500;
}
.pagination .page-numbers.current { background: var(--green-500); color: #fff; border-color: var(--green-500); }
.pagination a.page-numbers:hover { border-color: var(--green-400); color: var(--green-500); }

.entry__thumb { margin: 0 0 26px; border-radius: var(--radius); overflow: hidden; }
.entry__thumb img { width: 100%; }

/* 404 / search center the search form nicely */
.error404 .search-form, .search .wrap--narrow .search-form { max-width: 520px; margin: 0 auto; }

/* ==========================================================================
   Hover & transitions (moderate, institutional)
   Kept subtle: short color fades, small lifts, slow gentle photo zoom.
   All of this is disabled automatically under prefers-reduced-motion
   by the guard at the foot of this file.
   ========================================================================== */

/* Smooth the color changes that were previously instant */
.nav-menu a,
.nav-search,
.site-footer__contact a,
.site-footer__social a,
.entry__content a,
.contact-item a,
.link-arrow,
.hero__cta { transition: color .2s ease; }

.nav-search { transition: color .2s ease, transform .2s ease; }
.nav-search:hover { color: var(--green-500); }

.site-branding a { transition: opacity .2s ease; }
.site-branding a:hover { opacity: .82; }

/* Footer logo: gentle fade to signal it links home */
.site-footer__logo { transition: opacity .2s ease; }
.site-footer__logo:hover { opacity: .85; }

/* Cards: a small lift and a touch more shadow */
.value-card {
	transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 50px -24px rgba(20, 50, 40, 0.5);
}
.value-card__icon { transition: transform .25s ease; }
.value-card:hover .value-card__icon { transform: scale(1.06); }

.feature-card {
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(43, 182, 115, 0.4);
	box-shadow: 0 24px 46px -26px rgba(20, 50, 40, 0.45);
}

.partners li {
	transition: transform .25s ease, box-shadow .25s ease;
}
.partners li:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 34px -22px rgba(20, 50, 40, 0.4);
}

/* Pills: quiet border and color shift */
.pill-grid li {
	transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pill-grid li:hover {
	border-color: var(--green-400);
	color: var(--green-600);
	transform: translateY(-2px);
}

/* Photos: slow, small zoom inside their rounded frame */
.overview__figure,
.split__figure,
.entry__thumb { overflow: hidden; }
.overview__figure img,
.split__figure img,
.entry__thumb img { transition: transform .5s ease; }
.overview__figure:hover img,
.split__figure:hover img,
.entry__thumb:hover img { transform: scale(1.04); }

/* Institution crest: gentle scale to signal it is clickable */
.inst-card__crest img { transition: transform .25s ease; }
a.inst-card:hover .inst-card__crest img { transform: scale(1.05); }

/* Carousel dots respond to hover */
.hero__dot:hover,
.impact__dot:hover { transform: scale(1.25); }

/* Content links pick up brand colour on hover */
.entry__content a:hover { color: var(--green-600); }

/* CTA band button lift is covered by .btn; add a soft header cue on scroll-free state */
.cta-band .btn { transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }