/*
Theme Name: 3ag
Theme URI: https://3agcom.com.br
Author: 3ag Comunicação
Description: Landing page administrável da 3ag Comunicação.
Version: 1.0.0
Text Domain: ag
*/

@font-face {
	font-family: "Dirtyline";
	src: url("public/fonts/dirtyline.otf") format("opentype");
	font-display: swap;
}

:root {
	--ag-bg: #0e0f11;
	--ag-panel: #1c1d20;
	--ag-text: #ffffff;
	--ag-soft: #e0eeee;
	--ag-muted: rgba(255, 255, 255, 0.66);
	--ag-subtle: rgba(255, 255, 255, 0.1);
	--ag-aqua: #c5fcfc;
	--ag-orange: #e84b2e;
	--ag-yellow: #f5d623;
	--ag-gray: #d4d4d4;
	--ag-max: 1400px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--ag-bg);
	color: var(--ag-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.admin-bar .site-header {
	top: 32px;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	border-bottom: 1px solid var(--ag-subtle);
	background: rgba(14, 15, 17, 0.95);
	padding: 16px 20px;
	backdrop-filter: blur(18px);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.site-brand img {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	object-fit: cover;
}

.site-brand-name {
	color: var(--ag-text);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	font-weight: 600;
	transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
	color: var(--ag-text);
}

.pill-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	padding: 10px 22px;
	color: var(--ag-text);
	font-size: 0.95rem;
	font-weight: 700;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pill-link:hover,
.pill-link:focus {
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.06);
}

.pill-link.primary {
	border-color: var(--ag-aqua);
	background: var(--ag-aqua);
	color: var(--ag-bg);
}

.pill-link.primary:hover,
.pill-link.primary:focus {
	transform: translateY(-2px);
}

.site-main {
	background: var(--ag-bg);
}

.hero {
	position: sticky;
	top: 0;
	z-index: 0;
	min-height: 880px;
	height: 100vh;
	overflow: hidden;
	background: linear-gradient(135deg, #0e0f11 0%, #172121 44%, #1c1d20 100%);
}

.hero-marquee {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
}

.hero-marquee-track {
	display: flex;
	width: max-content;
	animation: ag-marquee 20s linear infinite;
}

.hero-marquee-text {
	flex: 0 0 auto;
	color: rgba(224, 238, 238, 0.12);
	font-size: 9rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

@keyframes ag-marquee {
	to {
		transform: translateX(-33.333%);
	}
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 100%;
	padding: 128px 24px 208px;
}

.hero-grid,
.section-inner {
	width: min(100%, var(--ag-max));
	margin-inline: auto;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	align-items: end;
	gap: 56px;
}

.eyebrow {
	margin: 0 0 22px;
	color: var(--ag-aqua);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-title {
	margin: 0;
	color: var(--ag-soft);
	font-size: 10.5rem;
	font-weight: 900;
	line-height: 0.82;
	text-transform: uppercase;
}

.hero-copy {
	max-width: 680px;
	margin: 32px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.45rem;
	line-height: 1.55;
}

.hero-copy p,
.hero-side-copy p,
.lead-copy p,
.quote-copy p {
	margin: 0;
}

.hero-side-copy {
	max-width: 580px;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.35rem;
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.hero-bottom {
	position: absolute;
	inset: auto 0 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 24px;
}

.chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.chip-list span,
.chip {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	padding: 9px 15px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hero-socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	color: var(--ag-text);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hero-socials a:hover,
.hero-socials a:focus {
	opacity: 0.72;
}

.hero-socials .divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.4);
}

.featured-media {
	position: relative;
	z-index: 10;
	overflow: hidden;
	border-radius: 32px 32px 0 0;
	background: var(--ag-bg);
}

.featured-media-frame {
	position: relative;
	min-height: 420px;
	height: 60vh;
	max-height: 720px;
}

.featured-media-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #0e0f11, rgba(14, 15, 17, 0.25), transparent);
}

.featured-content {
	position: absolute;
	inset: auto 0 0;
	padding: 0 24px 44px;
}

.featured-content-grid {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	width: min(100%, var(--ag-max));
	margin-inline: auto;
}

.section {
	position: relative;
	z-index: 20;
	background: var(--ag-bg);
	padding: 120px 24px;
}

.section-rule {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
}

.section-rule span {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.section-rule::after {
	content: "";
	height: 1px;
	flex: 1;
	background: rgba(255, 255, 255, 0.15);
}

.has-reveal [data-reveal] {
	--reveal-x: 0px;
	--reveal-y: 32px;
	--reveal-delay: 0ms;
	opacity: 0;
	transform: translate3d(var(--reveal-x), var(--reveal-y), 0) rotate(var(--card-rotation, 0deg));
	transition: opacity 620ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--reveal-delay);
	will-change: opacity, transform;
}

.has-reveal [data-reveal="left"] {
	--reveal-x: -72px;
	--reveal-y: 0px;
}

.has-reveal [data-reveal="right"] {
	--reveal-x: 72px;
	--reveal-y: 0px;
}

.has-reveal [data-reveal="up"] {
	--reveal-x: 0px;
	--reveal-y: 42px;
}

.has-reveal [data-reveal].is-visible {
	--reveal-x: 0px;
	--reveal-y: 0px;
	opacity: 1;
}

.display-title {
	--fill: 100%;
	margin: 0;
	color: transparent;
	background-image: linear-gradient(to right, rgba(224, 238, 238, 0.92) var(--fill), rgba(224, 238, 238, 0.16) var(--fill));
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 10rem;
	font-weight: 900;
	line-height: 0.85;
	text-transform: uppercase;
}

.display-title span {
	display: block;
}

.display-title.solid {
	color: var(--ag-soft);
	background: none;
}

.display-title .muted-line {
	color: rgba(255, 255, 255, 0.2);
}

.section-split {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 44px;
	margin-top: 48px;
}

.quote-copy {
	max-width: 420px;
	margin: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 1rem;
	font-style: italic;
	line-height: 1.7;
}

.lead-copy {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.25rem;
	line-height: 1.62;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	max-width: 920px;
	margin-top: 88px;
	margin-inline: auto;
}

.stat-card {
	--card-rotation: 0deg;
	--reveal-x: 0px;
	--reveal-y: 0px;
	display: flex;
	min-height: 232px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	border-radius: 8px;
	padding: 32px;
	color: #000000;
	text-align: center;
	transform: translate3d(var(--reveal-x), var(--reveal-y), 0) rotate(var(--card-rotation));
	transition: opacity 620ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
	transform: translate3d(var(--reveal-x), calc(var(--reveal-y) - 3px), 0) rotate(var(--card-rotation));
}

.stat-card.color-orange {
	background: var(--ag-orange);
}

.stat-card.color-aqua {
	background: var(--ag-aqua);
}

.stat-card.color-gray {
	background: var(--ag-gray);
}

.stat-card.color-yellow {
	background: var(--ag-yellow);
}

.rotate-left {
	--card-rotation: -2deg;
}

.rotate-right {
	--card-rotation: 2deg;
}

.rotate-soft {
	--card-rotation: 1deg;
}

.rotate-image-left {
	--card-rotation: -4deg;
}

.rotate-image-right {
	--card-rotation: 4deg;
}

.stat-number {
	font-size: 5rem;
	font-weight: 900;
	line-height: 1;
}

.stat-label {
	margin-top: 0;
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

.content-divider {
	margin-top: 96px;
	border-top: 1px solid var(--ag-subtle);
	padding-top: 40px;
}

.section-heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 40px;
}

.section-heading-row h3 {
	margin: 0;
	color: var(--ag-text);
	font-size: 3.75rem;
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}

.section-heading-row-title {
	max-width: 820px;
	margin: 0;
	color: var(--ag-text);
	font-size: 3.75rem;
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}

.muted-label {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.team-grid,
.nuclei-logo-list {
	display: grid;
	gap: 12px;
}

.team-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card,
.nucleus-logo-card,
.partner-logo-card,
.client-logo-card {
	border: 1px solid var(--ag-subtle);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
}

.team-card {
	overflow: hidden;
}

.team-avatar {
	display: flex;
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(197, 252, 252, 0.18), rgba(255, 255, 255, 0.04));
}

.team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.08);
}

.team-avatar span {
	color: rgba(224, 238, 238, 0.72);
	font-size: 4rem;
	font-weight: 900;
	line-height: 1;
}

.team-card-body {
	padding: 18px;
}

.team-card h4 {
	margin: 0;
	color: var(--ag-text);
}

.team-card h4 {
	font-size: 1.15rem;
}

.team-card p {
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.55;
}

.team-card p {
	margin: 8px 0 0;
	font-size: 0.95rem;
}

.works-intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 34px;
}

