/* =====================================================================
   Gurukul — theme.css
   All values derive from DESIGN-LANGUAGE.md. Change tokens, not literals.
   ===================================================================== */

/* -------- 1. Tokens ------------------------------------------------- */
:root {
	/* Color */
	--gk-paper: #FBFAF6;
	--gk-surface: #FFFFFF;
	--gk-surface-2: #F3F1E9;
	--gk-ink: #14231F;
	--gk-ink-2: #48564F;
	--gk-muted: #6E7B74;
	--gk-line: #E5E2D7;
	--gk-primary: #0D4A42;
	--gk-primary-700: #0A3B35;
	--gk-primary-600: #10564C;
	--gk-primary-500: #16786C;
	--gk-primary-tint: #E6F0ED;
	--gk-accent: #E7A233;
	--gk-accent-600: #CE8C1E;
	--gk-accent-tint: #FBEFD5;
	--gk-alert: #C13A2D;
	--gk-alert-tint: #F8E4E1;
	--gk-success: #2E7D5B;

	/* Type */
	--ff-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--ff-body: "Mulish", "Noto Sans Devanagari", "Segoe UI", system-ui, -apple-system, sans-serif;
	--ff-motto: "Rozha One", "Tiruvalluvar", Georgia, serif;

	--fs-display: clamp(2.6rem, 6vw, 4.25rem);
	--fs-h1: clamp(2rem, 4vw, 2.85rem);
	--fs-h2: clamp(1.6rem, 3vw, 2.15rem);
	--fs-h3: 1.35rem;
	--fs-lead: 1.15rem;
	--fs-body: 1rem;
	--fs-small: 0.9rem;
	--fs-eyebrow: 0.78rem;

	/* Space */
	--sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
	--sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;

	/* Layout */
	--gk-wide: 1240px;
	--gk-container: 1120px;
	--gk-narrow: 760px;
	--gutter: clamp(1rem, 4vw, 2rem);
	--section-y: clamp(3rem, 7vw, 6rem);

	/* Shape & elevation */
	--r-sm: 8px; --r: 14px; --r-lg: 20px; --r-pill: 999px;
	--shadow-sm: 0 1px 2px rgba(20,35,31,.06);
	--shadow: 0 8px 24px -10px rgba(13,74,66,.18);
	--shadow-lg: 0 26px 55px -22px rgba(13,74,66,.28);

	/* Motion */
	--ease: cubic-bezier(.22,.61,.36,1);
	--dur: 240ms;
	--dur-slow: 500ms;

	--header-h: 76px;
}

/* -------- 2. Base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--gk-ink);
	background: var(--gk-paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--gk-primary-500); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gk-primary); }
p { margin: 0 0 var(--sp-4); }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 var(--sp-3); font-family: var(--ff-display); font-weight: 600; line-height: 1.15; color: var(--gk-ink); }
strong { font-weight: 700; }
:focus-visible { outline: 2px solid var(--gk-primary-500); outline-offset: 2px; border-radius: 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;
}
.gk-skip {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--gk-primary); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.gk-skip:focus { left: 0; color: #fff; }

/* -------- 3. Layout ------------------------------------------------- */
.gk-wide, .gk-container, .gk-narrow { width: 100%; margin-inline: auto; padding-inline: var(--gutter); }
.gk-wide { max-width: var(--gk-wide); }
.gk-container { max-width: var(--gk-container); }
.gk-narrow { max-width: var(--gk-narrow); }
.gk-section { padding-block: var(--section-y); }
.gk-section--band { background: var(--gk-surface-2); }
.gk-main { display: block; }
/* Grid/flex children default to min-width:auto and refuse to shrink below their
   content, which pushes long words and wide media past the viewport. */
.gk-list__grid > *, .gk-single__grid > *, .gk-footer__grid > *, .gk-about__grid > *,
.gk-bulletin__grid > *, .gk-programs__grid > *, .gk-quicklinks__grid > *,
.gk-voices__grid > *, .gk-principal__grid > *, .gk-card, .gk-stat { min-width: 0; }

.gk-section__head { max-width: 40ch; margin-bottom: var(--sp-6); }
.gk-section__head--left { max-width: none; margin-bottom: var(--sp-5); }

/* -------- 4. Type helpers ------------------------------------------ */
.gk-h2 { font-size: var(--fs-h2); }
.gk-h3 { font-size: var(--fs-h3); }
.gk-lead { font-size: var(--fs-lead); color: var(--gk-ink-2); line-height: 1.6; }
.gk-eyebrow {
	display: inline-flex; align-items: center; gap: .6rem;
	font-family: var(--ff-body); font-weight: 800; font-size: var(--fs-eyebrow);
	text-transform: uppercase; letter-spacing: .14em; color: var(--gk-primary-500);
	margin: 0 0 var(--sp-3);
}
.gk-eyebrow--light { color: var(--gk-accent); }
.gk-rule { display: inline-block; width: 26px; height: 2px; background: var(--gk-accent); border-radius: 2px; }

