html {
	scroll-behavior: smooth;
}

.aaic-80th-page {
	--aaic-color-primary: #8b5fa8;
	--aaic-color-primary-deep: #6e4a80;
	--aaic-color-secondary: #f6951f;
	--aaic-color-secondary-hover: #e68810;
	--aaic-color-text: #5a5c60;
	--aaic-color-footer: #6e7073;
	--aaic-color-white: #ffffff;
	--aaic-color-muted: #f5f5f5;
	--aaic-color-panel: #faf5ff;
	--aaic-color-panel-border: #ede9fe;
	--aaic-color-border: rgba(0, 0, 0, 0.1);
	--aaic-shadow-card: 0 18px 40px rgba(0, 0, 0, 0.08);
	--aaic-max-width: 48rem;
	--aaic-max-width-wide: 48rem;
	color: var(--aaic-color-text);
	background: var(--aaic-color-white);
	font-family: 'Raleway', sans-serif;
	opacity: 0;
	transition: opacity 1s ease;
}

.aaic-80th-page h1,
.aaic-80th-page h2,
.aaic-80th-page h3,
.aaic-80th-page h4,
.aaic-80th-page h5,
.aaic-80th-page h6,
.aaic-80th-page .aaic-80th-button,
.aaic-80th-page .aaic-80th-button span {
	font-family: 'Raleway', sans-serif !important;
}

.aaic-80th-page.is-visible {
	opacity: 1;
}

.aaic-80th-page,
.aaic-80th-page * {
	box-sizing: border-box;
}

.aaic-80th-page img {
	display: block;
	max-width: 100%;
	height: auto;
}

.aaic-80th-page a {
	color: inherit;
	text-decoration: none;
}

.aaic-80th-page p,
.aaic-80th-page li,
.aaic-80th-page a,
.aaic-80th-page span {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7;
}

.aaic-80th-page h1,
.aaic-80th-page h2,
.aaic-80th-page h3 {
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.aaic-80th-page h1 {
	font-size: clamp(2.6rem, 6vw, 4.5rem);
	font-weight: 700;
}

.aaic-80th-page h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 600;
}

.aaic-80th-page h3 {
	font-size: 1.25rem;
	font-weight: 600;
}

.aaic-80th-container {
	width: min(100%, calc(var(--aaic-max-width) + 3rem));
	margin: 0 auto;
	padding: 0 1.5rem;
}

.aaic-80th-container--narrow {
	max-width: calc(var(--aaic-max-width) + 3rem);
}

.aaic-80th-timeline .aaic-80th-container,
.aaic-80th-action-cards .aaic-80th-container {
	width: min(100%, calc(var(--aaic-max-width-wide) + 3rem));
}

.aaic-80th-section {
	padding: 5rem 0;
	background: var(--aaic-color-white);
}

.aaic-80th-section-heading {
	margin-bottom: 2.5rem;
}

.aaic-80th-section-heading--center {
	text-align: center;
}

.aaic-80th-section-heading__title {
	color: var(--aaic-color-primary);
	margin-bottom: 1rem;
}

.aaic-80th-section-heading__rule {
	width: 4rem;
	height: 0.25rem;
	margin: 0 auto 1rem;
	background: var(--aaic-color-secondary);
}

.aaic-80th-section-heading__description {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.125rem;
}

.aaic-80th-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.5rem;
	border: 0;
	background: var(--aaic-color-secondary) !important;
	color: var(--aaic-color-white) !important;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.aaic-80th-page a.aaic-80th-button,
.aaic-80th-page a.aaic-80th-button:visited,
.aaic-80th-page a.aaic-80th-button:active {
	color: var(--aaic-color-white) !important;
}

.aaic-80th-button:hover,
.aaic-80th-button:focus-visible {
	background: var(--aaic-color-secondary-hover) !important;
	color: var(--aaic-color-white) !important;
	transform: translateY(-1px);
}

.aaic-80th-button--inline {
	width: auto;
}

.aaic-80th-button--light {
	background: var(--aaic-color-white) !important;
	color: var(--aaic-color-primary) !important;
	border: 1px solid rgba(139, 95, 168, 0.24);
}

.aaic-80th-page a.aaic-80th-button--light,
.aaic-80th-page a.aaic-80th-button--light:visited,
.aaic-80th-page a.aaic-80th-button--light:active {
	color: var(--aaic-color-primary) !important;
}

.aaic-80th-button--light:hover,
.aaic-80th-button--light:focus-visible {
	background: #f7ebff !important;
	color: var(--aaic-color-primary-deep) !important;
}

.aaic-80th-hero {
	position: relative;
	overflow: hidden;
	margin-top: 1rem;
	padding: 6rem 0 8rem;
	color: var(--aaic-color-white);
}

.aaic-80th-hero__background,
.aaic-80th-hero__overlay {
	position: absolute;
	inset: 0;
}