.work-list {
	display: flex;
	flex-direction: column;
	gap: 112px;
	margin-top: 88px;
}

.work-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
	align-items: center;
	gap: 56px;
}

.work-card.image-first {
	grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1fr);
}

.work-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.work-client {
	margin: 0;
	color: var(--ag-aqua);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.work-copy h3 {
	max-width: 720px;
	margin: 0;
	color: var(--ag-soft);
	font-size: 4rem;
	font-weight: 900;
	line-height: 0.94;
	text-transform: uppercase;
}

.work-copy p {
	max-width: 570px;
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 1.1rem;
	line-height: 1.62;
}

.work-image {
	--card-rotation: 0deg;
	--reveal-x: 0px;
	--reveal-y: 0px;
	aspect-ratio: 1.3;
	overflow: hidden;
	border-radius: 8px;
	transform: translate3d(var(--reveal-x), var(--reveal-y), 0) rotate(var(--card-rotation));
}

.work-image img,
.service-thumb img,
.more-work-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.more-works-slider {
	overflow: hidden;
}

.slider-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.slider-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.slider-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--ag-subtle);
	border-radius: 999px;
	background: transparent;
	color: var(--ag-text);
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.slider-button:hover,
.slider-button:focus {
	border-color: rgba(197, 252, 252, 0.52);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}

