/* ==========================================================================
   Above and Beyond — base stylesheet
   Shared across every page: reset, typography, header, footer, contact
   section/form, buttons. Page-specific sections live in their own
   assets/css/{handle}.css files, enqueued conditionally per template.
   ========================================================================== */

:root {
	--aab-bg: #141924;
	--aab-text: #e8ecf2;
	--aab-orange: #ee6225;
	--aab-orange-deep: #ee6225;
	--aab-orange-alt: #ee6225;
	--aab-teal: #45bda4;
	--aab-teal-alt: #45bda4;
	--aab-blue: #4f7dbb;
	--aab-yellow: #f79730;
	--aab-light-orange: #f79730;
	--aab-gray: #2d2d2d;
	--aab-card-bg: #161d29;
	--aab-border: #1c2431;
	--aab-border-soft: #232c3a;
	--aab-input-border: #2c3545;
	--aab-muted: #7f8a99;
	--aab-muted-2: #8a93a3;
	--aab-muted-3: #6f7a89;
	--aab-text-soft: #cdd4de;
	--aab-text-soft-2: #9aa3b2;

	/* Custom cursor: the site's actual arrow-icon shape (same path used by
	   every prev/next/up/down button, see aab_arrow_icon() in
	   inc/template-tags.php), rotated so its tip points up-left like a
	   normal OS pointer, with the hotspot at that tip. Set on body below so
	   it replaces the default pointer everywhere, not just on hover targets. */
	--aab-cursor-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 32 32'%3E%3Cg transform='rotate(-135 16 16) translate(4.6 0)'%3E%3Cpath d='M7.26822 0.52246C5.39128 2.08677 3.77196 4.00075 2.57586 6.11717L8.79553 12.3192L0.330896 12.3192C-0.110737 14.7117 -0.110738 17.1962 0.330896 19.5886L8.99795 19.5886L2.66787 25.9195C3.90076 28.0727 5.48328 29.9315 7.39702 31.4774L22.8174 16.0551L7.26822 0.52246Z' fill='white'/%3E%3C/g%3E%3C/svg%3E") 7 7, auto;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin: 0;
	background: var(--aab-bg);
	color: var(--aab-text);
	font-family: 'Montserrat', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	cursor: var(--aab-cursor-arrow);
	animation: aab-page-in .6s ease both;
}
@keyframes aab-page-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
	}
}

/* Text-editable fields keep the normal text (I-beam) cursor for usability —
   everything else inherits the custom arrow from body. */
input:not([type="submit"]):not([type="button"]), textarea {
	cursor: text;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
}

button {
	font-family: inherit;
}

a, button, input[type="submit"], input[type="button"], label, select,
[role="button"] {
	cursor: var(--aab-cursor-arrow);
}

::-webkit-scrollbar {
	width: 0;
	height: 6px;
}
::-webkit-scrollbar-thumb {
	background: #2a3342;
	border-radius: 3px;
}

.disp,
h1, h2, h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	letter-spacing: .01em;
}

.dots {
	background-image: radial-gradient(rgba(255, 255, 255, .08) 1.4px, transparent 1.4px);
	background-size: 15px 15px;
}

.site-wrap {
	width: 100%;
	overflow-x: hidden;
	background: var(--aab-bg);
}

.section-title {
	text-align: center;
	font-size: 46px;
	font-weight: 800;
	letter-spacing: .02em;
	margin: 0 0 44px;
}

.btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: none;
	background: var(--aab-orange);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .08em;
	padding: 12px 22px;
	border-radius: 30px;
	cursor: var(--aab-cursor-arrow);
	text-decoration: none;
}

/* The one custom arrow icon (aab_arrow_icon) used inline in buttons, links,
   accordion bar icons, contact rows and production labels — sized per context
   so it always sits neatly with the adjacent text. */
