/**
 * Homeschool Co-Op landing page.
 *
 * Everything is scoped to .ftk-coop so the page can render either as a
 * full-screen route (its own document) or as a shortcode inside a themed page
 * without the theme and this file fighting each other.
 *
 * The palette is the house navy/gold from the Elementor global kit, run warmer
 * than the other two landing pages: gold-on-cream surfaces, gold scalloped
 * photo frames, rounded cards. This is a page for families with young
 * children, and it should feel like one.
 *
 * Four faces, each with one job — DM Sans for section headings, Playfair for
 * the hero headline and the Scripture, Brittany Signature for the two script
 * flourishes, Nunito Sans for everything else. That is the house kit exactly
 * as the site itself uses it, which is why this page carries all four where
 * the symposium deliberately cut down to two.
 *
 * @package FranktownBulletin
 */

/* Brittany Signature is a licensed, non-Google face, so it cannot come down
   with the rest of the type from fonts.googleapis.com. It is self-hosted here
   from the same bundled file franktown-design.css uses. The hosted-URL
   fallback matches that file too — kept for resilience if the plugin's own
   copy is ever stripped by a mirror. */
@font-face {
	font-family: 'Brittany Signature';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/d7086901-bc02-46c5-8848-17b0a05f95c6.ttf") format('truetype'),
	     url('https://franktown.church/wp-content/uploads/2025/11/BrittanySignatureRegular.woff2') format('woff2');
}