.slider-button .arrow-prev {
	transform: rotate(-135deg);
}

.more-works-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	padding: 4px 0 18px;
	scroll-padding-inline: 2px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.more-work-card {
	display: flex;
	min-height: 455px;
	flex: 0 0 min(320px, 82vw);
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--ag-subtle);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.035);
	scroll-snap-align: start;
}

.more-work-media {
	display: flex;
	aspect-ratio: 1.05;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(197, 252, 252, 0.12), rgba(255, 255, 255, 0.04));
}

.more-work-media span {
	width: 52%;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.more-work-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	gap: 14px;
	padding: 22px;
}

.more-work-copy h3 {
	margin: 0;
	color: var(--ag-text);
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1.02;
	text-transform: uppercase;
}

.more-work-copy p:not(.work-client) {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.95rem;
	line-height: 1.52;
}

.services-title {
	margin-bottom: 64px;
}

.service-list {
	border-bottom: 1px solid var(--ag-subtle);
}

.service-item {
	border-top: 1px solid var(--ag-subtle);
}

.service-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 28px 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	text-align: left;
}

.service-number {
	width: 58px;
	flex: 0 0 58px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
}

.service-name {
	flex: 1;
	color: var(--ag-soft);
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}

.service-thumb {
	position: relative;
	width: 116px;
	height: 96px;
	flex: 0 0 116px;
	overflow: hidden;
	border-radius: 8px;
	transform: rotate(5deg);
}

.service-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 300ms ease, opacity 300ms ease;
}

.service-item.is-open .service-panel {
	max-height: 360px;
	opacity: 1;
}

.service-panel-inner {
	padding: 0 0 32px 58px;
}

.service-panel p {
	max-width: 660px;
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 1rem;
	line-height: 1.62;
}

.nuclei-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: 56px;
}

.nuclei-logo-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.nucleus-logo-card {
	display: flex;
	min-height: 164px;
	align-items: center;
	justify-content: center;
	padding: 28px;
}

.nucleus-logo-card img {
	max-width: 180px;
	max-height: 86px;
	object-fit: contain;
	filter: grayscale(1) brightness(1.18);
	opacity: 0.86;
}

.nucleus-logo-card span {
	color: var(--ag-text);
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.partner-logo-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.client-logo-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 64px;
}

