/* Homepage layout — built on tokens.css custom properties. Applies only to .atfal-home (front-page.php). */

.atfal-home {
	color: var(--color-grey-700);
	font-family: var(--font-body);
	background: var(--color-warm-white);
}

.atfal-home h1,
.atfal-home h2,
.atfal-home h3 {
	color: var(--color-ink);
}

.atfal-home a {
	text-decoration: none;
	color: inherit;
}

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

/* Buttons */
.ah-btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-5);
	border-radius: var(--radius-sm);
	font-size: var(--text-button);
	font-weight: var(--weight-semibold);
	line-height: 1;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ah-btn--primary {
	background: var(--color-red);
	color: var(--color-white);
}
.ah-btn--primary:hover,
.ah-btn--primary:focus-visible {
	background: var(--color-red-deep);
}
.ah-btn--secondary {
	background: transparent;
	color: var(--color-red);
	border: 1px solid var(--color-red);
}
.ah-btn--secondary:hover,
.ah-btn--secondary:focus-visible {
	background: var(--color-red);
	color: var(--color-white);
}
.ah-btn--ghost {
	background: transparent;
	color: var(--color-white);
	border: 1px solid rgba(255,255,255,0.4);
}
.ah-btn--ghost:hover,
.ah-btn--ghost:focus-visible {
	border-color: var(--color-white);
	background: rgba(255,255,255,0.08);
}
.ah-btn--tertiary {
	padding: var(--space-2) 0;
	color: var(--color-red);
	font-weight: var(--weight-semibold);
	border-bottom: 1px solid var(--color-red);
}
.ah-btn--tertiary:hover,
.ah-btn--tertiary:focus-visible {
	color: var(--color-red-deep);
	border-bottom-color: var(--color-red-deep);
}
.atfal-home a:focus-visible,
.atfal-home button:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}