.ftk-coop {
	/* Navy / blue — structure, headings, the older-group track */
	--co-navy-900: #15314E;
	--co-navy-800: #1C4E80;
	--co-blue-600: #3A7CA5;
	--co-blue-200: #C5D6E8;

	/* Gold — the action colour on this brand */
	--co-gold-700: #A87A14;
	--co-gold-600: #CDA31F;
	--co-gold-500: #DFA93C;
	--co-gold-400: #E2B65F;
	--co-gold-300: #D9C48A;
	--co-gold-050: #FCF8EE;

	/* Warm neutrals & ink */
	--co-white: #FFFFFF;
	--co-warm-100: #F1F0EC;
	--co-warm-200: #E4E2DB;
	--co-slate: #53687C;
	--co-muted: #6A7078;
	--co-ink: #2B2B2B;

	/* FTK_Render::logo() paints its dark-tone wordmark with the design
	   system's --ink and --blue-800, and sets the wordmark in --font-sans.
	   This route loads only this stylesheet, so all three tokens have to exist
	   here — otherwise those declarations are invalid at computed-value time
	   and the lockup inherits the link colour and the page's body face.
	   Same trap franktown-creation.css documents. */
	--ink: #2B2B2B;
	--blue-800: #1C4E80;
	--font-sans: "Nunito Sans", system-ui, -apple-system, sans-serif;

	--co-sans: "Nunito Sans", system-ui, -apple-system, sans-serif;
	--co-head: "DM Sans", "Nunito Sans", system-ui, sans-serif;
	--co-serif: "Playfair Display", Georgia, serif;
	--co-script: "Brittany Signature", "Sacramento", "Snell Roundhand", cursive;

	--co-radius: 14px;
	--co-radius-lg: 18px;
	--co-radius-xl: 22px;
	--co-pill: 999px;

	--co-shell: 1160px;
	--co-pad-x: 20px;
	--co-pad-y: 88px;

	--co-shadow-sm: 0 1px 3px rgba(35, 31, 32, .08), 0 1px 2px rgba(35, 31, 32, .05);
	--co-shadow-md: 0 6px 18px rgba(35, 31, 32, .09), 0 2px 6px rgba(35, 31, 32, .05);

	/* The button label. White-on-gold is the brand default but only reaches
	   1.89:1 contrast; switch this to var(--co-navy-900) for 7.2:1. See the
	   Accessibility note on the Homeschool Co-Op settings tab. */
	--co-btn-fg: var(--co-white);

	background: var(--co-white);
	color: var(--co-ink);
	font: 400 19px/1.55 var(--co-sans);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Full-screen route mode: the page is served as its own bare document, so it
   owns the body. (Shortcode mode inherits the theme's.) */
body.ftk-coop-body {
	margin: 0;
	background: #FFFFFF;
}

/* Smooth in-page anchors, only on documents that actually host the page. The
   offset clears the sticky header so a jumped-to heading isn't hidden by it. */
:root:has(.ftk-coop) {
	scroll-behavior: smooth;
	scroll-padding-top: 84px;
}

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

/* Wrapped in :where() so the reset never out-specifies the component rules
   below. A plain `.ftk-coop p { margin: 0 }` is one class heavier than every
   single-class selector in this file: it silently flattens the page's whole
   vertical rhythm, and `.ftk-coop a { color }` repaints every button in link
   blue. Same trap franktown-seminar.css and franktown-creation.css document. */
.ftk-coop :where(h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, table) { margin: 0; padding: 0; }
.ftk-coop :where(h1, h2, h3, h4) { text-wrap: balance; }
.ftk-coop :where(p) { text-wrap: pretty; }
.ftk-coop :where(ul, ol) { list-style: none; }
.ftk-coop :where(img, svg) { display: block; max-width: 100%; }
.ftk-coop :where(a) { color: var(--co-blue-600); text-decoration: none; }
.ftk-coop :where(a:hover) { color: var(--co-navy-800); }
.ftk-coop :where(table) { border-collapse: collapse; }

.ftk-coop :focus-visible {
	outline: 3px solid var(--co-navy-800);
	outline-offset: 3px;
	border-radius: 2px;
}

.co-sronly {
	position: absolute; width: 1px; height: 1px;
	margin: -1px; padding: 0; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Shared primitives ─────────────────────────────────────────────────── */

.co-shell {
	width: 100%;
	max-width: var(--co-shell);
	margin: 0 auto;
	padding-left: var(--co-pad-x);
	padding-right: var(--co-pad-x);
}

.co-pad {
	padding-top: var(--co-pad-y);
	padding-bottom: var(--co-pad-y);
}

.co-eyebrow {
	font: 600 12px/1.2 var(--co-sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--co-gold-600);
	margin-bottom: 12px;
}

.co-script {
	font: 400 clamp(32px, 3.6vw, 44px)/1 var(--co-script);
	color: var(--co-gold-300);
	margin-bottom: 14px;
}

.co-h2 {
	font: 700 clamp(30px, 3.4vw, 44px)/1.15 var(--co-head);
	color: var(--co-navy-800);
	margin-bottom: 26px;
}

.co-h2--wide { max-width: 20em; }

/* ── Buttons ───────────────────────────────────────────────────────────── */

.co-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 6px;
	background: var(--co-gold-400);
	color: var(--co-btn-fg);
	font: 700 16px/1 var(--co-sans);
	letter-spacing: .02em;
	border: 2px solid transparent;
	text-align: center;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.co-btn:hover {
	background: var(--co-gold-600);
	color: var(--co-btn-fg);
	transform: translateY(-1px);
}

.co-btn--lg { padding: 17px 32px; font-size: 17px; }
.co-btn--head { padding: 11px 22px; font-size: 15px; }

.co-btn--ghost {
	background: transparent;
	color: var(--co-navy-800);
	border-color: var(--co-gold-400);
}
.co-btn--ghost:hover {
	background: var(--co-gold-050);
	color: var(--co-navy-800);
	border-color: var(--co-gold-600);
}

.co-btn--navy { background: var(--co-navy-800); color: #FFFFFF; }
.co-btn--navy:hover { background: var(--co-navy-900); color: #FFFFFF; }

/* Sits on the gold band, where a gold button would vanish. */
.co-btn--onGold {
	background: transparent;
	color: #FFFFFF;
	border-color: rgba(255, 255, 255, .75);
}
.co-btn--onGold:hover {
	background: rgba(255, 255, 255, .16);
	color: #FFFFFF;
	border-color: #FFFFFF;
}

/* ── 1. Header ─────────────────────────────────────────────────────────── */

.co-header {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 12px 0;
	background: rgba(255, 255, 255, .93);
	border-bottom: 1px solid var(--co-warm-200);
}

@supports (backdrop-filter: blur(8px)) {
	.co-header { backdrop-filter: blur(8px); }
}

/* Shortcode mode sits inside a themed page that already has its own sticky
   header; two of them stacked is one too many. */
.ftk-coop--shortcode .co-header { position: static; }

.co-header__in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 24px;
}

.co-brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	min-width: 0;
}

.co-brand__tag {
	padding-left: 14px;
	border-left: 1px solid var(--co-warm-200);
	font: 700 13px/1.2 var(--co-sans);
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--co-navy-800);
}

.co-nav {
	margin-left: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px 22px;
}

.co-nav > a:not(.co-btn) {
	font: 600 15px/1.2 var(--co-sans);
	color: var(--co-slate);
}
.co-nav > a:not(.co-btn):hover { color: var(--co-navy-800); }

/* The section links are a convenience, not the path through the page — below
   the tablet break they push the Register button onto its own line and cost
   more than they give. The button stays. */
@media (max-width: 720px) {
	.co-nav > a:not(.co-btn) { display: none; }
}

/* On a phone the lockup and the programme name will not sit side by side, so
   the name goes under the logo rather than letting the brand block claim the
   whole row — which pushed Register onto a second line with a hole beside it.
   min-width:0 lets the brand shrink instead of forcing the wrap. */
@media (max-width: 560px) {
	.co-header__in { flex-wrap: nowrap; }
	.co-brand {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		min-width: 0;
	}
	.co-brand__tag {
		padding-left: 0;
		border-left: 0;
		font-size: 11px;
	}
}

/* ── 2. Hero ───────────────────────────────────────────────────────────── */

.co-hero {
	background: linear-gradient(180deg, var(--co-gold-050) 0%, #FFFFFF 100%);
	padding: 76px 0 84px;
}

.co-hero__in {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 48px;
	align-items: center;
}

.co-pill {
	display: inline-block;
	padding: 12px 26px;
	border-radius: var(--co-pill);
	background: var(--co-blue-600);
	color: #FFFFFF;
	font: 800 17px/1.3 var(--co-sans);
	box-shadow: var(--co-shadow-sm);
}

.co-hero__script {
	font: 400 clamp(46px, 6vw, 76px)/1 var(--co-script);
	color: var(--co-blue-600);
	margin: 26px 0 2px;
}

.co-hero__title {
	font: 900 clamp(42px, 5.4vw, 66px)/1.05 var(--co-serif);
	color: var(--co-navy-800);
}

.co-hero__lede {
	font-size: 21px;
	color: var(--co-slate);
	max-width: 30em;
	margin-top: 24px;
}

.co-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.co-hero__fine {
	font-size: 15px;
	color: var(--co-muted);
	margin-top: 20px;
	max-width: 34em;
}

.co-hero__photo { position: relative; }

/* The photo carries its own gold scalloped frame in the file, so it is placed
   at its intrinsic width rather than stretched: upscaling a 430px crop from
   the printed brochure only makes the softness bigger. */
.co-hero__img {
	width: 100%;
	max-width: 430px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* ── Decorative cut-outs ───────────────────────────────────────────────── */

.co-deco {
	position: absolute;
	pointer-events: none;
	z-index: 2;
}

.co-deco--supplies {
	top: -52px;
	left: -28px;
	width: 104px;
	height: auto;
	animation: co-float 7s ease-in-out infinite;
}

.co-deco--books {
	left: -18px;
	bottom: -10px;
	width: 190px;
	height: auto;
	opacity: .9;
}

.co-deco--pencils {
	left: 50%;
	bottom: -6px;
	width: 186px;
	height: auto;
	transform: translateX(-50%);
}

@keyframes co-float {
	0%, 100% { transform: translateY(0) rotate(-4deg); }
	50%      { transform: translateY(-14px) rotate(3deg); }
}

/* Once the schedule stacks into one column the ledger and the parent panel
   fill it, and both cut-outs land on top of the content rather than in the
   margin beside it. There is no margin left to put them in, so they go. */
@media (max-width: 900px) {
	.co-deco--supplies,
	.co-deco--books { display: none; }
}

/* ── Entrance ──────────────────────────────────────────────────────────── */

.co-rise {
	animation: co-rise 620ms cubic-bezier(.22, .61, .36, 1) both;
	animation-delay: var(--co-d, 0ms);
}

@keyframes co-rise {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: none; }
}

/* ── 3. At a glance ────────────────────────────────────────────────────── */

.co-facts {
	background: var(--co-warm-100);
	padding: 40px 0;
	border-top: 3px solid var(--co-gold-400);
	border-bottom: 3px solid var(--co-gold-400);
}

.co-facts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 16px;
}

.co-fact {
	background: #FFFFFF;
	border: 1px solid var(--co-gold-300);
	border-radius: var(--co-radius);
	padding: 20px 22px;
}

.co-fact__label {
	font: 800 13px/1.2 var(--co-sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--co-gold-700);
	margin-bottom: 8px;
}

.co-fact__value {
	font: 800 20px/1.25 var(--co-sans);
	color: var(--co-navy-800);
}

/* ── 4. Vision ─────────────────────────────────────────────────────────── */

.co-vision {
	background: var(--co-navy-800);
	color: #FFFFFF;
	padding: 76px 0;
}

.co-vision__in {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 48px;
	align-items: center;
}

.co-vision .co-h2 { color: #FFFFFF; margin-bottom: 22px; }

.co-vision__p {
	color: var(--co-blue-200);
	margin-bottom: 18px;
}
.co-vision__p:last-child { margin-bottom: 0; }

.co-vision__photo img {
	width: 100%;
	max-width: 424px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* ── 5. Classes ────────────────────────────────────────────────────────── */

.co-classes { background: #FFFFFF; }

.co-groups {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.co-group {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: var(--co-pill);
	background: var(--co-gold-050);
	border: 1px solid var(--co-gold-300);
	font: 700 16px/1.3 var(--co-sans);
	color: var(--co-navy-800);
}

.co-group span { font-weight: 400; color: var(--co-slate); }

.co-group--note {
	background: var(--co-warm-100);
	border-color: transparent;
	font-weight: 400;
	color: var(--co-slate);
}

.co-cardgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.co-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transition: transform 220ms ease;
}

.co-card:nth-child(odd):hover  { transform: translateY(-6px) rotate(-.6deg); }
.co-card:nth-child(even):hover { transform: translateY(-6px) rotate(.6deg); }

.co-card__img {
	width: 100%;
	height: 172px;
	object-fit: cover;
	object-position: center 28%;
	border-radius: 16px;
	border: 7px solid var(--co-gold-400);
}

.co-card:nth-child(even) .co-card__img { border-color: var(--co-gold-500); }

.co-card__name {
	width: 100%;
	background: var(--co-blue-600);
	color: #FFFFFF;
	border-radius: var(--co-pill);
	padding: 13px 22px;
	text-align: center;
	font: 800 18px/1.25 var(--co-sans);
	box-shadow: var(--co-shadow-sm);
}

.co-card__ages {
	font: 800 14px/1.2 var(--co-sans);
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--co-gold-700);
}

.co-card__desc {
	font-size: 15px;
	line-height: 1.4;
	color: var(--co-slate);
	text-align: center;
}

/* The one restricted track. Navy frame, navy pill, and a solid badge for the
   age line — a parent of a six-year-old should see the difference before
   reading a word of it. */
.co-card--older .co-card__img { border-color: var(--co-navy-800); }
.co-card--older .co-card__name { background: var(--co-navy-800); }

.co-card--older .co-card__ages {
	background: var(--co-navy-800);
	color: #FFFFFF;
	border-radius: var(--co-pill);
	padding: 6px 14px;
}

/* ── 6. Scripture ──────────────────────────────────────────────────────── */

/* The photograph is set inline on the element, and the navy wash sits over it
   as a pseudo-element rather than as a gradient layer in this file. Passing
   the photo through a custom property instead looked tidier but resolves a
   relative URL against THIS stylesheet rather than the page — so a relative
   path would be looked for under assets/css/. The photograph behind is only a
   400px crop stretched across a full-bleed band; the wash is doing most of the
   work, and keeping it dark hides the softness. */
.co-scripture {
	position: relative;
	padding: 96px 0;
	background-size: cover;
	background-position: center;
	background-color: var(--co-navy-900);
}

.co-scripture::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(21, 49, 78, .82);
}

.co-scripture__in {
	position: relative;
	max-width: 900px;
	text-align: center;
}

.co-scripture__text {
	font: 400 italic clamp(26px, 3.2vw, 40px)/1.3 var(--co-serif);
	color: #FFFFFF;
}

.co-scripture__ref {
	font: 600 12px/1.2 var(--co-sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--co-gold-300);
	margin-top: 26px;
}

/* ── 7. Daily schedule ─────────────────────────────────────────────────── */

.co-schedule {
	position: relative;
	background: var(--co-gold-050);
	overflow: hidden;
}

.co-schedule__in {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 48px;
	align-items: start;
}

.co-ledger {
	background: #FFFFFF;
	border: 1px solid var(--co-warm-200);
	border-radius: var(--co-radius-lg);
	padding: 8px 28px;
	box-shadow: var(--co-shadow-sm);
}

.co-ledger__row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 0;
	border-bottom: 1px solid var(--co-warm-200);
}

.co-ledger__row:last-child { border-bottom: 0; }

.co-ledger__name {
	font: 700 17px/1.3 var(--co-sans);
	color: var(--co-navy-800);
}

.co-ledger__note {
	display: block;
	font: 400 14px/1.3 var(--co-sans);
	color: var(--co-slate);
	margin-top: 3px;
}

.co-ledger__time {
	font-size: 17px;
	color: var(--co-slate);
	white-space: nowrap;
}

/* Nowrap keeps a time on one line, which is right until the row is narrower
   than the time itself. */
@media (max-width: 420px) {
	.co-ledger__row { flex-direction: column; gap: 4px; }
	.co-ledger__time { white-space: normal; }
}

.co-schedule__side { display: grid; gap: 28px; }

.co-framed {
	background: var(--co-gold-400);
	padding: 10px;
	border-radius: var(--co-radius-xl);
}

.co-framed img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: var(--co-radius);
}

.co-parents {
	background: var(--co-navy-800);
	color: #FFFFFF;
	border-radius: var(--co-radius-lg);
	padding: 32px 34px;
}

.co-parents__title {
	font: 900 21px/1.2 var(--co-sans);
	color: #FFFFFF;
	margin-bottom: 14px;
}

.co-parents__body {
	color: var(--co-blue-200);
	margin-bottom: 16px;
}

.co-parents__note {
	font-size: 15px;
	line-height: 1.4;
	color: var(--co-blue-200);
}

/* ── 8. Fees & FAQ ─────────────────────────────────────────────────────── */

.co-details { background: #FFFFFF; }

.co-details__in {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
	gap: 56px;
	align-items: start;
}

/* border-collapse stays SEPARATE here, against the reset: a collapsed table
   drops the padding and will not paint the rounded corner, and the row rules
   below are drawn on the cells rather than on <tr> because a collapsed-off
   table does not render borders set on a row at all. */
.co-fees {
	width: 100%;
	background: var(--co-gold-050);
	border: 1px solid var(--co-gold-300);
	border-radius: var(--co-radius-lg);
	border-collapse: separate;
	border-spacing: 0;
	padding: 6px 30px 14px;
}

.co-fees th,
.co-fees td {
	padding: 16px 0;
	text-align: right;
	border-bottom: 1px solid var(--co-gold-300);
}

.co-fees tbody tr:last-child th,
.co-fees tbody tr:last-child td { border-bottom: 0; }

.co-fees thead th {
	font: 600 12px/1.2 var(--co-sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--co-gold-700);
	padding-bottom: 12px;
	vertical-align: bottom;
}

.co-fees thead th:first-child,
.co-fees tbody th { text-align: left; }

.co-fees tbody th {
	font: 700 17px/1.3 var(--co-sans);
	color: var(--co-navy-800);
}

.co-fees td { font-size: 17px; color: var(--co-slate); }

.co-fees__semester { font-weight: 700; color: var(--co-gold-700); }

.co-fees__due {
	font: 700 15px/1.45 var(--co-sans);
	color: var(--co-navy-800);
	margin-top: 18px;
}

.co-fees__note {
	font-size: 15px;
	line-height: 1.45;
	color: var(--co-slate);
	margin-top: 10px;
}

.co-faq { display: grid; gap: 12px; }

.co-faq__item {
	background: #FFFFFF;
	border: 1px solid var(--co-warm-200);
	border-radius: var(--co-radius);
	padding: 4px 22px;
}

.co-faq__item > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	padding: 18px 0;
	font: 700 18px/1.35 var(--co-sans);
	color: var(--co-navy-800);
	list-style: none;
}

.co-faq__item > summary::-webkit-details-marker { display: none; }
.co-faq__item > summary::marker { content: ""; }

/* A drawn plus rather than a glyph, so it can rotate into a cross without the
   font's own baseline shifting the row. */
.co-faq__chev {
	position: relative;
	flex: none;
	width: 16px;
	height: 16px;
	transition: transform 200ms ease;
}

.co-faq__chev::before,
.co-faq__chev::after {
	content: "";
	position: absolute;
	inset: 50% 0 auto 0;
	height: 2px;
	background: var(--co-gold-600);
	border-radius: 2px;
	transform: translateY(-50%);
}

.co-faq__chev::after { transform: translateY(-50%) rotate(90deg); }

.co-faq__item[open] .co-faq__chev { transform: rotate(45deg); }

.co-faq__a {
	font-size: 15px;
	line-height: 1.5;
	color: var(--co-slate);
	margin-bottom: 20px;
}

/* ── 9. Register ───────────────────────────────────────────────────────── */

.co-register {
	position: relative;
	background: var(--co-gold-400);
	padding: 76px 0 168px;
	overflow: hidden;
	text-align: center;
}

.co-register__in {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.co-register__title {
	font: 800 clamp(30px, 3.6vw, 46px)/1.1 var(--co-serif);
	color: #FFFFFF;
}

.co-register__body {
	color: #FFFFFF;
	max-width: 34em;
	margin: 20px auto 32px;
}

.co-register__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

/* ── 10. Team ──────────────────────────────────────────────────────────── */

.co-team { background: var(--co-gold-050); }

.co-team .co-h2 { margin-bottom: 40px; }

.co-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
	gap: 18px 26px;
}

.co-person {
	border-top: 3px solid var(--co-gold-400);
	padding-top: 16px;
}

.co-person__role {
	font: 800 12px/1.2 var(--co-sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--co-gold-700);
	margin-bottom: 8px;
}

.co-person__name {
	font: 800 18px/1.3 var(--co-sans);
	color: var(--co-navy-800);
	text-wrap: balance;
}

/* ── 11. Contact ───────────────────────────────────────────────────────── */

.co-contact { background: #FFFFFF; }

.co-contact__in {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 48px;
	align-items: center;
}

.co-contact .co-h2 { margin-bottom: 16px; }

.co-contact__body {
	color: var(--co-slate);
	margin-bottom: 28px;
}

.co-contactlist { display: grid; gap: 18px; }

.co-contactlist li {
	display: flex;
	align-items: center;
	gap: 16px;
}

.co-contactlist a {
	font: 600 19px/1.3 var(--co-sans);
	word-break: break-word;
}

.co-contactlist__icon {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--co-gold-050);
	display: grid;
	place-items: center;
	color: var(--co-navy-800);
}

.co-contactlist__icon svg { width: 19px; height: 19px; }

.co-contact__photo img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: var(--co-shadow-sm);
}