.aaic-80th-hero__background {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.aaic-80th-hero__overlay {
	background: rgba(139, 95, 168, 0.85);
}

.aaic-80th-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.aaic-80th-hero__badge {
	display: inline-block;
	margin-bottom: 1.5rem;
	padding: 0.4rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.2);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.aaic-80th-hero__title {
	margin-bottom: 1.5rem;
}

.aaic-80th-hero__description {
	max-width: 40rem;
	margin: 0 auto 2.5rem;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.96);
}

.aaic-80th-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.aaic-80th-hero__actions .aaic-80th-button,
.aaic-80th-hero__history-link {
	min-height: 3.25rem;
	padding: 0.75rem 1.5rem;
}

.aaic-80th-hero__actions .aaic-80th-button {
	border: 2px solid transparent;
}

.aaic-80th-hero__action-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	max-width: 24rem;
}

.aaic-80th-hero__history-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.8);
	background: transparent;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	text-decoration: none !important;
	color: rgba(255, 255, 255, 0.96);
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.aaic-80th-hero__history-link:hover,
.aaic-80th-hero__history-link:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--aaic-color-white);
	color: var(--aaic-color-white);
	transform: translateY(-1px);
}

.aaic-80th-our-story {
	padding: 5rem 0;
	background: var(--aaic-color-white);
}

.aaic-80th-our-story__header {
	text-align: center;
	margin-bottom: 3rem;
}

.aaic-80th-our-story__logo {
	width: min(16rem, 100%);
	margin: 0 auto 2rem;
}

.aaic-80th-our-story__heading {
	color: var(--aaic-color-primary);
	margin-bottom: 1.25rem;
}

.aaic-80th-our-story__lead {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--aaic-color-primary);
	line-height: 1.7;
}

.aaic-80th-our-story__body {
	font-size: 1.0625rem;
	line-height: 1.8;
}

.aaic-80th-our-story__body p {
	margin: 0 0 1.5rem;
	font-size: 1.0625rem;
}

.aaic-80th-our-story__figure {
	margin: 0 0 1.5rem;
}

.aaic-80th-our-story__figure img {
	width: 100%;
	border: 1px solid var(--aaic-color-border);
}

.aaic-80th-lightbox-link {
	display: block;
	position: relative;
	cursor: zoom-in;
}

.aaic-80th-lightbox-link img {
	transition: opacity 0.2s ease;
}

.aaic-80th-lightbox-link:hover img,
.aaic-80th-lightbox-link:focus-visible img {
	opacity: 0.9;
}

.aaic-80th-our-story__figure figcaption {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--aaic-color-footer);
	font-style: italic;
	text-align: center;
}

@media (min-width: 640px) {
	.aaic-80th-page {
		--aaic-max-width-wide: 52rem;
	}

	.aaic-80th-our-story__figure--right {
		float: right;
		width: 42%;
		margin: 0 0 1.5rem 2rem;
	}

	.aaic-80th-our-story__figure--left {
		float: left;
		width: 42%;
		margin: 0 2rem 1.5rem 0;
	}

	.aaic-80th-our-story__body::after {
		content: '';
		display: table;
		clear: both;
	}
}

.aaic-80th-action-cards {
	padding: 5rem 0;
	background: var(--aaic-color-muted);
}