/* Hero */
.ah-hero {
	position: relative;
	background: linear-gradient(160deg, #1a1a1a 0%, var(--color-ink) 55%, #0d0d0d 100%);
	color: var(--color-white);
	overflow: hidden;
}
.ah-hero__grid-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 40%, transparent 100%);
	mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 40%, transparent 100%);
	pointer-events: none;
}
.ah-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}
.ah-hero__glow--a {
	top: -120px;
	left: -80px;
	width: 420px;
	height: 420px;
	background: rgba(201,33,39,0.28);
}
.ah-hero__glow--b {
	bottom: -160px;
	right: -100px;
	width: 480px;
	height: 480px;
	background: rgba(201,33,39,0.16);
}
.ah-hero__inner {
	position: relative;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-9) var(--space-5);
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-8);
	align-items: center;
}
.ah-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.04em;
	color: var(--color-grey-100);
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	padding: var(--space-2) var(--space-4);
	border-radius: 999px;
	margin-bottom: var(--space-5);
}
.ah-hero__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-red);
	box-shadow: 0 0 0 3px rgba(201,33,39,0.3);
}
.atfal-home .ah-hero__title {
	font-family: var(--font-body);
	font-size: var(--text-display);
	font-weight: var(--weight-heavy);
	letter-spacing: -0.02em;
	line-height: var(--leading-tight);
	margin: 0 0 var(--space-4);
	color: var(--color-white);
}
.ah-hero__quote {
	font-size: var(--text-lg);
	line-height: var(--leading-snug);
	max-width: 520px;
	margin: 0 0 var(--space-6);
	color: var(--color-grey-200);
}
.ah-hero__quote-attr {
	display: block;
	font-size: var(--text-sm);
	color: var(--color-grey-300);
	margin-top: var(--space-2);
}
.ah-hero__actions {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	flex-wrap: wrap;
}
.ah-btn--glass {
	background: rgba(255,255,255,0.08);
	color: var(--color-white);
	border: 1px solid rgba(255,255,255,0.22);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.ah-btn--glass:hover,
.ah-btn--glass:focus-visible {
	background: rgba(255,255,255,0.16);
	border-color: rgba(255,255,255,0.35);
}

/* Featured event card — hero visual anchor */
.ah-hero__visual {
	position: relative;
}
.ah-event-card {
	position: relative;
	display: block;
	max-width: 420px;
	margin-left: auto;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: var(--radius-lg);
	overflow: hidden;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
	transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.ah-event-card:hover,
.ah-event-card:focus-visible {
	border-color: var(--color-red);
	transform: translateY(-4px);
	box-shadow: 0 32px 64px rgba(0,0,0,0.55), 0 6px 16px rgba(0,0,0,0.35);
}
.ah-event-card__thumb {
	position: relative;
	height: 180px;
	background: linear-gradient(135deg, var(--color-red-deep), var(--color-ink));
	overflow: hidden;
}
.ah-event-card__thumb-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.65;
}
.ah-event-card__date {
	position: absolute;
	top: var(--space-4);
	left: var(--space-4);
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--color-white);
	color: var(--color-ink);
	border-radius: var(--radius-sm);
	padding: var(--space-2) var(--space-3);
	line-height: 1.1;
	box-shadow: var(--shadow-md);
}
.ah-event-card__date-month {
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	color: var(--color-red);
	letter-spacing: 0.05em;
}
.ah-event-card__date-day {
	font-size: 1.1rem;
	font-weight: var(--weight-heavy);
}
.ah-event-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-1);
	padding: var(--space-5);
}
.ah-event-card__label {
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	color: var(--color-red);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.ah-event-card__title {
	font-size: var(--text-h3);
	font-weight: var(--weight-bold);
	color: var(--color-white);
}
.ah-event-card__meta {
	font-size: var(--text-sm);
	color: var(--color-grey-200);
	display: flex;
	align-items: center;
	gap: var(--space-2);
}
.ah-event-card__meta i {
	color: var(--color-red);
	font-size: 0.8rem;
}
.ah-event-card__cta {
	margin-top: var(--space-3);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.ah-event-card__cta span {
	display: inline-block;
	transition: transform 0.15s ease;
}
.ah-event-card:hover .ah-event-card__cta span,
.ah-event-card:focus-visible .ah-event-card__cta span {
	transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
	.ah-event-card,
	.ah-event-card__cta span { transition: none; }
}
@media (max-width: 900px) {
	.ah-hero__inner { grid-template-columns: 1fr; }
	.ah-event-card { margin-left: 0; max-width: none; }
}

/* Generic section shell */
.ah-section {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-8) var(--space-5);
}
.ah-tasks { background: var(--color-warm-white); }
.ah-resources { background: var(--color-cool-grey); }
.ah-departments { background: var(--color-white); position: relative; overflow: hidden; }
.ah-departments__glow {
	position: absolute;
	top: -80px;
	right: -60px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(201,33,39,0.06);
	filter: blur(60px);
	pointer-events: none;
}
.ah-about { background: var(--color-cool-grey); }

.ah-section__title {
	font-size: var(--text-h2);
	font-weight: var(--weight-bold);
	line-height: var(--leading-snug);
	text-align: center;
	margin: 0 0 var(--space-6);
	position: relative;
	padding-bottom: var(--space-3);
}
.ah-section__title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	background: var(--color-red);
	margin: var(--space-3) auto 0;
}
/* Left-aligned, functional treatment — for task-oriented / navigational sections */
.ah-section__title--left {
	text-align: left;
	padding-bottom: 0;
	padding-left: var(--space-4);
	border-left: 4px solid var(--color-red);
}
.ah-section__title--left::after {
	display: none;
}
/* Editorial treatment — for the Divine Guidance section */
.ah-section__title--editorial {
	font-family: var(--font-display);
	font-weight: 500;
	font-style: italic;
	color: var(--color-grey-600);
}
.ah-section__title--editorial::after {
	background: var(--color-grey-300);
}