.aab-arrow-icon {
	flex: none;
	vertical-align: middle;
}
.btn-pill .aab-arrow-icon,
.contact-form__submit .aab-arrow-icon {
	width: 11px;
	height: auto;
	margin-left: 2px;
}
.event-mgmt__bar-icon .aab-arrow-icon {
	width: 11px;
	height: auto;
}
.contact-card__row-chevron .aab-arrow-icon {
	width: 9px;
	height: auto;
}
.production__tile-label .aab-arrow-icon {
	width: 10px;
	height: auto;
	margin-right: 5px;
}
.project-detail__back .aab-arrow-icon,
.contact-section__map-open .aab-arrow-icon {
	width: 10px;
	height: auto;
}

/* ============ HEADER ============ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 40px;
	color: #fff;
	transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
/* Sticky dark state applied by JS once the page is scrolled: solid dark bar
   with the brand-coloured bottom border (teal across, blue + orange at the
   right edge). Transparent over the hero at the very top. */
.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: linear-gradient(
		90deg,
		var(--aab-teal-alt) 0%,
		var(--aab-teal-alt) 92%,
		var(--aab-blue) 92%,
		var(--aab-blue) 94.7%,
		var(--aab-yellow) 94.7%,
		var(--aab-yellow) 97.3%,
		var(--aab-orange) 97.3%,
		var(--aab-orange) 100%
	);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}
.site-header.is-stuck {
	background: #0e1520;
	padding-top: 24px;
	padding-bottom: 24px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}
.site-header.is-stuck::after {
	opacity: 1;
}

.site-header__menu {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: var(--aab-cursor-arrow);
	text-decoration: none;
	color: #fff;
	background: none;
	border: none;
	padding: 0;
	font-family: inherit;
}

.site-header__menu-icon {
	position: relative;
	width: 22px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-header__bars {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 22px;
}
.site-header__bars span {
	height: 2px;
	background: #fff;
	width: 100%;
}
.site-header__bars span:last-child {
	width: 70%;
}

.site-header__close-x {
	display: none;
	position: absolute;
	inset: 0;
	font-size: 26px;
	line-height: 18px;
	font-weight: 400;
}

.site-header__menu-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
}
.site-header__menu-label-close {
	display: none;
}

body.nav-drawer-open .site-header__bars { display: none; }
body.nav-drawer-open .site-header__close-x { display: block; }
body.nav-drawer-open .site-header__menu-label-open { display: none; }
body.nav-drawer-open .site-header__menu-label-close { display: inline; }