.aaic-80th-action-cards__featured-row {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.aaic-80th-action-cards__featured-row .aaic-80th-action-card--featured {
	width: 100%;
}

.aaic-80th-action-cards__list {
	display: grid;
	gap: 1.5rem;
}

.aaic-80th-action-card {
	background: var(--aaic-color-white);
	border: 1px solid var(--aaic-color-border);
	box-shadow: var(--aaic-shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.aaic-80th-action-card--featured {
	border-color: var(--aaic-color-primary);
}

.aaic-80th-action-card__image-wrap {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.aaic-80th-action-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.aaic-80th-action-card:hover .aaic-80th-action-card__image {
	transform: scale(1.05);
}

.aaic-80th-action-card__body {
	flex: 1;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}

.aaic-80th-action-card__title {
	color: var(--aaic-color-primary);
	margin-bottom: 0.75rem;
}

.aaic-80th-action-card__description {
	flex: 1;
	margin: 0 0 1.25rem;
}

.aaic-80th-action-card__body .aaic-80th-button {
	align-self: flex-start;
}

.aaic-80th-timeline {
	padding: 5rem 0;
	background: #fafafa;
}

.aaic-80th-timeline__track {
	position: relative;
	padding: 0 0 3rem;
}

.aaic-80th-timeline__line {
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	transform: translateX(-50%);
	background: linear-gradient(to bottom, var(--aaic-color-primary), var(--aaic-color-secondary), var(--aaic-color-primary));
	z-index: 0;
	pointer-events: none;
}

.aaic-80th-timeline__item {
	position: relative;
	margin-bottom: 6rem;
}

	.aaic-80th-timeline__card,
	.aaic-80th-timeline__photo {
		position: relative;
		z-index: 2;
		opacity: 0;
		transform: translateY(24px);
		transition: opacity 0.7s ease, transform 0.7s ease;
	}

.aaic-80th-timeline__item.is-visible .aaic-80th-timeline__card,
.aaic-80th-timeline__item.is-visible .aaic-80th-timeline__photo {
	opacity: 1;
	transform: none;
}

.aaic-80th-timeline__dot {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	background: var(--aaic-color-white);
	border: 3px solid var(--aaic-color-primary);
	margin: 0 auto 1rem;
}

.aaic-80th-timeline__dot span {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: var(--aaic-color-primary);
}

.aaic-80th-timeline__dot--final {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 50%);
	margin: 0;
}

.aaic-80th-timeline__card {
	padding: 1.5rem;
	background: var(--aaic-color-white);
	border: 1px solid var(--aaic-color-border);
	box-shadow: var(--aaic-shadow-card);
}

.aaic-80th-timeline__card-year {
	font-size: 2rem;
	font-weight: 700;
	color: var(--aaic-color-primary);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.aaic-80th-timeline__card-title {
	color: #111827;
	margin-bottom: 0.75rem;
}

.aaic-80th-timeline__card-description {
	margin: 0;
	line-height: 1.75;
}

.aaic-80th-timeline__photo {
	margin: 1.25rem 0 0;
}

.aaic-80th-timeline__photo img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.aaic-80th-timeline__cta {
	width: min(100%, 34rem);
	margin: 2rem auto 0;
	padding: 0 0 1.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
}

.aaic-80th-timeline__cta-text {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--aaic-color-primary);
}

.aaic-80th-timeline__cta-link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--aaic-color-primary);
}

.aaic-80th-timeline__cta-link:focus-visible {
	outline: 2px solid var(--aaic-color-primary);
	outline-offset: 6px;
}

.aaic-80th-timeline__cta-label {
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.aaic-80th-timeline__cta-arrow {
	width: 1.2rem;
	height: 1.2rem;
	border-right: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	transform: rotate(45deg);
	animation: aaic-80th-arrow-nudge 1.5s ease-in-out infinite;
}

@keyframes aaic-80th-arrow-nudge {
	0%,
	100% {
		transform: translateY(0) rotate(45deg);
	}
	50% {
		transform: translateY(0.35rem) rotate(45deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.aaic-80th-timeline__cta-arrow {
		animation: none;
	}
}

.aaic-80th-footer {
	padding: 3rem 0;
	background: var(--aaic-color-footer);
	color: var(--aaic-color-white);
}

.aaic-80th-footer__grid {
	display: grid;
	gap: 2.5rem;
	margin-bottom: 2rem;
}

.aaic-80th-footer__column h3 {
	margin-bottom: 1rem;
	color: var(--aaic-color-white);
}

.aaic-80th-footer__column p {
	margin: 0 0 0.35rem;
	color: rgba(255, 255, 255, 0.8);
}

.aaic-80th-footer__column .aaic-80th-button {
	margin-top: 1rem;
}

.aaic-80th-footer__copyright {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.aaic-80th-footer__copyright p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
	.aaic-80th-section {
		padding: 5rem 0;
	}

	.aaic-80th-hero {
		margin-top: 1.5rem;
		padding: 8rem 0;
	}

	.aaic-80th-hero__description {
		font-size: 1.25rem;
	}

	.aaic-80th-hero__actions {
		flex-direction: row;
		justify-content: center;
	}

	.aaic-80th-action-cards__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aaic-80th-action-cards__featured-row .aaic-80th-action-card--featured {
		max-width: 28rem;
	}

	.aaic-80th-timeline__line {
		display: block;
	}

	.aaic-80th-timeline__item {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 4rem;
		align-items: start;
		margin-bottom: 4rem;
	}

	.aaic-80th-timeline__item--left .aaic-80th-timeline__card {
		grid-column: 1;
		transform: translateX(-2rem);
	}

	.aaic-80th-timeline__item--left .aaic-80th-timeline__photo {
		grid-column: 2;
		grid-row: 1;
		margin: 0;
		transform: translateX(2rem);
	}

	.aaic-80th-timeline__item--right .aaic-80th-timeline__card {
		grid-column: 2;
		transform: translateX(2rem);
	}

	.aaic-80th-timeline__item--right .aaic-80th-timeline__photo {
		grid-column: 1;
		grid-row: 1;
		margin: 0;
		transform: translateX(-2rem);
	}

	.aaic-80th-timeline__item--no-image .aaic-80th-timeline__card {
		grid-column: 1 / -1;
		max-width: 32rem;
		justify-self: center;
		margin: 0 auto;
	}

	.aaic-80th-timeline__item--no-image {
		padding-top: 2.5rem;
	}

	.aaic-80th-timeline__dot {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 3;
		margin: 0;
	}

	.aaic-80th-timeline__dot--final {
		top: auto;
		left: 50%;
		bottom: 0;
		transform: translate(-50%, 50%);
	}

	.aaic-80th-timeline__photo {
		margin: 0;
	}

	.aaic-80th-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.aaic-80th-page {
		--aaic-max-width-wide: 54rem;
	}
}