/* Recurring tasks */
.ah-tasks__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}
.ah-tasks__grid--bento {
	grid-template-columns: 1.3fr 1fr;
	align-items: stretch;
}
.ah-tasks__side {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}
.ah-task-card {
	position: relative;
	display: block;
	background: var(--color-white);
	padding: var(--space-5);
	border: none;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.ah-task-card:hover,
.ah-task-card:focus-visible {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.ah-task-card--primary {
	padding: var(--space-7);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(155deg, var(--color-white) 0%, var(--color-red-tint) 130%);
}
.ah-task-card--primary h3 {
	font-size: var(--text-h2);
}
.ah-task-card--primary p {
	font-size: var(--text-base);
	max-width: 380px;
}
.ah-task-card__badge {
	position: absolute;
	top: var(--space-5);
	right: var(--space-5);
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	color: var(--color-red-deep);
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	padding: var(--space-1) var(--space-3);
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.ah-task-card__action {
	margin-top: var(--space-4);
	align-self: flex-start;
}
.ah-task-card--compact {
	flex: 1;
	padding: var(--space-4);
}
.ah-task-card--compact .ah-task-card__icon {
	width: 40px;
	height: 40px;
	font-size: 1.35rem;
	margin-bottom: var(--space-3);
}
.ah-task-card--compact h3 {
	font-size: var(--text-base);
}
.atfal-home i.ah-task-card__icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: var(--space-4);
	border-radius: var(--radius-sm);
	background: var(--color-red-tint);
	color: var(--color-red);
	font-size: 1.75rem;
	line-height: 1;
}
.ah-task-card h3 {
	font-size: var(--text-h3);
	font-weight: var(--weight-bold);
	color: var(--color-ink);
	margin: 0 0 var(--space-2);
}
.ah-task-card p {
	font-size: var(--text-sm);
	color: var(--color-grey-600);
	margin: 0 0 var(--space-3);
	line-height: var(--leading-normal);
}
.ah-task-card__cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	color: var(--color-red);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.ah-task-card__cta span {
	transition: transform 0.15s ease;
}
.ah-task-card:hover .ah-task-card__cta span,
.ah-task-card:focus-visible .ah-task-card__cta span {
	transform: translateX(3px);
}

/* Featured resources */
.ah-resources__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}
.ah-resource-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: none;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: var(--space-5);
	transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.ah-resource-card:hover,
.ah-resource-card:focus-visible {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.atfal-home i.ah-resource-card__icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: var(--space-3);
	border-radius: 50%;
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	color: var(--color-red);
	font-size: 1.35rem;
	line-height: 1;
}
.ah-resource-card__title {
	font-size: var(--text-base);
	font-weight: var(--weight-bold);
	color: var(--color-ink);
	margin-bottom: var(--space-2);
}
.ah-resource-card__desc {
	font-size: var(--text-sm);
	color: var(--color-grey-600);
	line-height: var(--leading-normal);
	margin-bottom: var(--space-3);
	flex: 1;
}
.ah-resource-card__cta {
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	color: var(--color-red);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.ah-resource-card__cta span {
	display: inline-block;
	transition: transform 0.15s ease;
}
.ah-resource-card:hover .ah-resource-card__cta span,
.ah-resource-card:focus-visible .ah-resource-card__cta span {
	transform: translateX(3px);
}

/* Departments */
.ah-departments__intro {
	max-width: 640px;
	margin: calc(var(--space-6) * -1) 0 var(--space-6) var(--space-4);
	font-size: var(--text-sm);
	color: var(--color-grey-600);
	line-height: var(--leading-normal);
}
.ah-departments__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-4);
}
.ah-dept-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-4) var(--space-2);
	text-align: center;
	border-radius: var(--radius-sm);
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.ah-dept-card:hover,
.ah-dept-card:focus-visible {
	background: var(--color-white);
	box-shadow: var(--shadow-md);
}
.atfal-home i.ah-dept-card__icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--color-white);
	border: 1.5px solid var(--color-grey-200);
	color: var(--color-grey-600);
	font-size: 1.4rem;
	line-height: 1;
	transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
}
.ah-dept-card:hover .ah-dept-card__icon,
.ah-dept-card:focus-visible .ah-dept-card__icon {
	background-image: linear-gradient(0deg, var(--color-red-deep), var(--color-red));
	border-color: transparent;
	color: var(--color-white);
	transform: scale(1.06);
}
.ah-dept-card__title {
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	color: var(--color-ink);
}
.ah-dept-card__arrow {
	font-size: var(--text-xs);
	color: var(--color-red);
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.ah-dept-card:hover .ah-dept-card__arrow,
.ah-dept-card:focus-visible .ah-dept-card__arrow {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.ah-dept-card__arrow { transition: none; }
}

/* Divine Guidance */
.ah-guidance {
	background: var(--color-grey-100);
}
.ah-guidance__rotator {
	max-width: 720px;
	margin: 0 auto;
}
.ah-guidance__viewport {
	position: relative;
	min-height: 220px;
	display: flex;
	align-items: center;
}
.ah-guidance__viewport [data-ah-slide][hidden] {
	display: none !important;
}
.ah-quote {
	background: var(--color-white);
	border-radius: var(--radius-md);
	padding: var(--space-7) var(--space-6);
	margin: 0;
	width: 100%;
	text-align: center;
	position: relative;
	box-shadow: var(--shadow-sm);
}
.ah-quote::before {
	content: "\201C";
	display: block;
	font-family: var(--font-display);
	font-size: 3.5rem;
	line-height: 1;
	color: var(--color-red-tint);
	margin-bottom: var(--space-2);
}
.ah-quote p {
	font-family: var(--font-display);
	font-size: var(--text-h3);
	font-weight: 500;
	line-height: var(--leading-relaxed);
	margin: 0 0 var(--space-4);
	font-style: italic;
	color: var(--color-ink);
}
.ah-quote cite {
	display: block;
	font-style: normal;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	color: var(--color-grey-600);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.ah-guidance__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-5);
	margin-top: var(--space-5);
}
.ah-guidance__nav {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--color-grey-200);
	background: var(--color-white);
	color: var(--color-red);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.ah-guidance__nav:hover,