/* -------- 5. Buttons, links, tags ---------------------------------- */
.gk-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-family: var(--ff-body); font-weight: 700; font-size: 1rem; line-height: 1;
	padding: .85rem 1.35rem; border-radius: var(--r); border: 1px solid transparent;
	cursor: pointer; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
	text-align: center;
}
.gk-btn svg { flex: none; }
.gk-btn--accent { background: var(--gk-accent); color: var(--gk-ink); }
.gk-btn--accent:hover { background: var(--gk-accent-600); color: var(--gk-ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.gk-btn--primary { background: var(--gk-primary); color: #fff; }
.gk-btn--primary:hover { background: var(--gk-primary-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.gk-btn--outline { background: transparent; color: var(--gk-primary); border-color: var(--gk-primary); }
.gk-btn--outline:hover { background: var(--gk-primary-tint); color: var(--gk-primary); }
.gk-btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.gk-btn--ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.gk-btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }

.gk-linkarrow {
	display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--gk-primary);
}
.gk-linkarrow svg { transition: transform var(--dur) var(--ease); }
.gk-linkarrow:hover svg { transform: translateX(4px); }
.gk-linkarrow--light { color: var(--gk-accent); }
.gk-linkarrow--light:hover { color: #fff; }
.gk-back { margin-top: var(--sp-6); }

.gk-tag {
	display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .02em;
	padding: .2rem .55rem; border-radius: var(--r-pill);
	background: var(--gk-primary-tint); color: var(--gk-primary);
	text-transform: uppercase;
}
.gk-tag--urgent { background: var(--gk-alert-tint); color: var(--gk-alert); }

.gk-pill {
	display: inline-flex; align-items: center; font-weight: 600; font-size: .92rem;
	padding: .45rem .95rem; border-radius: var(--r-pill);
	border: 1px solid var(--gk-line); background: var(--gk-surface); color: var(--gk-ink-2);
	transition: all var(--dur) var(--ease);
}
.gk-pill:hover { border-color: var(--gk-primary-500); color: var(--gk-primary); }
.gk-pill.is-active { background: var(--gk-primary); border-color: var(--gk-primary); color: #fff; }
.gk-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-6); }

.gk-empty { color: var(--gk-muted); padding: var(--sp-6); text-align: center; background: var(--gk-surface); border: 1px dashed var(--gk-line); border-radius: var(--r); }

/* Shared Marigold Bulletin date chip */
.gk-datechip {
	flex: none; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	width: 54px; padding: .35rem 0; border-radius: var(--r-sm);
	background: var(--gk-surface); border: 1px solid var(--gk-line); border-top: 3px solid var(--gk-accent);
	font-variant-numeric: tabular-nums; line-height: 1;
}
.gk-datechip__day { font-family: var(--ff-display); font-weight: 600; font-size: 1.35rem; color: var(--gk-primary); }
.gk-datechip__mon { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gk-muted); margin-top: 2px; }
.is-urgent .gk-datechip { border-top-color: var(--gk-alert); }
.is-urgent .gk-datechip__day { color: var(--gk-alert); }

/* -------- 6. Utility bar + header ---------------------------------- */
.gk-utilitybar { background: var(--gk-primary-700); color: rgba(255,255,255,.85); font-size: var(--fs-small); }
.gk-utilitybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.gk-utilitybar__contact { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.gk-utilitybar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .4rem; }
.gk-utilitybar a:hover { color: #fff; }
.gk-utilitybar__right { display: flex; align-items: center; gap: 1rem; }
.gk-utilmenu__list { list-style: none; display: flex; gap: 1rem; }
.gk-utilmenu__list a { font-weight: 600; }

.gk-header {
	position: sticky; top: 0; z-index: 50; background: var(--gk-surface);
	border-bottom: 1px solid var(--gk-line);
	transition: box-shadow var(--dur) var(--ease);
}
.gk-header.is-stuck { box-shadow: var(--shadow); }
.gk-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }

.gk-brand__link, .gk-foot-brand { display: inline-flex; align-items: center; gap: .7rem; }
.gk-brand__mark {
	flex: none; width: 46px; height: 46px; border-radius: 12px;
	display: grid; place-items: center; font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem;
	color: #fff; background: linear-gradient(150deg, var(--gk-primary) 30%, var(--gk-primary-500));
	letter-spacing: .02em;
}
.gk-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.gk-brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; color: var(--gk-ink); }
.gk-brand__tag { font-size: .74rem; color: var(--gk-muted); letter-spacing: .02em; }
.gk-brand__logo { flex: none; max-height: 56px; width: auto; }

.gk-nav { margin-left: auto; }
.gk-nav__list { list-style: none; display: flex; align-items: center; gap: .35rem; }
.gk-nav__list a { display: inline-block; padding: .55rem .75rem; border-radius: var(--r-sm); font-weight: 600; color: var(--gk-ink); white-space: nowrap; }
.gk-nav__list a:hover { background: var(--gk-primary-tint); color: var(--gk-primary); }
.gk-nav__list .current-menu-item > a,
.gk-nav__list .current-menu-parent > a { color: var(--gk-primary); box-shadow: inset 0 -2px 0 var(--gk-accent); border-radius: 0; }

/* Dropdowns */
.gk-nav__list .sub-menu {
	position: absolute; list-style: none; min-width: 220px; margin-top: .5rem;
	background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r);
	box-shadow: var(--shadow); padding: .4rem; opacity: 0; visibility: hidden;
	transform: translateY(6px); transition: all var(--dur) var(--ease); z-index: 60;
}
.gk-nav__list li { position: relative; }
.gk-nav__list li:hover > .sub-menu,
.gk-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.gk-nav__list .sub-menu a { display: block; padding: .5rem .7rem; }