/* ============ OFF-CANVAS NAV DRAWER ============ */
.site-nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 320px;
	max-width: 82vw;
	z-index: 40;
	/* Frosted glass. */
	background: linear-gradient(109deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
	backdrop-filter: blur(34px) saturate(1.35);
	-webkit-backdrop-filter: blur(34px) saturate(1.35);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 120px 34px 44px;
	transform: translateX(-100%);
	transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
body.nav-drawer-open .site-nav-drawer {
	transform: translateX(0);
}
body.nav-drawer-open {
	overflow: hidden;
}

.site-nav-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
/* Each item is unveiled bottom-to-top, staggered, when the drawer opens. */
.site-nav-drawer__list li {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .5s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
}
body.nav-drawer-open .site-nav-drawer__list li {
	opacity: 1;
	transform: translateY(0);
}
body.nav-drawer-open .site-nav-drawer__list li:nth-child(1) { transition-delay: .10s; }
body.nav-drawer-open .site-nav-drawer__list li:nth-child(2) { transition-delay: .16s; }
body.nav-drawer-open .site-nav-drawer__list li:nth-child(3) { transition-delay: .22s; }
body.nav-drawer-open .site-nav-drawer__list li:nth-child(4) { transition-delay: .28s; }
body.nav-drawer-open .site-nav-drawer__list li:nth-child(5) { transition-delay: .34s; }
body.nav-drawer-open .site-nav-drawer__list li:nth-child(6) { transition-delay: .40s; }

.site-nav-drawer__list a {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .06em;
	text-transform: uppercase;
	transition: color .2s;
}
/* Custom orange arrow slides in before the label on hover. */
.site-nav-drawer__list a::before {
	content: "";
	flex: none;
	width: 0;
	height: 13px;
	margin-right: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 32'%3E%3Cpath d='M7.26822 0.52246C5.39128 2.08677 3.77196 4.00075 2.57586 6.11717L8.79553 12.3192L0.330896 12.3192C-0.110737 14.7117 -0.110738 17.1962 0.330896 19.5886L8.99795 19.5886L2.66787 25.9195C3.90076 28.0727 5.48328 29.9315 7.39702 31.4774L22.8174 16.0551L7.26822 0.52246Z' fill='%23ee6a2c'/%3E%3C/svg%3E") no-repeat center / contain;
	opacity: 0;
	transition: width .25s ease, margin-right .25s ease, opacity .25s ease;
}
.site-nav-drawer__list a:hover {
	color: var(--aab-orange);
}
.site-nav-drawer__list a:hover::before {
	width: 13px;
	margin-right: 10px;
	opacity: 1;
}
.site-nav-drawer__list li.current-menu-item a {
	color: var(--aab-orange);
}

.site-nav-drawer__social {
	display: flex;
	gap: 16px;
	margin-top: 30px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .5s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
}
body.nav-drawer-open .site-nav-drawer__social {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .46s;
}
.site-nav-drawer__social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: var(--aab-cursor-arrow);
}
.site-nav-drawer__social-icon svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 560px) {
	.site-nav-drawer {
		width: 82vw;
		padding: 104px 30px 38px;
	}
	.site-nav-drawer__list a {
		font-size: 14px;
	}
}

.site-header__mark {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
}
.site-header__mark .custom-logo-link {
	display: block;
	width: 42px;
	height: 42px;
}
.site-header__mark img.custom-logo {
	width: 42px;
	height: 42px;
	object-fit: cover;
}

.site-header__contact {
	display: flex;
	align-items: center;
	gap: 9px;
	cursor: var(--aab-cursor-arrow);
	text-decoration: none;
	color: #fff;
}
.site-header__contact span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .16em;
}

/* ============ HERO (shared shell; size/copy vary per page) ============ */
.hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #1a0f0a;
	display: flex;
	align-items: flex-end;
}
/* Every page banner is a full viewport tall on all breakpoints. The .site-wrap
   prefix raises specificity so this wins over each hero variant's own height
   (desktop and mobile). */
.site-wrap .hero {
	height: 100vh;
	height: 100svh;
	min-height: 480px;
}
.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__overlay {
	position: absolute;
	inset: 0;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
	padding: 40px 48px 60px;
	max-width: none;
	margin: 0;
	position: relative;
}
/* LINKS menu sits directly under the map (left column), not full contact width. */
.contact-section__links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 26px;
}

.contact-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
	position: relative;
	z-index: 2;
}

.contact-section__heading {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.02;
	margin: 0 0 16px;
	color: #fff;
}

.contact-section__sub {
	color: var(--aab-muted);
	font-size: 13.5px;
	margin: 0 0 26px;
}

.contact-section__map {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	height: 300px;
	background: #223;
}
.contact-section__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.contact-section__map-open {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(15, 22, 32, .82);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background .2s ease, transform .2s ease;
}
.contact-section__map-open:hover {
	background: var(--aab-orange);
	transform: translateY(-1px);
}

.contact-card {
	background: linear-gradient(141deg, rgba(255, 255, 255, 0.15) 24.97%, rgba(255, 255, 255, 0.06) 80.01%);
	backdrop-filter: blur(22px) saturate(1.1);
	-webkit-backdrop-filter: blur(22px) saturate(1.1);
	border: 1px solid var(--aab-teal);
	border-radius: 18px;
	padding: 34px 36px;
}

