:root {
	--color-navy-900: #0f1f3a;
	--color-navy-800: #15294b;
	--color-navy-700: #1d3561;
	--color-red-500: #e91d25;
	--color-slate-050: #f4f6fb;
	--color-slate-200: #ced6eb;
	--color-slate-400: #9aa7c3;
	--color-text-primary: #f3f6ff;
	--color-text-secondary: #c5cee0;
	--shadow-soft: 0 18px 45px rgba(10, 19, 37, 0.35);
	--container-max-width: 1200px;
	--header-height: 4.5rem;
	--radius-lg: 1rem;
	--transition-base: 200ms ease;
}

.page-section {
	max-width: 54rem;
	margin: 0 auto;
}

.page-section--centered {
	text-align: center;
}

.page-section--centered p {
	margin-inline: auto;
	max-width: 34rem;
}

.privacy-copy {
	margin-top: 2.5rem;
	color: var(--color-text-secondary);
}

.privacy-copy h2 {
	margin-top: 2.25rem;
	color: var(--color-text-primary);
}

.privacy-copy h2:first-of-type {
	margin-top: 0;
}

.privacy-copy a {
	color: var(--color-text-primary);
	font-weight: 600;
}

.privacy-copy a:hover,
.privacy-copy a:focus-visible {
	color: var(--color-red-500);
}