.partner-logo-card {
	display: flex;
	width: min(260px, 100%);
	min-height: 132px;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.client-logo-card {
	display: flex;
	width: min(220px, 100%);
	min-height: 132px;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.partner-logo-card img,
.client-logo-card img {
	max-width: 180px;
	max-height: 72px;
	object-fit: contain;
	filter: grayscale(1) brightness(1.16);
	opacity: 0.88;
}

.partner-logo-card span,
.client-logo-card span {
	color: var(--ag-text);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
}

.clients-head {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: end;
	gap: 48px;
}

.social-section {
	text-align: center;
}

.social-logo-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	max-width: 760px;
	margin: 72px auto 0;
	padding: 0 24px;
}

.social-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border: 1px solid var(--ag-subtle);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-logo-link:hover,
.social-logo-link:focus {
	border-color: rgba(197, 252, 252, 0.52);
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-3px);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--ag-text);
}

.social-icon svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.arrow-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.55;
}

.cta-section {
	padding-block: 150px;
}

.cta-grid {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
}

.cta-copy {
	max-width: 440px;
}

.cta-copy p {
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.1rem;
	line-height: 1.62;
}

.site-footer {
	position: relative;
	z-index: 20;
	border-top: 1px solid var(--ag-subtle);
	background: var(--ag-bg);
	padding-top: 70px;
}

.footer-inner {
	width: min(100% - 48px, 1200px);
	margin-inline: auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	padding-bottom: 64px;
}

.footer-logo {
	width: 72px;
	height: 72px;
	border-radius: 999px;
	object-fit: cover;
}

.footer-description {
	max-width: 420px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 1.1rem;
	line-height: 1.62;
}

.footer-email {
	display: inline-block;
	margin-top: 32px;
	color: var(--ag-text);
	font-size: 1.45rem;
	font-weight: 800;
}

.footer-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.office-title,
.footer-social-title {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.office-links {
	display: grid;
	gap: 12px;
}

.office-links a {
	color: var(--ag-text);
	font-size: 1.25rem;
	font-weight: 700;
}

.footer-socials {
	grid-column: 1 / -1;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid var(--ag-subtle);
	padding: 28px 0;
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
}

.footer-bottom a {
	font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.has-reveal [data-reveal] {
		opacity: 1;
		transform: translate3d(0, 0, 0) rotate(var(--card-rotation, 0deg));
		transition: none;
	}

	.hero-marquee-track {
		animation: none;
	}
}

@media (max-width: 1180px) {
	.hero-title,
	.display-title {
		font-size: 7rem;
	}

	.hero-grid,
	.work-card,
	.work-card.image-first,
	.nuclei-grid,
	.clients-head,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.team-grid,
	.nuclei-logo-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	.site-header {
		padding: 12px 16px;
	}

	.primary-nav {
		display: none;
	}

	.site-brand-name {
		display: none;
	}

	.hero {
		min-height: 880px;
	}

	.hero-inner {
		align-items: flex-start;
		padding: 120px 20px 300px;
	}

	.hero-title,
	.display-title {
		font-size: 4.5rem;
	}

	.hero-copy,
	.hero-side-copy,
	.lead-copy {
		font-size: 1.08rem;
	}

	.hero-grid,
	.featured-content-grid,
	.section-split,
	.section-heading-row,
	.works-intro,
	.cta-grid,
	.footer-bottom {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.section,
	.cta-section {
		padding: 88px 20px;
	}

	.featured-content {
		padding-inline: 20px;
	}

	.stats-grid,
	.team-grid,
	.nuclei-logo-list,
	.footer-contact-grid {
		grid-template-columns: 1fr;
	}

	.client-logo-list {
		gap: 12px;
		justify-content: center;
	}

	.client-logo-card {
		width: min(160px, calc(50% - 6px));
		min-height: 112px;
		padding: 18px;
	}

	.slider-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.more-work-card {
		flex-basis: min(300px, 84vw);
		min-height: 430px;
	}

	.social-logo-list {
		gap: 14px;
		padding: 0;
	}

	.social-logo-link {
		width: 76px;
		height: 76px;
	}

	.social-icon {
		width: 46px;
		height: 46px;
	}

	.social-icon svg {
		width: 26px;
		height: 26px;
	}

	.section-heading-row h3,
	.work-copy h3,
	.service-name {
		font-size: 2.45rem;
	}

	.service-thumb {
		display: none;
	}

	.service-panel-inner {
		padding-left: 0;
	}

	.footer-inner {
		width: min(100% - 40px, 1200px);
	}
}