.gk-header__actions { display: flex; align-items: center; gap: .6rem; }
.gk-nav { }
.gk-header__inner .gk-nav + .gk-header__actions { margin-left: 0; }
.gk-iconbtn {
	display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-sm);
	background: transparent; border: 1px solid transparent; color: var(--gk-ink); cursor: pointer;
	transition: background var(--dur) var(--ease);
}
.gk-iconbtn:hover { background: var(--gk-primary-tint); color: var(--gk-primary); }
.gk-burger { display: none; }

/* -------- 7. News ticker (Marigold Bulletin) ----------------------- */
.gk-ticker { background: var(--gk-primary); color: #fff; overflow: hidden; }
.gk-ticker__inner { display: flex; align-items: stretch; gap: 0; min-height: 46px; }
.gk-ticker__label {
	flex: none; display: inline-flex; align-items: center; gap: .45rem;
	background: var(--gk-accent); color: var(--gk-ink); font-weight: 800; font-size: .82rem;
	text-transform: uppercase; letter-spacing: .06em; padding: 0 1rem;
	clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
	padding-right: 1.9rem;
}
.gk-ticker__toggle {
	flex: none; width: 40px; background: transparent; border: 0; color: rgba(255,255,255,.75);
	cursor: pointer; font-size: .7rem; letter-spacing: 1px;
}
.gk-ticker__toggle:hover { color: #fff; }
.gk-ticker__viewport { position: relative; overflow: hidden; flex: 1; display: flex; align-items: center; -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.gk-ticker__track {
	list-style: none; display: flex; align-items: center; gap: 2.5rem; white-space: nowrap;
	will-change: transform; animation: gk-marquee var(--gk-marquee-dur, 40s) linear infinite;
}
.gk-ticker:hover .gk-ticker__track,
.gk-ticker.is-paused .gk-ticker__track { animation-play-state: paused; }
.gk-ticker__item { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; }
.gk-ticker__item a, .gk-ticker__item span { color: #fff; }
.gk-ticker__item a:hover { color: var(--gk-accent-tint); text-decoration: underline; }
.gk-ticker__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gk-accent); flex: none; }
.gk-ticker__date { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gk-accent-tint); font-size: .82rem; }
@keyframes gk-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------- 8. Drawer + search overlay ------------------------------- */
.gk-drawer, .gk-searchbox { position: fixed; inset: 0; z-index: 100; }
.gk-drawer[hidden], .gk-searchbox[hidden] { display: none; }
.gk-drawer__scrim, .gk-searchbox__scrim { position: absolute; inset: 0; background: rgba(10,30,26,.5); border: 0; cursor: pointer; }
.gk-drawer__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
	background: var(--gk-surface); box-shadow: var(--shadow-lg); padding: 1.25rem 1.25rem 2rem;
	display: flex; flex-direction: column; gap: 1rem; overflow-y: auto;
	transform: translateX(100%); transition: transform var(--dur-slow) var(--ease);
}
.gk-drawer.is-open .gk-drawer__panel { transform: translateX(0); }
.gk-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: .75rem; border-bottom: 1px solid var(--gk-line); }
.gk-drawer__list { list-style: none; display: flex; flex-direction: column; }
.gk-drawer__list a { display: block; padding: .8rem .25rem; font-weight: 600; color: var(--gk-ink); border-bottom: 1px solid var(--gk-line); }
.gk-drawer__list .sub-menu { list-style: none; padding-left: 1rem; }
.gk-drawer__list .sub-menu a { font-weight: 500; color: var(--gk-ink-2); }
.gk-drawer__cta { margin-top: .5rem; }
.gk-drawer__contact { display: flex; flex-direction: column; gap: .5rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--gk-line); }
.gk-drawer__contact a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gk-ink-2); font-weight: 600; }

.gk-searchbox__panel {
	position: absolute; top: 0; left: 0; right: 0; background: var(--gk-surface);
	padding: clamp(1.5rem, 5vw, 3rem) var(--gutter); box-shadow: var(--shadow-lg);
	display: flex; align-items: center; gap: 1rem; max-width: var(--gk-container); margin-inline: auto;
	transform: translateY(-100%); transition: transform var(--dur-slow) var(--ease);
}
.gk-searchbox.is-open .gk-searchbox__panel { transform: translateY(0); }
.gk-searchbox__panel .gk-searchform { flex: 1; }