.privacy-copy p {
	margin-bottom: 1.5rem;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Source Sans 3", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text-primary);
	background: linear-gradient(160deg, var(--color-navy-900) 0%, #091229 45%, var(--color-navy-800) 100%);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
	margin-top: 0;
	font-family: "Oswald", "Source Sans 3", sans-serif;
	letter-spacing: 0.03em;
	color: var(--color-text-primary);
}

h1 {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	line-height: 1.1;
	text-transform: uppercase;
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	text-transform: uppercase;
}

h3 {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	text-transform: uppercase;
}

p {
	margin-top: 0;
	margin-bottom: 1.25rem;
	color: var(--color-text-secondary);
}

a {
	color: var(--color-text-primary);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover,
a:focus-visible {
	color: var(--color-red-500);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
}

section {
	padding-block: clamp(3rem, 8vw, 6rem);
	scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.section--light {
	background: rgba(21, 41, 75, 0.65);
	backdrop-filter: blur(6px);
}

.container {
	width: min(calc(100% - 2rem), var(--container-max-width));
	margin-inline: auto;
}

.section__header {
	max-width: 42rem;
	margin-bottom: 2rem;
}

.section__header p {
	margin-bottom: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(15, 31, 58, 0.95);
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(4, 11, 24, 0.45);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: 1rem;
}

.brand img {
	width: clamp(9rem, 18vw, 12rem);
	height: auto;
}

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.35rem;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(233, 29, 37, 0.45);
	border-radius: 999px;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: border-color var(--transition-base), background var(--transition-base);
}

.nav-toggle__line {
	width: 1.4rem;
	height: 0.18rem;
	border-radius: 999px;
	background: var(--color-text-primary);
	transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	border-color: var(--color-red-500);
	background: rgba(233, 29, 37, 0.12);
}

.site-nav {
	display: none;
}

.site-nav.is-open {
	display: block;
	position: absolute;
	top: calc(var(--header-height) - 0.5rem);
	right: 1rem;
	background: rgba(15, 31, 58, 0.98);
	border-radius: 1rem;
	box-shadow: var(--shadow-soft);
	padding: 1.25rem 1.5rem;
	animation: fade-in 220ms ease;
}

.site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.site-nav__list a {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	color: var(--color-red-500);
}

.hero {
	position: relative;
	background: radial-gradient(circle at top right, rgba(233, 29, 37, 0.22), transparent 55%),
		linear-gradient(170deg, rgba(21, 53, 97, 0.95) 0%, rgba(10, 24, 46, 0.85) 75%);
}

.hero__layout {
	display: grid;
	gap: 2.5rem;
}

.hero__eyebrow {
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(233, 29, 37, 0.85);
	margin-bottom: 1rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.hero__highlights {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
	color: var(--color-text-secondary);
}

.hero__highlights li::before {
	content: "";
	display: inline-block;
	width: 0.65rem;
	height: 0.65rem;
	margin-right: 0.75rem;
	border-radius: 999px;
	background: var(--color-red-500);
	box-shadow: 0 0 0 4px rgba(233, 29, 37, 0.2);
	transform: translateY(-0.1rem);
}

.hero__stats {
	display: grid;
	gap: 1rem;
}

.stat-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: rgba(12, 24, 45, 0.85);
	border: 1px solid rgba(233, 29, 37, 0.18);
	box-shadow: var(--shadow-soft);
}

.stat-card__value {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 2rem;
	color: var(--color-red-500);
	margin-bottom: 0.25rem;
}

.stat-card__label {
	color: var(--color-text-secondary);
	font-size: 0.95rem;
}

.mission__grid {
	display: grid;
	gap: 1.5rem;
}

.mission__item {
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	background: rgba(13, 28, 52, 0.8);
	border: 1px solid rgba(233, 29, 37, 0.12);
	min-height: 100%;
}

.mission__item p {
	margin-bottom: 0;
}

.services__grid {
	display: grid;
	gap: 1.5rem;
}

.service-card {
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(233, 29, 37, 0.14);
	background: rgba(10, 21, 40, 0.85);
	box-shadow: var(--shadow-soft);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover,
.service-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.service-card p {
	margin-bottom: 0;
}

.past-work__grid {
	display: grid;
	gap: 1.5rem;
}

.past-work__item {
	background: rgba(12, 24, 45, 0.75);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(233, 29, 37, 0.1);
	box-shadow: var(--shadow-soft);
}

.past-work__item figcaption {
	margin: 0;
	padding: 1rem 1.25rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-secondary);
}

.contact__layout {
	display: grid;
	gap: 2.5rem;
}

address {
	font-style: normal;
	margin-bottom: 2rem;
	color: var(--color-text-secondary);
}

.contact__social {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.contact__social a {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.6rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(233, 29, 37, 0.35);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	background: rgba(12, 24, 45, 0.7);
	transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.contact__social a:hover,
.contact__social a:focus-visible {
	border-color: var(--color-red-500);
	background: rgba(233, 29, 37, 0.18);
}

.icon {
	width: 1.4rem;
	height: 1.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-red-500);
}

.icon::before {
	content: "";
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	background: currentColor;
	mask-size: cover;
	mask-position: center;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	background-color: var(--color-slate-050);
}

.icon--facebook::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M279.14 288l14.22-92.66h-88.91V134.9c0-25.35 12.42-50.06 52.24-50.06H296V6.26S259.5 0 225.36 0C149.09 0 100.28 44.38 100.28 124.72V195.3H12v92.7h88.28V512h105.7V288z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M279.14 288l14.22-92.66h-88.91V134.9c0-25.35 12.42-50.06 52.24-50.06H296V6.26S259.5 0 225.36 0C149.09 0 100.28 44.38 100.28 124.72V195.3H12v92.7h88.28V512h105.7V288z'/%3E%3C/svg%3E");
}

.icon--instagram::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9S160.5 370.7 224.1 370.7 339 319.4 339 255.8 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.9-26.9 26.9-14.9 0-26.9-12-26.9-26.9 0-14.9 12-26.9 26.9-26.9 14.9 0 26.9 12 26.9 26.9zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2s34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9S160.5 370.7 224.1 370.7 339 319.4 339 255.8 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.9-26.9 26.9-14.9 0-26.9-12-26.9-26.9 0-14.9 12-26.9 26.9-26.9 14.9 0 26.9 12 26.9 26.9zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2s34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8z'/%3E%3C/svg%3E");
}

.icon--snapchat::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M511.5 381.4c-3.5 17.9-22.4 29.8-43 24.9-4.6-1.1-9.1-2.4-13.4-3.8-10.2-3.2-20-6.2-28.9-6.2-8.4 0-15.5 2.6-22.1 5.1-5.7 2.1-11.1 4.2-16.8 4.2-15.7 0-22.5-11-32.2-26.5-6.4-10.2-13.6-21.7-24.8-33.8 91.1-21.1 127.2-65.6 131-86.5 1.7-9.6-2.1-16.9-11.9-20.2-3.6-1.2-7.1-2.3-10.5-3.4-15.7-4.9-30.4-9.5-38.7-24.1-2.6-4.4-3.5-8.3-2.6-11.6 1.1-3.8 4.4-6.3 6.9-8.1 6.6-4.7 12.4-8.7 12.4-22.7 0-7.6-3.4-14.7-9.9-20.2-5.1-4.4-12.5-7.5-20.9-8.8-1.7-0.3-3.4-1.1-4.3-2-6.1-6.1-6.3-20-5.8-32.4 0.8-21.5 1.7-45.9-12.1-69.5C354.1 30.9 309.7 0 256 0c-53.7 0-98.1 30.9-129.7 88.2-13.8 23.6-12.9 48-12.1 69.5 0.5 12.4 0.3 26.3-5.8 32.4-0.9 0.9-2.6 1.7-4.3 2-8.4 1.3-15.8 4.4-20.9 8.8-6.5 5.6-9.9 12.6-9.9 20.2 0 14 5.8 18 12.4 22.7 2.5 1.8 5.7 4.3 6.9 8.1 0.9 3.3 0 7.2-2.6 11.6-8.3 14.6-23 19.2-38.7 24.1-3.4 1.1-6.9 2.2-10.5 3.4-9.8 3.3-13.6 10.6-11.9 20.2 3.8 20.9 39.8 65.4 131 86.5-11.2 12.2-18.4 23.7-24.8 33.8-9.7 15.5-16.5 26.5-32.2 26.5-5.7 0-11.1-2.1-16.8-4.2-6.6-2.5-13.7-5.1-22.1-5.1-8.9 0-18.7 3-28.9 6.2-4.3 1.4-8.8 2.7-13.4 3.8-20.6 4.9-39.5-7-43-24.9-0.8-3.9 1.5-7.8 5.3-8.6 48.7-10.5 74.7-39.8 85.6-59.6 11 2.2 20.9 3.3 29.7 3.3 13.5 0 23-2.9 29.9-6.4 17.6-8.9 28.3-25 30.7-47.2 26.6 5.3 52.5 8 77.4 8s50.8-2.7 77.4-8c2.4 22.3 13.1 38.3 30.7 47.2 6.9 3.5 16.4 6.4 29.9 6.4 8.8 0 18.7-1.1 29.7-3.3 10.9 19.8 36.9 49.1 85.6 59.6 3.8 0.8 6.1 4.7 5.3 8.6z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M511.5 381.4c-3.5 17.9-22.4 29.8-43 24.9-4.6-1.1-9.1-2.4-13.4-3.8-10.2-3.2-20-6.2-28.9-6.2-8.4 0-15.5 2.6-22.1 5.1-5.7 2.1-11.1 4.2-16.8 4.2-15.7 0-22.5-11-32.2-26.5-6.4-10.2-13.6-21.7-24.8-33.8 91.1-21.1 127.2-65.6 131-86.5 1.7-9.6-2.1-16.9-11.9-20.2-3.6-1.2-7.1-2.3-10.5-3.4-15.7-4.9-30.4-9.5-38.7-24.1-2.6-4.4-3.5-8.3-2.6-11.6 1.1-3.8 4.4-6.3 6.9-8.1 6.6-4.7 12.4-8.7 12.4-22.7 0-7.6-3.4-14.7-9.9-20.2-5.1-4.4-12.5-7.5-20.9-8.8-1.7-0.3-3.4-1.1-4.3-2-6.1-6.1-6.3-20-5.8-32.4 0.8-21.5 1.7-45.9-12.1-69.5C354.1 30.9 309.7 0 256 0c-53.7 0-98.1 30.9-129.7 88.2-13.8 23.6-12.9 48-12.1 69.5 0.5 12.4 0.3 26.3-5.8 32.4-0.9 0.9-2.6 1.7-4.3 2-8.4 1.3-15.8 4.4-20.9 8.8-6.5 5.6-9.9 12.6-9.9 20.2 0 14 5.8 18 12.4 22.7 2.5 1.8 5.7 4.3 6.9 8.1 0.9 3.3 0 7.2-2.6 11.6-8.3 14.6-23 19.2-38.7 24.1-3.4 1.1-6.9 2.2-10.5 3.4-9.8 3.3-13.6 10.6-11.9 20.2 3.8 20.9 39.8 65.4 131 86.5-11.2 12.2-18.4 23.7-24.8 33.8-9.7 15.5-16.5 26.5-32.2 26.5-5.7 0-11.1-2.1-16.8-4.2-6.6-2.5-13.7-5.1-22.1-5.1-8.9 0-18.7 3-28.9 6.2-4.3 1.4-8.8 2.7-13.4 3.8-20.6 4.9-39.5-7-43-24.9-0.8-3.9 1.5-7.8 5.3-8.6 48.7-10.5 74.7-39.8 85.6-59.6 11 2.2 20.9 3.3 29.7 3.3 13.5 0 23-2.9 29.9-6.4 17.6-8.9 28.3-25 30.7-47.2 26.6 5.3 52.5 8 77.4 8s50.8-2.7 77.4-8c2.4 22.3 13.1 38.3 30.7 47.2 6.9 3.5 16.4 6.4 29.9 6.4 8.8 0 18.7-1.1 29.7-3.3 10.9 19.8 36.9 49.1 85.6 59.6 3.8 0.8 6.1 4.7 5.3 8.6z'/%3E%3C/svg%3E");
}