/* ── Share ─────────────────────────────────────────────────────────────── */

.co-share {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--co-warm-200);
}

.co-share__title {
	font: 800 18px/1.3 var(--co-sans);
	color: var(--co-navy-800);
}

.co-share__deck {
	font-size: 15px;
	line-height: 1.45;
	color: var(--co-slate);
	margin-top: 6px;
}

.co-sharerow {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.co-sharebtn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 18px;
	border-radius: var(--co-pill);
	border: 1px solid var(--co-warm-200);
	background: #FFFFFF;
	color: var(--co-navy-800);
	font: 700 15px/1 var(--co-sans);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.co-sharebtn:hover {
	background: var(--co-gold-050);
	border-color: var(--co-gold-300);
	color: var(--co-navy-800);
}

.co-sharebtn svg { width: 18px; height: 18px; flex: none; }

.co-sharebtn.is-copied {
	background: var(--co-navy-800);
	border-color: var(--co-navy-800);
	color: #FFFFFF;
}

/* ── 12. Footer ────────────────────────────────────────────────────────── */

.co-footer {
	background: var(--co-ink);
	padding: 54px 0;
	color: #FFFFFF;
}

.co-footer__in {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
}

.co-footer__tag {
	font-size: 16px;
	color: rgba(255, 255, 255, .75);
	max-width: 32em;
}

.co-footer__cta {
	font: 700 15px/1 var(--co-sans);
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--co-gold-400);
}