/* -------- 9. Hero slider ------------------------------------------- */
.gk-hero { position: relative; background: radial-gradient(130% 130% at 12% 0%, var(--gk-primary-500), var(--gk-primary-700) 70%); }
.gk-hero__stage { position: relative; height: clamp(440px, 68vh, 660px); }
.gk-slide {
	position: absolute; inset: 0; display: flex; align-items: center;
	background-size: cover; background-position: center;
	opacity: 0; visibility: hidden; transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
}
.gk-slide.is-active { opacity: 1; visibility: visible; }
.gk-slide--fallback { background: radial-gradient(120% 120% at 20% 0%, var(--gk-primary-500), var(--gk-primary-700)); }
.gk-slide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,30,26,.86) 0%, rgba(10,30,26,.62) 42%, rgba(10,30,26,.15) 100%); }
.gk-slide__body { position: relative; max-width: var(--gk-wide); color: #fff; padding-block: 2rem; }
.gk-slide__body > * { max-width: 640px; margin-inline: 0; }
.gk-slide__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: .14em; color: var(--gk-accent-tint); margin: 0 0 var(--sp-3); }
.gk-slide__title { font-size: var(--fs-display); color: #fff; line-height: 1.03; margin: 0 0 var(--sp-4); text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.gk-slide__text { font-size: var(--fs-lead); color: rgba(255,255,255,.92); max-width: 48ch; margin: 0 0 var(--sp-5); }
.gk-slide__text p:last-child { margin-bottom: 0; }
.gk-slide__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.gk-hero__arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
	background: rgba(10,30,26,.35); color: #fff; cursor: pointer; display: grid; place-items: center;
	transition: background var(--dur) var(--ease);
	-webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.gk-hero__arrow:hover { background: var(--gk-accent); color: var(--gk-ink); border-color: var(--gk-accent); }
.gk-hero__arrow--prev { left: clamp(.75rem, 3vw, 2rem); }
.gk-hero__arrow--next { right: clamp(.75rem, 3vw, 2rem); }
.gk-hero__dots { position: absolute; bottom: 1.25rem; left: 0; right: 0; display: flex; justify-content: center; gap: .5rem; z-index: 3; }
.gk-hero__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: all var(--dur) var(--ease); padding: 0; }
.gk-hero__dot.is-active { background: var(--gk-accent); width: 28px; border-radius: var(--r-pill); }

/* -------- 10. Quick links ------------------------------------------ */
.gk-quicklinks { padding-block: clamp(2rem, 4vw, 3rem); }
.gk-quicklinks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gk-quick {
	display: flex; align-items: center; gap: .9rem; padding: 1.15rem 1.25rem;
	background: var(--gk-primary-tint); border: 1px solid transparent; border-radius: var(--r);
	color: var(--gk-ink); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.gk-quick:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gk-primary-tint); color: var(--gk-ink); }
.gk-quick__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gk-surface); color: var(--gk-accent-600); box-shadow: var(--shadow-sm); }
.gk-quick__text { display: flex; flex-direction: column; line-height: 1.25; }
.gk-quick__label { font-weight: 800; font-size: 1.02rem; }
.gk-quick__sub { font-size: .82rem; color: var(--gk-muted); }
.gk-quick__arrow { margin-left: auto; color: var(--gk-primary-500); transition: transform var(--dur) var(--ease); }
.gk-quick:hover .gk-quick__arrow { transform: translateX(4px); }

/* -------- 11. About + stats ---------------------------------------- */
.gk-about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.gk-stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gk-line); border: 1px solid var(--gk-line); border-radius: var(--r); overflow: hidden; }
.gk-stat { background: var(--gk-surface); padding: 1.5rem; text-align: center; }
.gk-stat__num { display: block; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--gk-primary); font-variant-numeric: tabular-nums; }
.gk-stat__label { display: block; font-size: .85rem; color: var(--gk-muted); margin-top: .25rem; }
.gk-about__figure { margin: 0; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; background: var(--gk-primary-tint); box-shadow: var(--shadow); }
.gk-about__figure img { width: 100%; height: 100%; object-fit: cover; }
.gk-about__ph { display: grid; place-items: center; height: 100%; color: var(--gk-primary-500); opacity: .5; }

/* -------- 12. Principal band --------------------------------------- */
.gk-principal { background: var(--gk-primary); color: #fff; }
.gk-principal__grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.gk-principal__photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--gk-primary-700); }
.gk-principal__photo img { width: 100%; height: 100%; object-fit: cover; }
.gk-principal__placeholder { display: grid; place-items: center; height: 100%; color: rgba(255,255,255,.4); }
.gk-principal__quote { font-family: var(--ff-display); font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.45; margin: 0 0 var(--sp-5); color: #fff; }
.gk-principal__by { display: flex; flex-direction: column; line-height: 1.3; margin: 0 0 var(--sp-4); }
.gk-principal__by strong { font-size: 1.1rem; }
.gk-principal__by span { color: var(--gk-accent-tint); font-size: .9rem; }

/* -------- 13. Programs --------------------------------------------- */
.gk-programs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.gk-program {
	background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r); padding: 1.6rem 1.4rem;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gk-program:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gk-program__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--gk-primary-tint); color: var(--gk-primary); margin-bottom: 1rem; }