.contact__form-wrapper {
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: rgba(11, 24, 45, 0.82);
	border: 1px solid rgba(233, 29, 37, 0.14);
	box-shadow: var(--shadow-soft);
}

.contact-form {
	display: grid;
	gap: 1.25rem;
}

.form-group {
	display: grid;
	gap: 0.5rem;
}

.form-group label {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

input,
select,
textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 0.65rem;
	border: 1px solid rgba(233, 29, 37, 0.22);
	background: rgba(7, 15, 30, 0.9);
	color: var(--color-text-primary);
	font: inherit;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: none;
	border-color: var(--color-red-500);
	box-shadow: 0 0 0 4px rgba(233, 29, 37, 0.25);
}

textarea {
	resize: vertical;
	min-height: 9rem;
}

select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--color-text-primary) 50%),
		linear-gradient(135deg, var(--color-text-primary) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.8rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--color-red-500);
	color: #fff;
	transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 25px rgba(233, 29, 37, 0.35);
}

.button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: none;
}

.button--ghost {
	background: transparent;
	color: var(--color-text-primary);
	border: 1px solid rgba(233, 29, 37, 0.45);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(233, 29, 37, 0.18);
}

.form-status {
	margin: 0;
	padding: 0.7rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.9rem;
	display: none;
}