.contact-card__title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
	margin: 0 0 6px;
	color: #fff;
}

.contact-card__sub {
	color: var(--aab-muted-3);
	font-size: 12.5px;
	margin: 0 0 26px;
}

.contact-card__row {
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid var(--aab-border-soft);
	padding: 14px 0;
	text-decoration: none;
	color: inherit;
}
.contact-card__row--last {
	margin-bottom: 26px;
}

.contact-card__icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #1f2735;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.contact-card__row-text {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.contact-card__row-label {
	font-size: 11px;
	color: var(--aab-muted-3);
	letter-spacing: .05em;
}
.contact-card__row-value {
	font-size: 13px;
	color: var(--aab-text-soft);
}
.contact-card__row-chevron {
	color: var(--aab-muted-3);
}

.contact-card__email-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 4px;
	color: #fff;
}
.contact-card__email-sub {
	color: var(--aab-muted-3);
	font-size: 12px;
	margin: 0 0 22px;
}

.contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px 30px;
}

.contact-form__field label {
	display: block;
	font-size: 11px;
	color: #8a93a3;
	letter-spacing: .05em;
	margin-bottom: 8px;
}

.contact-form__field input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--aab-input-border);
	color: var(--aab-text-soft);
	font-size: 13px;
	padding: 6px 0;
	outline: none;
	font-family: inherit;
	border-radius: 0;
}
.contact-form__field input::placeholder {
	color: #5b6677;
}
.contact-form__field input:focus {
	border-bottom-color: var(--aab-orange);
}

.contact-form__status {
	min-height: 18px;
	margin-top: 18px;
	font-size: 12.5px;
}
.contact-form__status--success {
	color: var(--aab-teal-alt);
}
.contact-form__status--error {
	color: var(--aab-orange);
}

.contact-form__submit {
	width: 100%;
	margin-top: 14px;
	border: none;
	background: var(--aab-orange-deep);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .06em;
	padding: 15px;
	border-radius: 30px;
	cursor: var(--aab-cursor-arrow);
}
.contact-form__submit:disabled,
.contact-form__submit.is-loading {
	opacity: .65;
	cursor: progress;
}

/* ============ FOOTER ============ */
.site-footer {
	border-top: 1px solid var(--aab-border);
	padding: 34px 40px 40px;
	max-width: 1280px;
	margin: 0 auto;
}