.ah-guidance__nav:focus-visible {
	background: var(--color-red);
	color: var(--color-white);
	border-color: var(--color-red);
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}
.ah-guidance__nav:active {
	transform: translateY(0);
}
.ah-guidance__rotator:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
	border-radius: var(--radius-md);
}
.ah-guidance__count {
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-grey-600);
	min-width: 64px;
	text-align: center;
	font-variant-numeric: tabular-nums;
}
.ah-guidance__note {
	font-size: var(--text-xs);
	color: var(--color-grey-600);
	text-align: center;
	margin: var(--space-5) 0 0;
}

/* About / mission — asymmetric two-column */
.ah-about {
	display: flex;
	align-items: center;
	gap: var(--space-8);
}
.ah-about__text {
	flex: 1 1 460px;
	min-width: 0;
}
.ah-about__body {
	font-size: var(--text-lg);
	line-height: var(--leading-relaxed);
	margin: 0 0 var(--space-5);
}
.ah-about__facts {
	list-style: none;
	margin: 0 0 var(--space-6);
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.ah-about__facts li {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--text-sm);
	color: var(--color-grey-700);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--color-grey-100);
}
.ah-about__facts li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.ah-about__facts i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-red-tint);
	color: var(--color-red);
	font-size: 0.85rem;
}
.ah-about__links {
	display: flex;
	gap: var(--space-5);
	align-items: center;
}
.ah-about__visual {
	position: relative;
	flex: 1 1 380px;
	max-width: 420px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
/* The source image is a busy multicolor promotional graphic; this overlay
   mutes it toward the site's red/black palette so it reads as part of the
   same design system rather than a clashing asset. The real image (the
   only "who we are" asset available) still shows through underneath. */
.ah-about__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(23,24,26,0.55) 0%, rgba(201,33,39,0.25) 55%, rgba(23,24,26,0.35) 100%);
	mix-blend-mode: multiply;
	pointer-events: none;
}