.form-status[data-state="pending"] {
	display: block;
	background: rgba(21, 53, 97, 0.65);
	border: 1px solid rgba(233, 29, 37, 0.25);
}

.form-status[data-state="success"] {
	display: block;
	background: rgba(12, 78, 48, 0.75);
	border: 1px solid rgba(82, 255, 200, 0.35);
}

.form-status[data-state="error"] {
	display: block;
	background: rgba(117, 23, 36, 0.75);
	border: 1px solid rgba(233, 29, 37, 0.5);
}

.cf-turnstile {
	min-height: 65px;
}

.form-powered-by {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: var(--color-slate-400);
	opacity: 0.85;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.form-powered-by img {
	width: 28px;
	height: auto;
	border-radius: 0.5rem;
}

.site-footer {
	padding-block: 2rem;
	background: rgba(10, 20, 38, 0.95);
	text-align: center;
	font-size: 0.9rem;
	border-top: 1px solid rgba(233, 29, 37, 0.25);
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
}

.back-to-top {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@keyframes fade-in {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 40rem) {
	.hero__layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
		align-items: center;
	}

	.hero__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mission__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.past-work__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 56rem) {
	.hero__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact__layout {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
		align-items: start;
	}
}

@media (min-width: 62rem) {
	.nav-toggle {
		display: none;
	}

	.site-nav,
	.site-nav.is-open {
		position: static;
		display: block;
		background: transparent;
		box-shadow: none;
		padding: 0;
	}

	.site-nav__list {
		flex-direction: row;
		gap: 1.5rem;
	}

	.site-nav__list a {
		font-size: 0.85rem;
		position: relative;
		padding-bottom: 0.25rem;
	}

	.site-nav__list a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -0.35rem;
		width: 0;
		height: 2px;
		background: var(--color-red-500);
		transition: width var(--transition-base);
	}

	.site-nav__list a:hover::after,
	.site-nav__list a:focus-visible::after {
		width: 100%;
	}
}