.site-footer__row {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.site-footer__label {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: .12em;
	color: #fff;
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	font-size: 16px;
	letter-spacing: .06em;
	color: var(--aab-muted-2);
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.site-footer__nav a {
	color: var(--aab-muted-2);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}
.site-footer__nav li.current-menu-item a {
	color: var(--aab-text-soft);
}

.site-footer__social {
	display: flex;
	gap: 16px;
	margin-top: 22px;
}
.site-footer__social-icon {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: var(--aab-card-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: var(--aab-cursor-arrow);
}

.site-footer__accent-bar {
	height: 10px;
	background: linear-gradient(
		90deg,
		var(--aab-teal) 0%,
		var(--aab-teal) 3%,
		var(--aab-blue) 3%,
		var(--aab-blue) 94%,
		var(--aab-yellow) 94%,
		var(--aab-yellow) 97%,
		var(--aab-orange) 97%,
		var(--aab-orange) 100%
	);
}

/* ============ GENERIC CONTENT (fallback templates) ============ */
.generic-content {
	max-width: 880px;
	margin: 0 auto;
	padding: 170px 40px 60px;
}
.generic-content__title {
	font-size: 42px;
	font-weight: 800;
	margin: 0 0 24px;
	color: #fff;
}
.generic-content__body {
	color: var(--aab-muted-2);
	font-size: 15px;
	line-height: 1.7;
}
.generic-content__body a {
	color: var(--aab-orange);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
	.contact-section__grid {
		grid-template-columns: 1fr;
	}
	.contact-form__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.site-header {
		padding: 20px 24px;
	}
	.section-title {
		font-size: 30px;
		padding-left: 20px;
		padding-right: 20px;
		overflow-wrap: break-word;
	}
	.contact-section {
		padding-left: 24px;
		padding-right: 24px;
	}
	.contact-card {
		padding: 26px 24px;
	}
	.contact-section__heading {
		font-size: 34px;
	}
	.site-footer {
		padding: 28px 24px 32px;
	}
	.generic-content {
		padding-left: 24px;
		padding-right: 24px;
	}
	.generic-content__title {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.site-header {
		padding: 16px 18px;
	}
	.section-title {
		font-size: 26px;
	}
	.site-header__menu-label,
	.site-header__contact span {
		display: none;
	}
	.site-header__contact {
		gap: 0;
	}
	.contact-card {
		padding: 22px 18px;
	}
	.contact-form__grid {
		gap: 20px;
	}
	.site-footer__row {
		gap: 20px;
	}
	.site-footer__nav {
		gap: 16px 20px;
	}
}

/* ============ MOTION & MICRO-INTERACTIONS ============ */

/* Scroll-reveal: sections/cards ease into place. The .aab-reveal class is
   added by assets/js/reveal.js, so content is never hidden without JS. */
.aab-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1);
	will-change: opacity, transform;
}
.aab-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Buttons: subtle lift + brightness on hover. */
.btn-pill,
.contact-form__submit {
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.btn-pill:hover,
.contact-form__submit:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

/* Unified nav-arrow look site-wide: a circular button with a dark translucent
   fill and a thin light ring, white arrow. The `.site-wrap` prefix raises the
   specificity so this wins over each section's own single-class arrow styles
   (size/appearance only — positioning stays with the per-section rules). */
.site-wrap .about-slider__arrow,
.site-wrap .partners__arrow,
.site-wrap .partners__arrow--next,
.site-wrap .sig-projects__arrow,
.site-wrap .production__arrow,
.site-wrap .staffing__arrow,
.site-wrap .sig-viewer__nav-btn {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(34, 38, 46, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.32);
	color: #fff;
}

/* Nav-arrow buttons: gentle scale on hover. */
.about-slider__arrow,
.partners__arrow,
.sig-projects__arrow,
.production__arrow,
.staffing__arrow,
.sig-viewer__nav-btn {
	transition: transform .2s ease, background .2s ease, filter .2s ease;
}
.about-slider__arrow:hover,
.partners__arrow:hover,
.production__arrow:hover,
.sig-viewer__nav-btn:hover {
	transform: scale(1.1);
	filter: brightness(1.08);
}
/* Staffing arrows are horizontally centred (translateX(-50%)), so their hover
   must keep that transform to avoid a sideways jump. */
.staffing__arrow:hover {
	transform: translateX(-50%) scale(1.1);
	filter: brightness(1.08);
}
.sig-projects__arrow:hover {
	transform: translateY(-50%) scale(1.1);
	filter: brightness(1.08);
}

/* Header contact + footer links: smooth colour shift. */
.site-header__contact,
.site-header__menu,
.site-footer__nav a,
.contact-card__row {
	transition: color .2s ease, opacity .2s ease;
}
.site-footer__nav a:hover {
	color: var(--aab-text-soft);
}

/* Social icons: fade/lift. */
.site-footer__social-icon,
.site-nav-drawer__social-icon {
	transition: transform .2s ease, opacity .2s ease;
}
.site-footer__social-icon:hover,
.site-nav-drawer__social-icon:hover {
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.aab-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.btn-pill,
	.contact-form__submit,
	.about-slider__arrow,
	.partners__arrow,
	.sig-projects__arrow,
	.production__arrow,
	.staffing__arrow,
	.sig-viewer__nav-btn {
		transition: none;
	}
}