.gk-program__title { font-size: 1.25rem; margin-bottom: .15rem; }
.gk-program__grades { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gk-accent-600); margin: 0 0 var(--sp-3); }
.gk-program__text { font-size: .95rem; color: var(--gk-ink-2); margin: 0; }

/* -------- 14. Bulletin: notice board + events ---------------------- */
.gk-bulletin__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.gk-noticeboard, .gk-bulletin__events { background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.gk-noticeboard__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gk-line); }
.gk-noticeboard__title { display: inline-flex; align-items: center; gap: .5rem; font-size: 1.2rem; margin: 0; }
.gk-noticeboard__title svg { color: var(--gk-accent-600); }
.gk-noticeboard__list { list-style: none; display: flex; flex-direction: column; }
.gk-notice { display: flex; align-items: flex-start; gap: 1rem; padding: .95rem 0; border-bottom: 1px dashed var(--gk-line); }
.gk-notice:last-child { border-bottom: 0; padding-bottom: 0; }
.gk-noticeboard__list--full .gk-notice { padding: 1.1rem .25rem; border-bottom: 1px solid var(--gk-line); }
.gk-notice__body { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .6rem; }
.gk-notice__title { flex-basis: 100%; font-weight: 700; color: var(--gk-ink); line-height: 1.35; }
.gk-notice__title:hover { color: var(--gk-primary); }
.gk-notice__excerpt { flex-basis: 100%; font-size: .88rem; color: var(--gk-muted); }
.gk-notice__file { flex: none; margin-left: auto; display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--gk-primary-tint); color: var(--gk-primary); }
.gk-notice__file:hover { background: var(--gk-primary); color: #fff; }

.gk-eventlist { list-style: none; display: flex; flex-direction: column; }
.gk-eventitem { display: flex; gap: 1rem; align-items: center; padding: .8rem 0; border-bottom: 1px dashed var(--gk-line); }
.gk-eventitem:last-child { border-bottom: 0; }
.gk-eventitem__body { display: flex; flex-direction: column; }
.gk-eventitem__title { font-weight: 700; color: var(--gk-ink); }
.gk-eventitem__title:hover { color: var(--gk-primary); }
.gk-eventitem__when { font-size: .84rem; color: var(--gk-muted); }

/* -------- 15. Testimonials ----------------------------------------- */
.gk-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gk-voice { margin: 0; background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.gk-voice__mark { color: var(--gk-accent); display: inline-block; margin-bottom: .5rem; }
.gk-voice__text { font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.5; color: var(--gk-ink); margin: 0 0 var(--sp-4); }
.gk-voice__by { display: flex; align-items: center; gap: .75rem; }
.gk-voice__avatar { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; }
.gk-voice__by span { display: flex; flex-direction: column; line-height: 1.25; }
.gk-voice__by em { font-style: normal; font-size: .85rem; color: var(--gk-muted); }

/* -------- 16. CTA -------------------------------------------------- */
.gk-cta { background: linear-gradient(135deg, var(--gk-primary) 0%, var(--gk-primary-600) 100%); color: #fff; }
.gk-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.gk-cta__title { font-size: var(--fs-h1); color: #fff; margin: 0 0 var(--sp-3); }
.gk-cta__sub { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0; }
.gk-cta__actions { display: flex; flex-direction: column; gap: .75rem; }

/* -------- 17. Footer ----------------------------------------------- */
.gk-footer { position: relative; background: var(--gk-primary-700); color: rgba(255,255,255,.78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.gk-footer__banyan { position: absolute; top: 1.5rem; right: 2rem; color: rgba(231,162,51,.28); }
.gk-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.gk-foot-brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem; color: #fff; }
.gk-footer__about { font-size: .92rem; line-height: 1.6; margin: 1rem 0; }
.gk-footer__motto { font-family: var(--ff-motto); font-size: 1.4rem; color: var(--gk-accent-tint); line-height: 1.4; margin: 1rem 0; }
.gk-footer__motto span { display: block; font-family: var(--ff-body); font-size: .82rem; color: rgba(255,255,255,.6); font-style: italic; }
.gk-foot__title { color: #fff; font-family: var(--ff-body); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 1.1rem; }
.gk-foot-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.gk-foot-list a { color: rgba(255,255,255,.78); }
.gk-foot-list a:hover { color: var(--gk-accent); }
.gk-foot-contact { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.gk-foot-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.gk-foot-contact svg { flex: none; color: var(--gk-accent); margin-top: 2px; }
.gk-foot-contact a { color: rgba(255,255,255,.78); }
.gk-foot-contact a:hover { color: #fff; }

.gk-social { list-style: none; display: flex; gap: .6rem; margin-top: 1.25rem; }
.gk-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; color: #fff; transition: all var(--dur) var(--ease); }
.gk-social--foot a { background: rgba(255,255,255,.08); }
.gk-social--foot a:hover { background: var(--gk-accent); color: var(--gk-ink); }
.gk-social--top { margin: 0; gap: .35rem; }
.gk-social--top a { width: 30px; height: 30px; color: rgba(255,255,255,.85); }
.gk-social--top a:hover { color: #fff; }

.gk-footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.gk-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.25rem; }
.gk-copy { margin: 0; font-size: .85rem; }
.gk-totop { display: inline-flex; align-items: center; gap: .3rem; color: rgba(255,255,255,.78); font-weight: 600; font-size: .85rem; }
.gk-totop svg { transform: rotate(-90deg); }
.gk-totop:hover { color: var(--gk-accent); }

/* -------- 18. Page hero + breadcrumbs ------------------------------ */
.gk-pagehero { background: var(--gk-primary); color: #fff; padding-block: clamp(2rem, 5vw, 3.5rem); }
.gk-pagehero__title { font-size: var(--fs-h1); color: #fff; margin: .5rem 0 0; }
.gk-pagehero__sub { color: rgba(255,255,255,.85); margin: .6rem 0 0; max-width: 60ch; font-size: var(--fs-lead); }
.gk-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: .85rem; }
.gk-crumbs a { color: var(--gk-accent-tint); }
.gk-crumbs a:hover { color: #fff; }
.gk-crumbs [aria-current] { color: rgba(255,255,255,.7); }
.gk-crumbs__sep { display: inline-flex; color: rgba(255,255,255,.45); }

/* -------- 19. Prose ------------------------------------------------ */
.gk-prose { font-size: 1.05rem; color: var(--gk-ink-2); }
.gk-prose > * { max-width: 72ch; }
.gk-prose h2 { font-size: var(--fs-h2); margin: 2.2rem 0 1rem; color: var(--gk-ink); }
.gk-prose h3 { font-size: var(--fs-h3); margin: 1.8rem 0 .75rem; color: var(--gk-ink); }
.gk-prose p { margin: 0 0 1.15rem; }
.gk-prose a { text-decoration: underline; text-decoration-color: var(--gk-accent); text-underline-offset: 3px; }
.gk-prose ul, .gk-prose ol { margin: 0 0 1.15rem; padding-left: 1.4rem; }
.gk-prose li { margin-bottom: .4rem; }
.gk-prose ul li::marker { color: var(--gk-accent-600); }
.gk-prose blockquote { margin: 1.5rem 0; padding: .5rem 0 .5rem 1.4rem; border-left: 3px solid var(--gk-accent); font-family: var(--ff-display); font-size: 1.2rem; color: var(--gk-ink); }
.gk-prose img { border-radius: var(--r); margin: 1.5rem 0; }
.gk-prose figure { margin: 1.5rem 0; }
.gk-prose figcaption { font-size: .85rem; color: var(--gk-muted); text-align: center; margin-top: .5rem; }
.gk-prose code { background: var(--gk-surface-2); padding: .1em .4em; border-radius: 4px; font-size: .9em; }
/* Long URLs and email addresses break instead of widening the page. */
.gk-prose { overflow-wrap: break-word; }
/* Wide content scrolls inside its own box; the page body never scrolls sideways. */
.gk-prose > :where(figure.wp-block-table, table, pre) { max-width: 100%; }
.gk-prose :where(table) { display: block; width: max-content; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.gk-prose :where(th, td) { padding: .5rem .75rem; border: 1px solid var(--gk-line); text-align: left; }
.gk-prose :where(th) { background: var(--gk-surface-2); color: var(--gk-ink); font-weight: 600; }
.gk-prose pre { overflow-x: auto; }
.gk-page__cover { margin: 0 0 2rem; border-radius: var(--r-lg); overflow: hidden; }

/* -------- 20. Cards / archives ------------------------------------- */
.gk-list__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.gk-list__grid:has(.gk-list__side) { grid-template-columns: 1fr 300px; }
.gk-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gk-card { background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.gk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gk-card__media { display: block; aspect-ratio: 3/2; background: var(--gk-primary-tint); overflow: hidden; }
.gk-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.gk-card:hover .gk-card__media img { transform: scale(1.04); }
.gk-card__ph { display: grid; place-items: center; height: 100%; color: var(--gk-primary-500); opacity: .5; }
.gk-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.gk-card__date { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gk-accent-600); }
.gk-card__title { font-size: 1.2rem; margin: 0; }
.gk-card__title a { color: var(--gk-ink); }
.gk-card__title a:hover { color: var(--gk-primary); }
.gk-card__excerpt { font-size: .92rem; color: var(--gk-ink-2); margin: 0; }
.gk-card__body .gk-linkarrow { margin-top: auto; padding-top: .5rem; }

.gk-eventcards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gk-eventcard { background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.gk-eventcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gk-eventcard__media { position: relative; display: block; aspect-ratio: 3/2; background: var(--gk-primary-tint); }
.gk-eventcard__media img { width: 100%; height: 100%; object-fit: cover; }
.gk-datechip--float { position: absolute; top: .75rem; left: .75rem; box-shadow: var(--shadow); }
.gk-eventcard__body { padding: 1.25rem; }
.gk-eventcard__when, .gk-eventcard__venue { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--gk-muted); margin: .35rem 0 0; }
.gk-eventcard__when svg, .gk-eventcard__venue svg { flex: none; color: var(--gk-accent-600); }
.gk-schoollife__more { margin-top: 2.25rem; text-align: center; }

.gk-staff__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.gk-staff { background: var(--gk-surface); border: 1px solid var(--gk-line); border-radius: var(--r); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.gk-staff:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gk-staff__photo { margin: 0; aspect-ratio: 1/1; background: var(--gk-primary-tint); }
.gk-staff__photo img { width: 100%; height: 100%; object-fit: cover; }
.gk-staff__ph { display: grid; place-items: center; height: 100%; color: var(--gk-primary-500); opacity: .5; }
.gk-staff__body { padding: 1rem 1.15rem 1.25rem; }
.gk-staff__name { font-size: 1.1rem; margin: 0 0 .15rem; }
.gk-staff__name a { color: var(--gk-ink); }
.gk-staff__role { font-size: .85rem; font-weight: 700; color: var(--gk-accent-600); margin: 0; }
.gk-staff__qualif { font-size: .82rem; color: var(--gk-muted); margin: .25rem 0 0; }

/* -------- 21. Single / profile / event ----------------------------- */
.gk-single__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.gk-single__grid:has(.gk-single__side) { grid-template-columns: 1fr 300px; }
.gk-single__meta { color: var(--gk-muted); font-size: .9rem; margin-bottom: 1.25rem; }
.gk-single__tags { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.gk-notice__topline { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.25rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--gk-line); }
.gk-notice__tags { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.gk-notice__posted { color: var(--gk-muted); font-size: .88rem; }
.gk-notice__download { margin-top: 1.5rem; }
.gk-event__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.1rem 1.25rem; margin: 0 0 2rem; background: var(--gk-surface); border: 1px solid var(--gk-line); border-left: 3px solid var(--gk-accent); border-radius: var(--r); }
.gk-event__facts li { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--gk-ink); }
.gk-event__facts svg { color: var(--gk-accent-600); }

.gk-profile { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.gk-profile__photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--gk-primary-tint); }
.gk-profile__photo img { width: 100%; height: 100%; object-fit: cover; }
.gk-profile__role { font-weight: 700; color: var(--gk-accent-600); font-size: 1.05rem; margin: 0 0 .75rem; }
.gk-profile__qualif, .gk-profile__email { display: flex; align-items: center; gap: .5rem; color: var(--gk-ink-2); margin: 0 0 .5rem; }
.gk-profile__qualif svg, .gk-profile__email svg { color: var(--gk-accent-600); flex: none; }

/* -------- 22. Reach page + accordion ------------------------------- */
.gk-reach { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.gk-reach__intro { margin-bottom: 1.5rem; }
.gk-reach__facts { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 0 0 2.5rem; }
.gk-reach__facts li { display: flex; gap: 1rem; }
.gk-reach__facts strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gk-muted); }
.gk-reach__facts a, .gk-reach__facts span { color: var(--gk-ink); }
.gk-reach__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gk-primary-tint); color: var(--gk-primary); }
.gk-reach__dirtitle { margin-bottom: 1rem; }
.gk-reach__map { position: sticky; top: calc(var(--header-h) + 1rem); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gk-line); aspect-ratio: 3/4; background: var(--gk-surface-2); }
.gk-reach__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.gk-reach__mapph { height: 100%; display: grid; place-content: center; justify-items: center; gap: 1rem; padding: 2rem; text-align: center; color: var(--gk-muted); }
.gk-reach__mapph svg { color: var(--gk-primary-500); opacity: .5; }

.gk-accordion { border: 1px solid var(--gk-line); border-radius: var(--r); overflow: hidden; }
.gk-accordion__item + .gk-accordion__item { border-top: 1px solid var(--gk-line); }
.gk-accordion__head { margin: 0; }
.gk-accordion__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--gk-surface); border: 0; cursor: pointer; font-family: var(--ff-body); font-weight: 700; font-size: 1.02rem; color: var(--gk-ink); text-align: left; }
.gk-accordion__btn:hover { background: var(--gk-primary-tint); }
.gk-accordion__sign { flex: none; color: var(--gk-primary); transition: transform var(--dur) var(--ease); }
.gk-accordion__btn[aria-expanded="true"] .gk-accordion__sign { transform: rotate(180deg); }
.gk-accordion__panel { padding: 0 1.25rem 1.25rem; color: var(--gk-ink-2); }
.gk-accordion__panel p { margin: 0; }

/* -------- 23. Search, 404, pagination, widgets, forms -------------- */
.gk-searchform { display: flex; align-items: center; gap: .5rem; position: relative; }
.gk-searchform__icon { position: absolute; left: 1rem; color: var(--gk-muted); display: inline-flex; pointer-events: none; }
.gk-searchform__input { flex: 1; width: 100%; padding: .85rem 1rem .85rem 2.9rem; border: 1px solid var(--gk-line); border-radius: var(--r); background: var(--gk-surface); font: inherit; color: var(--gk-ink); }
.gk-searchform__input:focus { outline: none; border-color: var(--gk-primary-500); box-shadow: 0 0 0 3px rgba(22,120,108,.15); }
.gk-searchform__submit { padding: .85rem 1.3rem; border: 0; border-radius: var(--r); background: var(--gk-primary); color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.gk-searchform__submit:hover { background: var(--gk-primary-600); }

.gk-results { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.gk-result { padding-bottom: 1.25rem; border-bottom: 1px solid var(--gk-line); }
.gk-result__type { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gk-accent-600); }
.gk-result__title { font-size: 1.3rem; margin: .35rem 0; }
.gk-result__title a { color: var(--gk-ink); }
.gk-result__title a:hover { color: var(--gk-primary); }
.gk-result__excerpt { color: var(--gk-ink-2); margin: 0; }
.gk-empty--search { text-align: left; }
.gk-empty--search .gk-searchform { margin-top: 1.25rem; }

.gk-404 { text-align: center; }
.gk-404__inner { display: flex; flex-direction: column; align-items: center; }
.gk-404__code { font-family: var(--ff-display); font-weight: 600; font-size: clamp(4rem, 14vw, 8rem); line-height: 1; color: var(--gk-primary-tint); margin: 0; }
.gk-404 .gk-searchform { width: min(480px, 100%); margin: 1.5rem 0; }
.gk-404__links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

.pagination, .gk-list__main .navigation { margin-top: 3rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; align-items: center; }
.nav-links .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .5rem; border: 1px solid var(--gk-line); border-radius: var(--r-sm); color: var(--gk-ink); font-weight: 600; background: var(--gk-surface); }
.nav-links .page-numbers:hover { border-color: var(--gk-primary-500); color: var(--gk-primary); }
.nav-links .page-numbers.current { background: var(--gk-primary); color: #fff; border-color: var(--gk-primary); }
.nav-links .page-numbers.dots { border: 0; background: none; }

.gk-widget, .gk-fwidget { margin-bottom: 2rem; }
.gk-widget__title { font-size: 1.1rem; margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gk-accent); display: inline-block; }
.gk-widget ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.gk-widget a { color: var(--gk-ink-2); }
.gk-widget a:hover { color: var(--gk-primary); }
.gk-fwidget a { color: rgba(255,255,255,.78); }
.gk-fwidget a:hover { color: var(--gk-accent); }

/* Comments */
.gk-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gk-line); }
.gk-comments__list { list-style: none; }
.gk-comments__list ol { list-style: none; }
.gk-comments .comment-body { padding: 1rem 0; border-bottom: 1px solid var(--gk-line); }
.gk-comments input[type="text"], .gk-comments input[type="email"], .gk-comments input[type="url"], .gk-comments textarea {
	width: 100%; padding: .75rem .9rem; border: 1px solid var(--gk-line); border-radius: var(--r-sm); font: inherit; background: var(--gk-surface); margin-top: .25rem;
}
.gk-comments label { font-weight: 600; font-size: .9rem; }
.comment-form p { margin-bottom: 1rem; }

/* -------- 24. Reveal + reduced motion ------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.gk-ticker__track { animation: none; }
	.gk-ticker__viewport { overflow-x: auto; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* -------- 25. Responsive ------------------------------------------- */
@media (max-width: 1080px) {
	.gk-programs__grid { grid-template-columns: repeat(2, 1fr); }
	.gk-voices__grid { grid-template-columns: 1fr; }
	.gk-principal__grid { grid-template-columns: 240px 1fr; }
}
@media (max-width: 900px) {
	.gk-nav, .gk-header__apply { display: none; }
	.gk-burger { display: inline-grid; }
	.gk-utilitybar { display: none; }
	.gk-about__grid, .gk-bulletin__grid, .gk-reach, .gk-profile { grid-template-columns: 1fr; }
	.gk-quicklinks__grid { grid-template-columns: repeat(2, 1fr); }
	.gk-list__grid:has(.gk-list__side), .gk-single__grid:has(.gk-single__side) { grid-template-columns: 1fr; }
	.gk-footer__grid { grid-template-columns: 1fr 1fr; }
	.gk-reach__map { position: static; aspect-ratio: 16/10; }
	.gk-principal__grid { grid-template-columns: 1fr; }
	.gk-principal__photo { max-width: 260px; }
}
@media (max-width: 620px) {
	:root { --header-h: 64px; }
	.gk-quicklinks__grid { grid-template-columns: 1fr; }
	.gk-programs__grid { grid-template-columns: 1fr; }
	.gk-stats { grid-template-columns: 1fr 1fr; }
	.gk-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.gk-cta__inner { flex-direction: column; align-items: flex-start; }
	.gk-cta__actions { width: 100%; }
	.gk-hero__arrow { display: none; }
	.gk-brand__tag { display: none; }
	.gk-slide__body { padding-right: 0; }
	.gk-datechip { width: 48px; }
}