/* Media highlights */
.ah-media {
	background: var(--color-ink);
}
.ah-media .ah-section__title--left {
	color: var(--color-white);
}
.ah-media__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
}
.ah-media-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-3);
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
	transition: background-color 0.2s ease-out, transform 0.2s ease-out, border-color 0.2s ease-out;
}
.ah-media-card:hover,
.ah-media-card:focus-visible {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.22);
	transform: translateY(-4px);
}
.ah-media-card__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(201,33,39,0.15);
	color: var(--color-red);
	font-size: 1.4rem;
}
.ah-media-card--follow .ah-media-card__play {
	background: rgba(255,255,255,0.08);
	color: var(--color-white);
}
.ah-media-card__label {
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	color: var(--color-grey-300);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.ah-media-card__title {
	font-size: var(--text-base);
	font-weight: var(--weight-bold);
	color: var(--color-white);
}
@media (max-width: 1024px) {
	.ah-media__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.ah-media__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.ah-media-card { transition: none; }
}

/* Closing CTA */
.ah-cta {
	background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-charcoal) 100%);
	color: var(--color-white);
	text-align: center;
}
.ah-cta__inner {
	max-width: 640px;
	margin: 0 auto;
	padding: var(--space-9) var(--space-5);
}
.atfal-home .ah-cta__title {
	font-family: var(--font-body);
	font-weight: var(--weight-heavy);
	letter-spacing: -0.01em;
	font-size: var(--text-h1);
	color: var(--color-white);
	margin: 0 0 var(--space-3);
}
.ah-cta__body {
	font-size: var(--text-lg);
	color: var(--color-grey-200);
	margin: 0 0 var(--space-6);
}
.ah-cta__links {
	display: flex;
	gap: var(--space-4);
	justify-content: center;
	flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
	.ah-departments__grid { grid-template-columns: repeat(4, 1fr); }
	.ah-resources__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.ah-tasks__grid--bento { grid-template-columns: 1fr; }
	.ah-task-card--primary { padding: var(--space-5); }
}
@media (max-width: 900px) {
	.ah-about { flex-direction: column; }
	.ah-about__visual { max-width: none; order: -1; }
}
@media (max-width: 768px) {
	.ah-tasks__grid { grid-template-columns: 1fr; }
	.ah-departments__grid { grid-template-columns: repeat(3, 1fr); }
	.ah-departments__intro { margin-top: 0; }
	.ah-quote p { font-size: var(--text-lg); }
	.ah-cta__title { font-size: var(--text-h2); }
}
@media (max-width: 480px) {
	.ah-departments__grid { grid-template-columns: repeat(2, 1fr); }
	.ah-resources__grid { grid-template-columns: 1fr; }
	.ah-about__links { flex-direction: column; align-items: flex-start; }
	.ah-cta__links { flex-direction: column; }
	.ah-section { padding: var(--space-6) var(--space-4); }
	.ah-quote { padding: var(--space-5) var(--space-4); }
}

/* Hero — mobile-first density and proportion pass */
@media (max-width: 640px) {
	.ah-hero__inner {
		padding: var(--space-6) var(--space-4);
		gap: var(--space-5);
	}
	.ah-hero__badge {
		margin-bottom: var(--space-3);
		padding: var(--space-1) var(--space-3);
	}
	.atfal-home .ah-hero__title {
		font-size: 1.875rem; /* text-3xl */
		line-height: 1.15;
		letter-spacing: -0.01em;
		margin-bottom: var(--space-3);
	}
	.ah-hero__quote {
		font-size: var(--text-base);
		margin-bottom: var(--space-4);
	}
	.ah-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: var(--space-3);
	}
	.ah-hero__actions .ah-btn {
		width: 100%;
		justify-content: center;
	}
	.ah-event-card { max-width: none; }
	.ah-event-card__thumb { height: 140px; }
	.ah-event-card__body { padding: var(--space-4); }
}

@media (prefers-reduced-motion: reduce) {
	.ah-btn,
	.ah-task-card,
	.ah-resource-card,
	.ah-dept-card,
	.ah-guidance__nav,
	.ah-event-card,
	.ah-dept-card__icon {
		transition: none;
	}
}