.co-footer__cta:hover { color: var(--co-gold-300); }

/* ── Narrow screens ────────────────────────────────────────────────────── */

@media (max-width: 640px) {
	.ftk-coop { --co-pad-y: 60px; }
	.co-hero { padding: 52px 0 60px; }
	.co-hero__lede { font-size: 19px; }
	.co-parents { padding: 26px 24px; }
	.co-ledger { padding: 4px 20px; }
	.co-fees { padding: 4px 20px 12px; }
	.co-register { padding: 60px 0 140px; }
}

/* ── Reduced motion ────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.ftk-coop *,
	.ftk-coop *::before,
	.ftk-coop *::after {
		animation: none !important;
		transition: none !important;
	}
	:root:has(.ftk-coop) { scroll-behavior: auto; }
}

/* ── Print ─────────────────────────────────────────────────────────────── */

@media print {
	.co-header,
	.co-deco,
	.co-sharerow { display: none; }
	.ftk-coop { font-size: 12pt; }
	.co-faq__item > summary { padding: 8px 0; }
	/* Print every answer, open or not. Browsers hide a closed disclosure two
	   different ways depending on age, so both are undone. */
	.co-faq__item > .co-faq__a {
		display: block !important;
		content-visibility: visible !important;
	}
	.co-faq__item::details-content { content-visibility: visible; block-size: auto; }
}
