@font-face {
	font-family: "Oxanium";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/wp-content/uploads/2024/10/Oxanium-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Oxanium";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/wp-content/uploads/2024/10/Oxanium-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Oxanium";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/wp-content/uploads/2024/10/Oxanium-SemiBold.woff2") format("woff2");
}

@font-face {
	font-family: "Oxanium";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/wp-content/uploads/2024/10/Oxanium-Bold.woff2") format("woff2");
}

:root {
	--c-accent: #ff4d24;
	--c-accent-dark: #df3510;
	--c-ink: #161616;
	--c-dark: #0d0d0e;
	--c-muted: #6d6a75;
	--c-line: #dad9dc;
	--c-surface: #f3f3f3;
	--c-white: #fff;
	--font-body: "Oxanium", system-ui, sans-serif;
	--container: 1920px;
	--container-narrow: 960px;
	--gutter: 4rem;
	--section-space: clamp(4rem, 8vw, 8rem);
	--transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 8rem;
}

body {
	margin: 0;
	background: var(--c-white);
	color: var(--c-ink);
	font-family: var(--font-body);
	font-size: clamp(0.9375rem, 0.9vw, 1.125rem);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

body.rst-site > .login-button {
	display: none !important;
}

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

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
	font: inherit;
}

button:not(:disabled),
summary,
a[href],
[role="button"]:not([aria-disabled="true"]),
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
input[type="reset"]:not(:disabled),
label[for],
select:not(:disabled) {
	cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
[aria-disabled="true"] {
	cursor: not-allowed;
}

h1,
h2,
h3,
h4,
p,
figure {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-weight: 600;
	line-height: 1.02;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(2.7rem, 5.3vw, 5.5rem);
}

h2 {
	font-size: clamp(2rem, 3.8vw, 4rem);
}

h3 {
	font-size: clamp(1.15rem, 1.8vw, 1.75rem);
}

::selection {
	background: var(--c-accent);
	color: var(--c-white);
}

:focus-visible {
	outline: 3px solid var(--c-accent);
	outline-offset: 4px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.l-container {
	width: min(100%, var(--container));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.l-container--narrow {
	width: min(100%, var(--container-narrow));
}

.l-card-grid {
	display: grid;
	gap: clamp(1rem, 2vw, 2rem);
}

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

.l-card-grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-flow {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 2vw, 2rem);
}

.l-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 6rem);
	align-items: center;
}

.c-skip-link {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: var(--c-white);
	color: var(--c-ink);
	transform: translateY(-200%);
}

.c-skip-link:focus {
	transform: none;
}

.c-topbar {
	background: var(--c-accent);
	color: var(--c-white);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.c-topbar__inner {
	display: flex;
	justify-content: space-between;
	padding-block: 0.5rem;
}

.c-topbar a,
.c-site-header a,
.c-site-footer a {
	text-decoration: none;
}

.c-site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 998;
	background: var(--c-dark);
	color: var(--c-white);
}

.c-site-header__main {
	background: var(--c-dark);
}

.c-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0;
	align-items: center;
	min-height: 0;
	padding-block: 1.25rem;
}

.c-brand {
	display: block;
	width: 8.75rem;
}

.c-brand img {
	width: 100%;
	height: 2.76875rem;
	object-fit: contain;
	object-position: left center;
}

.c-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.875rem;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-nav__link,
.c-nav .menu-item > a {
	position: relative;
	display: inline-block;
	padding-block: 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7;
	text-transform: uppercase;
}

.c-nav__link::after,
.c-nav .menu-item > a::after {
	position: absolute;
	right: 0;
	bottom: 0.25rem;
	left: 0;
	height: 2px;
	background: var(--c-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition);
}

.c-nav__link:hover::after,
.c-nav .menu-item > a:hover::after,
.c-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.c-nav .sub-menu {
	position: absolute;
	min-width: 13rem;
	margin: 0;
	padding: 1rem;
	background: var(--c-dark);
	border-top: 2px solid var(--c-accent);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(0.75rem);
	transition: opacity var(--transition), transform var(--transition);
}

.c-nav .menu-item-has-children:hover > .sub-menu,
.c-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.c-header-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
}

.site-main {
	margin-top: 0;
	padding-top: 1.59375rem;
}

.c-language-switcher {
	display: flex;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-language-switcher .current-lang {
	color: var(--c-accent);
}

.c-header-actions__cart {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.c-header-actions__count {
	display: grid;
	width: 1.5rem;
	height: 1.5rem;
	place-items: center;
	background: var(--c-accent);
	color: var(--c-white);
}

.c-menu-toggle {
	display: none;
	width: 2.5rem;
	padding: 0;
	border: 0;
	background: transparent;
}

.c-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin-block: 0.4rem;
	background: var(--c-white);
	transition: transform var(--transition), opacity var(--transition);
}

.c-button {
	display: inline-flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	min-height: 3rem;
	padding: 0.8rem 1.1rem;
	border: 1px solid var(--c-accent);
	background: var(--c-accent);
	color: var(--c-white);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.c-button:hover {
	border-color: var(--c-ink);
	background: var(--c-ink);
}

.c-button--dark {
	border-color: var(--c-dark);
	background: var(--c-dark);
}

.c-button--outline {
	border-color: currentColor;
	background: transparent;
}

.c-button__icon {
	width: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.c-button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.c-eyebrow {
	margin-bottom: 0.75rem;
	color: var(--c-accent);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.c-hero {
	overflow: hidden;
	background: var(--c-white);
}

body.home .c-hero {
	margin-top: 4.6875rem;
}

.c-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: min(46rem, 76vh);
	padding-inline: 0;
}

body.home .c-hero__inner {
	min-height: 29.05rem;
}

body.home .c-hero__copy {
	padding: 4rem;
}

.c-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(3rem, 8vw, 8rem) var(--gutter);
}

.c-hero__copy h1 {
	max-width: 11ch;
	margin-bottom: 1.5rem;
	font-size: clamp(2.5rem, 3.8vw, 4rem);
}

body.home .c-hero__copy h1 {
	width: 25.96875rem;
	max-width: 25.96875rem;
	margin-bottom: 0.75rem;
	font-size: 3.75rem;
	line-height: 1;
}

body.home .c-hero__copy p {
	width: 25.96875rem;
	max-width: 25.96875rem;
	margin-bottom: 2.75rem;
	font-size: 1.5rem;
	line-height: 1.2;
}

body.home .c-hero__copy .c-button {
	min-height: 0;
	padding: 0.5rem 1rem;
	border: 0;
	font-size: 1rem;
	line-height: 1.7;
}

.c-hero__copy p {
	max-width: 32rem;
	margin-bottom: 2rem;
	color: var(--c-muted);
	font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.c-products-section .l-card-grid--products {
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.c-products-section .c-product-card {
	flex: 0 0 15.9375rem;
	scroll-snap-align: start;
}

.c-products-section .c-section-heading__title {
	font-size: 1.5625rem;
	line-height: 1.1;
}

.c-products-section .c-section-heading__subtitle {
	font-size: 1rem;
	line-height: 1.2;
}

body.home .c-products-section {
	padding: 0 0 4rem;
}

body.home .c-products-section .c-section-heading {
	margin-bottom: 4.26875rem;
}

body.home .c-products-section .l-card-grid--products {
	min-height: 27.3198rem;
}

body.home .c-products-section .c-section__action {
	margin-top: 4.4875rem;
}

body.home .c-products-section .c-section__action .c-button {
	min-height: 0;
	padding: 0.5rem 1rem;
	border: 0;
	font-size: 1rem;
	line-height: 1.7;
}

.c-hero__media {
	height: 100%;
	margin: 0;
}

.c-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-section {
	padding-block: var(--section-space);
}

.c-section--dark {
	background: var(--c-dark);
	color: var(--c-white);
}

.c-section--muted {
	background: var(--c-surface);
}

.c-section--accent {
	background: var(--c-accent);
	color: var(--c-white);
}

.c-section-heading {
	margin-bottom: clamp(2.5rem, 5vw, 5rem);
	text-align: center;
}

.c-section-heading__title {
	margin-bottom: 0.5rem;
}

.c-section-heading__subtitle {
	margin-bottom: 0;
	color: var(--c-muted);
}

.c-section__action {
	margin-top: clamp(2.5rem, 4vw, 4rem);
	text-align: center;
}

.c-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: var(--c-surface);
}

.c-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1;
	background: #ecebed;
	text-decoration: none;
}

.c-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.c-card:hover .c-card__media img {
	transform: scale(1.035);
}

.c-card__placeholder {
	display: grid;
	height: 100%;
	place-items: center;
	color: #c8c6ca;
	font-size: 3rem;
	font-weight: 700;
}

.c-card__body {
	display: flex;
	min-height: 11rem;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.c-card__title {
	margin-bottom: 1rem;
	font-size: clamp(0.92rem, 1.1vw, 1.08rem);
	line-height: 1.25;
}

.c-card__title a,
.c-text-link {
	text-decoration: none;
}

.c-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
	color: var(--c-accent);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
}

.c-card__meta a {
	text-decoration: none;
}

.c-card__excerpt {
	color: var(--c-muted);
	font-size: 0.9rem;
}

.c-text-link {
	margin-top: auto;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

.c-product-card__footer {
	display: flex;
	gap: 1rem;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: auto;
}

.c-product-card .c-card__title {
	font-size: clamp(0.78rem, 0.7vw, 0.84rem);
	line-height: 1.32;
}

.c-product-card__price {
	margin: 0;
	font-size: 0.86rem;
	font-weight: 600;
}

.c-product-card__price del {
	color: var(--c-muted);
	font-weight: 400;
}

.c-icon-button {
	display: grid;
	width: 2.25rem;
	height: 2.25rem;
	flex: 0 0 auto;
	place-items: center;
	background: var(--c-accent);
	color: var(--c-white);
	font-size: 1.2rem;
	line-height: 1;
	text-decoration: none;
}

/* Collections */
.c-collections-section {
	background: var(--c-dark);
	color: var(--c-white);
}

.c-collections-section .c-section-heading__subtitle {
	color: rgba(255, 255, 255, 0.58);
}

.c-collections-grid {
	display: grid;
	grid-auto-rows: clamp(14rem, 18vw, 19rem);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.4vw, 1.5rem);
}

.c-collection-card {
	grid-column: span 3;
	min-width: 0;
}

.c-collection-card--featured {
	grid-column: span 6;
	grid-row: span 2;
}

.c-collection-card__link {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	background: #232325;
	color: var(--c-white);
	text-decoration: none;
}

.c-collection-card__image,
.c-collection-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

.c-collection-card__placeholder {
	display: grid;
	place-items: center;
	padding: 2rem;
	color: #555;
	font-size: clamp(1.6rem, 3vw, 3.25rem);
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.c-collection-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.9) 100%);
	transition: background var(--transition);
}

.c-collection-card__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: clamp(1.1rem, 2vw, 2rem);
}

.c-collection-card__number {
	position: absolute;
	top: clamp(1.1rem, 2vw, 2rem);
	right: clamp(1.1rem, 2vw, 2rem);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.72rem;
	font-style: normal;
}

.c-collection-card__content strong {
	font-size: clamp(1.25rem, 2.15vw, 2.35rem);
	line-height: 1;
	text-transform: uppercase;
}

.c-collection-card__content > span:not(.c-collection-card__number) {
	max-width: 30rem;
	margin-top: 0.6rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
}

.c-collection-card__content em {
	margin-top: 1.25rem;
	color: var(--c-accent);
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.c-collection-card__link:hover .c-collection-card__image {
	transform: scale(1.045);
}

.c-collection-card__link:hover .c-collection-card__overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 10%, rgba(0, 0, 0, 0.75) 100%);
}

.c-collection-hero {
	position: relative;
	display: flex;
	min-height: min(48rem, 80vh);
	align-items: flex-end;
	background: var(--c-dark);
	color: var(--c-white);
}

.c-collection-hero::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.15) 100%), var(--collection-hero);
	background-position: center;
	background-size: cover;
	content: "";
}

.c-collection-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: clamp(5rem, 11vw, 10rem);
}

.c-collection-hero h1 {
	max-width: 11ch;
	margin-bottom: 1rem;
	font-size: 3.75rem;
	line-height: 1;
}

.c-collection-hero__subtitle {
	max-width: 35rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.c-collection-mission__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2.5rem, 8vw, 9rem);
}

.c-collection-mission h2 {
	max-width: 11ch;
	font-size: 2.5rem;
	line-height: 1.1;
}

.c-collection-mission__copy {
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.c-collection-publications__empty {
	max-width: 50rem;
	padding: clamp(2rem, 5vw, 5rem);
	background: var(--c-white);
}

.c-collection-mission,
.c-collection-publications {
	padding-block: 4rem;
}

.c-collection-publications .l-card-grid--posts {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.c-collection-publications .c-section-heading__title {
	font-size: 2.5rem;
	line-height: 1.1;
}

.c-collection-publications__empty h3 {
	margin-bottom: 1rem;
}

.c-collection-publications__empty p:last-child {
	margin-bottom: 0;
	color: var(--c-muted);
}

.c-collection-shop-cta {
	padding-block: clamp(3rem, 6vw, 6rem);
	background: var(--c-accent);
	color: var(--c-white);
}

.c-collection-shop-cta__inner {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.c-collection-shop-cta .c-eyebrow {
	color: var(--c-dark);
}

.c-collection-shop-cta h2 {
	max-width: 16ch;
	margin-bottom: 0;
	font-size: clamp(1.75rem, 3vw, 3.5rem);
}

.c-collection-shop-cta .c-button {
	border-color: var(--c-dark);
	background: var(--c-dark);
}

.c-why__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(3rem, 8vw, 9rem);
}

body.home .c-why {
	height: 36.4883rem;
	margin-top: 0.75rem;
	padding: 8rem 0 0;
}

body.home .c-why__grid {
	grid-template-columns: 36rem minmax(0, 1fr);
	gap: 4rem;
}

body.home .c-why .c-section-heading__title {
	max-width: 27.6865rem;
	font-size: 3.75rem;
	line-height: 1.1;
}

.c-why .c-section-heading {
	margin-bottom: 2rem;
	text-align: left;
}

.c-why__intro > p {
	max-width: 40rem;
	color: #aaa8ae;
}

.c-accordion__item {
	border-bottom: 1px solid #3c3a3f;
}

.c-accordion__trigger {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.35rem;
	font-size: clamp(0.9rem, 1.2vw, 1.05rem);
	font-weight: 600;
	list-style: none;
	text-transform: uppercase;
}

.c-accordion__trigger::-webkit-details-marker {
	display: none;
}

.c-accordion__icon {
	position: relative;
	display: block;
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
}

.c-accordion__icon::before,
.c-accordion__icon::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--c-accent);
	content: "";
	transition: transform var(--transition);
}

.c-accordion__icon::after {
	transform: rotate(90deg);
}

.c-accordion__item[open] .c-accordion__icon::after {
	transform: rotate(0);
}

.c-accordion__panel {
	max-width: 44rem;
	padding: 0 3rem 1.5rem 0;
	color: #aaa8ae;
}

.c-newsletter {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: var(--c-accent);
	color: var(--c-white);
}

body.home .c-newsletter {
	padding-block: 4rem;
}

.c-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
	gap: clamp(2rem, 8vw, 8rem);
	align-items: center;
}

body.home .c-newsletter__inner {
	grid-template-columns: 42rem 28rem;
	gap: 2rem;
}

body.home .c-newsletter h2 {
	font-size: 2.5rem;
	line-height: 1.1;
}

body.home .c-newsletter p {
	font-size: 1rem;
	line-height: 1.2;
}

body.home .c-newsletter .c-form {
	gap: 0;
}

body.home .c-newsletter .c-form-field {
	height: 3.875rem;
	padding-bottom: 1.25rem;
}

body.home .c-newsletter .c-form-field input {
	height: 2.625rem;
	min-height: 2.625rem;
}

body.home .c-newsletter .c-checkbox {
	height: 2.737rem;
	padding-bottom: 1.25rem;
}

body.home .c-newsletter .c-button {
	height: 1.8809rem;
	min-height: 1.8809rem;
	padding: 0.1875rem 0.875rem;
}

.c-newsletter h2 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.7rem, 3vw, 3rem);
}

.c-newsletter p {
	max-width: 43rem;
	margin-bottom: 0;
}

.c-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.c-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.c-form__trap {
	position: absolute;
	left: -9999px;
}

.c-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	font-size: 0.72rem;
	font-weight: 500;
	text-transform: uppercase;
}

.c-form-field input,
.c-form-field textarea,
.c-form-field select,
.search-field {
	width: 100%;
	border: 1px solid var(--c-line);
	border-radius: 0;
	background: var(--c-white);
	color: var(--c-ink);
	font-size: 1rem;
	font-weight: 400;
	outline: 0;
	text-transform: none;
}

.c-form-field input,
.c-form-field select,
.search-field {
	height: 3.25rem;
	padding-inline: 1rem;
}

.c-form-field textarea {
	padding: 1rem;
	resize: vertical;
}

.c-form-field input:focus,
.c-form-field textarea:focus,
.c-form-field select:focus,
.search-field:focus {
	border-color: var(--c-accent);
	box-shadow: 0 0 0 1px var(--c-accent);
}

.c-checkbox {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	font-size: 0.72rem;
}

.c-checkbox input {
	width: 1rem;
	height: 1rem;
	margin: 0.1rem 0 0;
	accent-color: var(--c-ink);
}

.c-form--newsletter .c-button {
	align-self: flex-start;
}

.c-site-footer {
	padding-top: 0;
	background: var(--c-ink);
	color: var(--c-white);
}

.c-site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
	min-height: 26.975rem;
	padding-block: 8rem;
}

.c-site-footer__column {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-start;
	color: #aaa8ae;
	font-size: 0.875rem;
	line-height: 1.2;
}

.c-site-footer__title {
	margin-bottom: 0.625rem;
	color: var(--c-white);
	font-size: 0.875rem;
}

.c-site-footer__column > a::before {
	display: inline-block;
	width: 0.375rem;
	height: 0.375rem;
	margin-right: 0.75rem;
	background: var(--c-accent);
	content: "";
	vertical-align: 0.08em;
}

.c-site-footer address {
	font-style: normal;
}

.c-site-footer a:hover {
	color: var(--c-accent);
}

.c-site-footer__payment {
	width: 6rem;
	max-height: 2rem;
	margin-top: 0.5rem;
	object-fit: contain;
	object-position: left center;
}

.c-site-footer__bottom {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: none;
	padding: 0.375rem var(--gutter);
	border-top: 0;
	background: #000;
	color: #77757a;
	font-size: 0.75rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.c-site-footer__bottom p {
	margin: 0;
}

.c-page-hero {
	padding-block: 8rem;
	background: var(--c-surface);
}

.c-page-hero__inner h1 {
	max-width: 15ch;
	margin-bottom: 0;
	font-size: 3.75rem;
	line-height: 1;
}

.c-page-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.c-page-hero__description {
	max-width: 45rem;
	margin-top: 1.5rem;
	color: var(--c-muted);
}

.c-about-story {
	background: #000;
	color: var(--c-white);
}

.c-about-page .c-page-hero .c-eyebrow {
	margin-bottom: 0.6875rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
}

.c-about-page .c-page-hero {
	margin-top: 3.125rem;
	min-height: 25.3rem;
}

.c-about-page .c-page-hero__inner h1 {
	width: auto;
	max-width: none;
}

.c-about-story__inner {
	display: grid;
	width: min(100%, var(--container));
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	margin-inline: auto;
	padding-bottom: 0.75rem;
}

.c-about-story__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2rem;
	padding: 4rem 0 4rem 4rem;
}

.c-about-story__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.c-square-marker {
	display: block;
	width: 0.75rem;
	height: 0.75rem;
	margin-top: 0.25rem;
	background: var(--c-accent);
}

.c-about-story__item h2 {
	width: 100%;
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.1;
}

.c-about-story__item p {
	max-width: 37.5rem;
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1.125rem;
	line-height: 1.3;
}

.c-about-story__media {
	min-width: 0;
	margin: 0;
	padding: 4rem 4rem 0 0;
}

.c-about-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-about-services {
	padding-inline: 4rem;
	background: #000;
	color: var(--c-white);
}

.c-about-services__grid {
	display: grid;
	width: min(100%, calc(var(--container) - 8rem));
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin-inline: auto;
	padding-block: 4rem;
}

.c-about-service-card {
	display: flex;
	min-height: 17.75rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.5rem;
	background: var(--c-ink);
}

.c-about-service-card__eyebrow {
	margin-bottom: 0;
	color: var(--c-accent);
	font-size: 0.75rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.c-about-service-card h2 {
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.1;
}

.c-about-service-card > p:last-child {
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1rem;
	line-height: 1.3;
}

.c-page__content > .c-content-section,
.c-rich-text > .c-content-section {
	padding-block: var(--section-space);
}

.c-content-section--dark {
	background-color: var(--c-dark);
	color: var(--c-white);
}

.c-content-section--muted {
	background-color: var(--c-surface);
}

.c-content-section--accent {
	background-color: var(--c-accent);
	color: var(--c-white);
}

.c-content-section--media {
	background-image: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.15)), var(--section-bg);
	background-position: center;
	background-size: cover;
	color: var(--c-white);
}

.c-content-section__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 3rem);
}

.c-content-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 6rem);
	align-items: center;
}

.c-content-stack {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 1.5rem;
}

.c-content-heading {
	max-width: 18ch;
	margin-bottom: 0;
}

.c-content-heading--minor {
	font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.c-rich-text {
	font-size: clamp(1rem, 1.15vw, 1.125rem);
}

.c-rich-text > :not(.c-content-section):not(.alignwide):not(.alignfull),
.c-rich-text > .wp-block-group:not(.alignfull) {
	width: min(calc(100% - (2 * var(--gutter))), var(--container-narrow));
	margin-right: auto;
	margin-left: auto;
}

.c-content-section .c-rich-text,
.c-content-text {
	max-width: 50rem;
	color: var(--c-muted);
}

.c-content-section--dark .c-content-text,
.c-content-section--media .c-content-text {
	color: #c3c1c6;
}

.c-rich-text p,
.c-rich-text ul,
.c-rich-text ol,
.c-rich-text table,
.c-rich-text blockquote {
	margin-bottom: 1.5em;
}

.c-rich-text h2,
.c-rich-text h3,
.c-rich-text h4 {
	margin-top: 1.5em;
	margin-bottom: 0.7em;
}

.c-rich-text a:not(.c-button) {
	color: var(--c-accent);
}

.c-content-media {
	margin: 0;
}

.c-content-media img {
	width: 100%;
}

.c-content-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.c-contact-page__grid {
	display: grid;
	grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(3rem, 8vw, 10rem);
}

.c-contact-page__details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.c-contact-page__details h2 {
	margin-bottom: 1rem;
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.c-contact-page__details address {
	margin-bottom: 2rem;
	font-style: normal;
}

.c-contact-link {
	margin-bottom: 0.5rem;
	font-size: clamp(1.1rem, 1.8vw, 1.5rem);
	font-weight: 600;
	text-decoration: none;
}

.c-contact-page__socials {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.c-contact-page__form {
	padding: clamp(1.5rem, 4vw, 4rem);
	background: var(--c-surface);
}

.c-contact-page__form h2 {
	margin-bottom: 2.5rem;
	font-size: clamp(1.7rem, 3vw, 3rem);
}

.c-notice {
	padding: 0.8rem 1rem;
	font-size: 0.85rem;
}

.c-notice--success {
	background: #dff5e4;
	color: #174b25;
}

.c-notice--error {
	background: #fde6e2;
	color: #7b1f10;
}

.c-article__header {
	padding-block: clamp(4rem, 8vw, 8rem) 0;
}

.c-article__header h1 {
	max-width: 18ch;
}

.c-article__hero {
	margin: clamp(2.5rem, 5vw, 5rem) 0 0;
}

.c-article__hero img {
	width: 100%;
	max-height: 48rem;
	object-fit: cover;
}

.c-article__content {
	padding-block: clamp(3rem, 6vw, 6rem);
}

.c-post-nav {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	padding-bottom: var(--section-space);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* Publications and category archives — native equivalents of the Bricks loops. */
.c-page-hero--publications {
	margin-top: 3.125rem;
}

.c-page-hero--publications .c-eyebrow {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

.c-page-hero--publications h1 {
	max-width: none;
}

.c-publications-listing {
	padding-block: 4rem;
}

.c-publications-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.c-post-card--editorial {
	background: var(--c-surface);
}

.c-post-card--editorial .c-card__media {
	aspect-ratio: auto;
}

.c-post-card--editorial .c-card__media img {
	width: 100%;
	height: auto;
	object-fit: initial;
}

.c-post-card--editorial .c-card__body {
	min-height: 0;
	gap: 0.75rem;
	margin-top: 0.75rem;
	padding: 1.5rem;
}

.c-post-card--editorial .c-card__title {
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.c-post-card--editorial .c-card__excerpt {
	margin-bottom: 0;
	color: var(--c-ink);
	font-size: 1rem;
	line-height: 1.7;
}

.c-post-card--editorial .c-text-link {
	margin-top: 0;
	color: var(--c-accent);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	text-transform: none;
}

.c-archive-listing {
	padding-top: 10.65rem;
	padding-bottom: 4rem;
}

.c-archive-listing__inner {
	width: min(calc(100% - 3.75rem), 76.25rem);
	margin-right: auto;
	margin-left: max(0.9375rem, calc((100% - 80rem) / 2 + 0.9375rem));
}

.c-archive-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.875rem;
}

.c-post-card--archive {
	background: transparent;
}

.c-post-card--archive .c-card__media {
	aspect-ratio: 1;
}

.c-post-card--archive .c-card__body {
	min-height: 0;
	padding: 1.5rem 0;
}

.c-post-card--archive .c-card__title {
	margin-bottom: 0;
	font-family: system-ui, sans-serif;
	font-size: 1.6875rem;
	font-weight: 700;
	line-height: 1.4;
	text-transform: none;
}

/* Single publication. */
.c-article__header {
	margin-top: 3.125rem;
	padding-block: 8rem;
	background: var(--c-surface);
}

.c-article__header-inner {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.c-article__header h1 {
	max-width: none;
	margin-bottom: 0;
	font-size: 3.75rem;
	font-weight: 600;
	line-height: 1;
}

.c-article__lead {
	width: min(100%, 50rem);
	margin: 0 auto;
	color: var(--c-muted);
	font-size: 1.125rem;
	line-height: 1.3;
	text-align: center;
}

.c-article__hero {
	width: 100%;
	margin: 0;
}

.c-article__hero img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: initial;
}

.c-article__content {
	width: min(calc(100% - (2 * var(--gutter))), 50rem);
	margin-inline: auto;
	padding-block: 4rem;
	font-size: 1rem;
	line-height: 1.7;
}

.c-article__content > :not(.alignwide):not(.alignfull),
.c-article__content > .wp-block-group:not(.alignfull) {
	width: 100%;
}

.c-article__content h1,
.c-article__content h2,
.c-article__content h3,
.c-article__content h4 {
	text-transform: none;
}

.c-article__content h1 {
	font-size: 2.4rem;
	line-height: 1.4;
}

.c-article__content h2 {
	font-size: 2.1rem;
	line-height: 1.4;
}

.navigation.pagination {
	margin-top: 4rem;
}

.nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
}

.page-numbers {
	display: grid;
	min-width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	padding-inline: 0.75rem;
	border: 1px solid var(--c-line);
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--c-accent);
	background: var(--c-accent);
	color: var(--c-white);
}

.c-empty-state,
.c-error-page__inner {
	display: flex;
	min-height: 35rem;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.c-error-page__code {
	margin-bottom: 0;
	color: var(--c-accent);
	font-size: clamp(5rem, 15vw, 13rem);
	font-weight: 700;
	line-height: 0.8;
}

/* WooCommerce */
.c-page-hero--commerce {
	padding-block: 4rem;
}

.c-commerce-content {
	margin-block: 4rem;
}

.c-commerce-content--checkout {
	margin-top: 7.5rem;
}

.c-commerce-content__inner > .woocommerce {
	width: 100%;
}

.c-cart-page .c-commerce-content__inner > .woocommerce {
	display: grid;
	grid-template-columns: 70% minmax(0, 1fr);
	column-gap: 4rem;
	row-gap: 0;
	align-items: stretch;
}

.c-cart-page .woocommerce-notices-wrapper,
.c-cart-page .woocommerce-message,
.c-cart-page .woocommerce-info,
.c-cart-page .woocommerce-error {
	grid-column: 1 / -1;
}

.c-cart-page .woocommerce-cart-form,
.c-cart-page .cart-collaterals,
.c-cart-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

.c-cart-page .woocommerce-cart-form {
	padding: 1.5rem 1.5rem 1.5rem 0;
}

.c-cart-page table.shop_table {
	margin: 0;
	border: 0;
}

.c-cart-page table.shop_table thead th {
	color: #bfbdc1;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 3.75rem;
	padding: 1px;
	text-transform: uppercase;
}

.c-cart-page table.shop_table thead th.product-remove {
	padding: 0;
}

.c-cart-page table.shop_table th,
.c-cart-page table.shop_table td {
	border-color: var(--c-line);
}

.c-cart-page table.shop_table .product-price {
	display: none;
}

.c-cart-page table.shop_table .product-thumbnail {
	width: 3.4053rem;
}

.c-cart-page table.shop_table .product-thumbnail img {
	width: 3.4053rem;
	margin: 0;
}

.c-cart-page table.shop_table .product-remove {
	width: 1.875rem;
	padding: 0;
}

.c-cart-page table.shop_table tbody .product-thumbnail {
	padding: 0.9375rem 0;
}

.c-cart-page table.shop_table tbody .product-name {
	padding: 0.9375rem 0 0.9375rem 0.75rem;
	font-size: 0.875rem;
	line-height: 1.2;
}

.c-cart-page table.shop_table tbody .product-quantity {
	width: 12.5rem;
	padding: 0.9375rem 0;
}

.c-cart-page table.shop_table tbody .product-subtotal {
	width: 6.4609rem;
	padding: 0.9375rem 0;
}

.c-cart-page table.shop_table .product-name a {
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	text-transform: uppercase;
}

.c-cart-page table.shop_table .variation {
	color: var(--c-muted);
	font-size: 0.75rem;
}

.c-cart-page table.shop_table .product-remove a {
	color: var(--c-accent) !important;
	font-size: 1.25rem;
}

.c-cart-page table.shop_table td.actions {
	padding: 0.9375rem 0;
}

.c-cart-page table.shop_table td.actions .coupon {
	display: flex;
	gap: 0.9375rem;
}

.c-cart-page table.shop_table td.actions .input-text {
	width: 12.03125rem;
	min-height: 3rem;
	margin: 0 !important;
	padding-inline: 0.75rem;
	border: 1px solid var(--c-line);
}

.c-cart-page .cart-collaterals {
	padding: 1.5rem;
	background: var(--c-surface);
}

.c-cart-page .woocommerce .cart-collaterals .cart_totals {
	padding: 0;
	background: transparent;
}

.c-cart-page .cart_totals > h2 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 3.875rem;
	text-transform: uppercase;
}

.c-cart-page .cart_totals .shop_table tbody {
	display: flex;
	flex-direction: column;
}

.c-cart-page .cart_totals .shop_table tr {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.c-cart-page .cart_totals .shop_table tr.woocommerce-shipping-totals {
	flex-direction: column;
}

.c-cart-page .cart_totals .shop_table th,
.c-cart-page .cart_totals .shop_table td {
	display: block;
	padding: 0.9375rem 0;
	border: 0;
	font-size: 0.75rem;
	line-height: 1.875rem !important;
	text-transform: uppercase;
}

.c-cart-page .cart_totals .shop_table td {
	text-align: right;
}

.c-cart-page .cart_totals #shipping_method li {
	display: flex;
	width: 100%;
	height: 1.5625rem;
	gap: 0.625rem;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0;
	line-height: 1.25rem;
}

.c-cart-page .cart_totals #shipping_method input {
	width: 0.8125rem;
	height: 1.25rem;
	min-height: 0;
	margin: 0;
}

.c-cart-page .cart_totals #shipping_method label {
	width: calc(100% - 1.4375rem);
	height: 1.25rem;
	line-height: 1.25rem;
}

.c-cart-page .cart_totals .shop_table tr.woocommerce-shipping-totals th {
	padding: 0;
	line-height: 1 !important;
}

.c-cart-page .cart_totals .shop_table tr.woocommerce-shipping-totals td {
	display: flex;
	flex-wrap: wrap;
	padding: 0.75rem 0 0;
}

.c-cart-page .cart_totals #shipping_method,
.c-cart-page .cart_totals .woocommerce-shipping-destination {
	width: 100%;
}

.c-cart-page .cart_totals #shipping_method {
	height: auto;
	text-align: left;
}

.c-cart-page .cart_totals .woocommerce-shipping-destination {
	font-size: 0.75rem;
	line-height: 1.4 !important;
	text-align: start;
	text-transform: none;
}

.c-cart-page .wc-proceed-to-checkout {
	padding: 0;
}

.c-cart-page .cart_totals .shop_table {
	margin-bottom: 1.875rem !important;
}

.c-cart-page table.shop_table td.actions > button[name="update_cart"] {
	width: 12.5rem;
	margin-left: auto;
}

.c-cart-page .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	margin: 0;
	padding: 1rem;
	font-size: 1rem;
}

.c-checkout-page .woocommerce-form-coupon-toggle,
.c-checkout-page .checkout_coupon,
.c-checkout-page .woocommerce-form-login-toggle,
.c-checkout-page .woocommerce-form-login {
	display: none !important;
}

.c-checkout-page form.checkout {
	display: grid;
	grid-template-columns: 55% minmax(0, 1fr);
	column-gap: 5%;
	align-items: start;
	margin-top: 9rem;
}

.c-checkout-page #customer_details {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 36.6rem;
	margin-left: 1.5rem;
	padding: 0;
}

.c-checkout-page #customer_details .col-1,
.c-checkout-page #customer_details .col-2 {
	float: none;
	width: 100%;
}

.c-checkout-page #customer_details .col-2 {
	margin-top: 0.9375rem;
}

.c-checkout-page #customer_details .woocommerce-additional-fields {
	margin-top: 3.75rem;
}

.c-checkout-page #order_review_heading {
	grid-column: 2;
	margin: 0 1.5rem;
	padding: 0;
	background: var(--c-surface);
	font-size: 1.25rem;
}

.c-checkout-page #order_review {
	display: flex;
	grid-column: 2;
	flex-direction: column;
	margin-inline: 1.5rem;
	padding: 0;
	background: var(--c-surface);
}

.c-checkout-page #customer_details h3,
.c-checkout-page #order_review_heading {
	text-transform: uppercase;
}

.c-checkout-page #customer_details h3 {
	margin-bottom: 0;
}

.c-checkout-page form .form-row label {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 0.3125rem;
	text-transform: uppercase;
}

.c-checkout-page form .form-row {
	margin: 0 0 1.125rem;
	padding: 0;
}

.c-checkout-page form #billing_first_name_field,
.c-checkout-page form .woocommerce-billing-fields__field-wrapper > :last-child {
	margin-bottom: 0;
}

.c-checkout-page form .form-row-first,
.c-checkout-page form .form-row-last {
	width: calc(50% - 0.375rem);
}

.c-checkout-page form .form-row input.input-text,
.c-checkout-page form .form-row textarea,
.c-checkout-page form .form-row select,
.c-checkout-page .select2-container--default .select2-selection--single {
	height: 2.5rem !important;
	min-height: 2.5rem !important;
	padding-inline: 0.75rem;
	border: 0;
	background: rgba(243, 243, 243, 0.5);
}

.c-checkout-page form .form-row textarea {
	display: inline-block !important;
	height: 5.625rem !important;
	min-height: 5.625rem !important;
	padding: 0.625rem 0.75rem;
	line-height: 1.7 !important;
}

.c-checkout-page form #order_comments_field {
	margin-bottom: 0;
}

.c-checkout-page form #order_comments_field label {
	font-size: 0.9375rem;
	line-height: 1.7;
	text-transform: none;
}

.c-checkout-page #order_review table.shop_table {
	border: 0;
}

.c-checkout-page #order_review table.shop_table th,
.c-checkout-page #order_review table.shop_table td {
	display: block;
	width: auto;
	padding: 1.25rem 0;
	font-size: 0.9375rem;
	line-height: 1.4;
	border: 0 !important;
}

.c-checkout-page #order_review table.shop_table {
	margin-bottom: 0.9375rem;
}

.c-checkout-page #order_review table.shop_table tr {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.c-checkout-page #order_review table.shop_table tr.woocommerce-shipping-totals {
	display: flex;
	width: 100% !important;
	flex-direction: column;
}

.c-checkout-page #order_review table.shop_table tr.woocommerce-shipping-totals th,
.c-checkout-page #order_review table.shop_table tr.woocommerce-shipping-totals td {
	display: block;
	width: 100%;
}

.c-checkout-page #order_review #shipping_method {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 0.9375rem;
}

.c-checkout-page #order_review #shipping_method li {
	display: flex;
	width: 100%;
	height: 1.25rem;
	align-items: flex-start;
	margin: 0;
}

.c-checkout-page #order_review #shipping_method input {
	width: 0.8125rem;
	height: 1.25rem;
	min-height: 0;
	margin: 0 0.625rem 0 0;
}

.c-checkout-page #order_review #shipping_method label {
	width: calc(100% - 1.4375rem);
	height: 1.25rem;
	line-height: 1.25rem;
}

.c-checkout-page #payment {
	border-radius: 0;
	background: transparent;
}

.c-checkout-page #payment ul.payment_methods,
.c-checkout-page #payment .place-order {
	padding: 0 !important;
}

.c-checkout-page #payment ul.payment_methods {
	display: block;
	margin-bottom: 0.9375rem !important;
	border: 0 !important;
}

.c-checkout-page #payment .wc_payment_method {
	margin-bottom: 0.9375rem !important;
}

.c-checkout-page #payment .wc_payment_method:last-child {
	margin-bottom: 0 !important;
}

.c-checkout-page #payment .wc_payment_method > input {
	width: 0.8125rem;
	height: 1.25rem;
	min-height: 0;
	float: left;
	margin: 0 0.625rem 0 0;
}

.c-checkout-page #payment .wc_payment_method > label {
	display: block;
	width: 100%;
	height: 1.25rem;
	margin: 0;
	line-height: 1.25rem;
}

.c-checkout-page #payment div.payment_box {
	margin: 0.9375rem 0 0;
	padding: 0.625rem 0;
	background: transparent;
	font-size: 0.875rem;
	line-height: 1.7;
}

.c-checkout-page #payment div.payment_box::before {
	display: none;
}

.c-checkout-page #payment .woocommerce-terms-and-conditions-wrapper {
	min-height: 2.0376rem;
	padding-top: 0.625rem;
	font-size: 0.84375rem;
	line-height: 1.7;
}

.c-checkout-page #payment .place-order label {
	display: block;
	width: 100%;
	margin: 0 0 0.3125rem;
	font-size: 0.75rem;
	line-height: 1.3;
	text-transform: none;
}

.c-checkout-page #payment .place-order label input {
	margin: 0;
}

.c-checkout-page #payment #privacy_policy_field {
	min-height: 4.3379rem;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	line-height: 1.7;
}

.c-checkout-page #payment #privacy_policy_field label {
	min-height: 4.0254rem;
}

.c-checkout-page #place_order {
	width: 100%;
	min-height: 4.625rem;
	background: var(--c-accent);
	padding: 0.4375rem 0.9375rem;
	font-size: 1.125rem;
	line-height: 3.75rem;
}

.c-empty-cart {
	display: grid;
	min-height: 44rem;
	place-items: center;
	padding: 6rem var(--gutter);
	text-align: center;
}

.c-empty-cart__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
}

.c-empty-cart .c-eyebrow {
	margin-bottom: 0;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
}

.c-empty-cart h1 {
	margin-bottom: 0;
	font-size: 2.5rem;
	line-height: 1.1;
}

.c-shop {
	padding-block: clamp(3rem, 6vw, 6rem);
}

.single-product .c-shop__inner {
	width: min(100%, calc(92rem + (2 * var(--gutter))));
}

.woocommerce-breadcrumb {
	margin-bottom: 1.5rem;
	color: var(--c-muted);
	font-size: 0.75rem;
	line-height: 1.2;
	text-transform: uppercase;
}

.woocommerce-breadcrumb span {
	margin-inline: 0.65rem;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
	max-width: 15ch;
}

.c-shop-collections {
	clear: both;
	margin-block: 2rem 3rem;
	padding: clamp(1.25rem, 2vw, 2rem);
	background: var(--c-surface);
}

.c-shop-collections__label {
	margin-bottom: 0.75rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.c-shop-collections__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.c-filter-chip {
	display: inline-flex;
	align-items: center;
	min-height: 2.5rem;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--c-line);
	background: var(--c-white);
	font-size: 0.72rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.c-filter-chip:hover,
.c-filter-chip.is-active {
	border-color: var(--c-accent);
	background: var(--c-accent);
	color: var(--c-white);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 2rem;
	font-size: 0.8rem;
}

.woocommerce .woocommerce-ordering select {
	min-height: 2.75rem;
	padding-inline: 0.75rem;
	border: 1px solid var(--c-line);
	background: var(--c-white);
}

.woocommerce ul.products {
	display: grid;
	clear: both;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 0 0 1.25rem;
	background: var(--c-surface);
}

.woocommerce ul.products li.product a img {
	margin: 0 0 1.25rem;
	aspect-ratio: 1;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-inline: 1.25rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 3.8em;
	padding: 0;
	font-size: clamp(0.78rem, 0.7vw, 0.84rem);
	line-height: 1.32;
}

.woocommerce ul.products li.product .price {
	color: var(--c-ink);
	font-size: 0.85rem;
	font-weight: 600;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	border: 1px solid var(--c-accent);
	border-radius: 0;
	background: var(--c-accent);
	color: var(--c-white);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	border-color: var(--c-ink);
	background: var(--c-ink);
	color: var(--c-white);
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 4rem;
	row-gap: clamp(3rem, 6vw, 6rem);
	align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product div.summary {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.c-product-rating {
	width: 5rem;
	height: 0.95rem;
	margin-bottom: 0.95rem;
	overflow: hidden;
}

.c-product-rating__stars {
	position: relative;
	display: inline-block;
	color: #c9c9c9;
	font-family: Arial, sans-serif;
	font-size: 0.9rem;
	line-height: 0.95rem;
	letter-spacing: 0.08rem;
}

.c-product-rating__stars::before {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--rating);
	overflow: hidden;
	color: var(--c-accent);
	content: "★★★★★";
}

.woocommerce div.product .product_title {
	max-width: none;
	margin-bottom: 0.8rem;
	font-size: 1.25rem;
	line-height: 1.3;
}

.c-product-lead {
	margin-bottom: 2.75rem;
	color: var(--c-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.c-product-lead > :last-child {
	margin-bottom: 0;
}

.c-product-lead.c-rich-text > :not(.c-content-section):not(.alignwide):not(.alignfull),
.c-product-lead.c-rich-text > .wp-block-group:not(.alignfull) {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.c-product-details__main.c-rich-text > :not(.c-content-section):not(.alignwide):not(.alignfull),
.c-product-details__main.c-rich-text > .wp-block-group:not(.alignfull) {
	width: min(100%, 60rem);
	margin-right: auto;
	margin-left: 0;
}

.c-product-pdf {
	display: grid;
	width: 100%;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: center;
	margin-top: 0.75rem;
	height: 4rem;
	min-height: 4rem;
	padding: 0 1rem;
	border: 1px solid var(--c-accent);
	background: var(--c-accent);
	color: var(--c-white);
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.c-product-pdf:hover {
	border-color: var(--c-accent);
	background: var(--c-accent);
	color: var(--c-white);
	transform: translateY(-2px);
}

.c-product-pdf__icon {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.75);
	background: transparent;
	color: var(--c-white);
	font-size: 0.72rem;
	font-weight: 700;
}

.c-product-pdf__copy {
	display: flex;
	flex-direction: column;
}

.c-product-pdf__copy strong {
	font-size: 0.74rem;
	text-transform: uppercase;
}

.c-product-pdf__copy small {
	margin-top: 0.25rem;
	opacity: 0.72;
	font-size: 0.64rem;
}

.c-product-pdf__arrow {
	color: var(--c-white);
	font-size: 1.25rem;
}

.c-product-pdf:hover .c-product-pdf__arrow {
	color: currentColor;
}

.c-product-pdf:hover .c-product-pdf__icon {
	border-color: rgba(255, 255, 255, 0.65);
	background: transparent;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin-bottom: 0.75rem;
	color: var(--c-muted);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.2;
}

.woocommerce div.product form.cart:not(.variations_form),
.woocommerce div.product .woocommerce-variation-add-to-cart {
	display: flex;
	gap: 0.75rem;
	align-items: stretch;
}

.woocommerce div.product form.cart {
	width: 100%;
	margin-bottom: 0;
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin: -2.5rem 0 0;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: flex;
	text-align: left;
}

.woocommerce div.product form.cart .variations tr {
	display: flex;
	flex-wrap: wrap;
}

.woocommerce div.product form.cart .variations th {
	width: 100%;
	margin: 0;
	padding: 0.9375rem 1px 1px;
	color: var(--c-muted);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.7;
}

.woocommerce div.product form.cart .variations th label {
	display: flex;
	line-height: 1.7;
}

.woocommerce div.product form.cart .variations td {
	width: 50%;
	padding: 0.9375rem 0;
}

.woocommerce div.product form.cart .variations select {
	width: 100%;
	min-width: 0;
	height: 2.625rem !important;
	min-height: 2.625rem !important;
	margin-right: 0;
	padding-inline: 0.8rem;
}

.woocommerce div.product form.cart .reset_variations {
	display: none !important;
}

.woocommerce div.product form.cart .quantity {
	display: flex;
	width: 8.75rem;
	margin: 0 !important;
	justify-content: center;
}

.woocommerce div.product form.cart .quantity .qty {
	width: 3.75rem;
	height: 2.625rem;
	min-height: 2.625rem;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
	width: 12.5rem;
	height: 2.625rem;
	min-height: 2.625rem;
	padding-block: 0;
	font-size: 1rem;
	line-height: 1.15;
}

.woocommerce div.product form.cart .single_add_to_cart_button.disabled,
.woocommerce div.product form.cart .single_add_to_cart_button:disabled {
	background: var(--c-accent) !important;
	color: var(--c-white) !important;
	opacity: 1;
}

.woocommerce div.product .product_meta {
	display: flex;
	margin-top: 1.125rem;
	font-size: 0.75rem;
	line-height: 1;
}

.c-product-highlights {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 4.75rem;
}

.c-product-highlight {
	display: flex;
	min-height: 8.1rem;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1.25rem;
	background: var(--c-surface);
}

.c-product-highlight__marker {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--c-accent);
}

.c-product-highlight strong {
	font-size: clamp(0.68rem, 0.72vw, 0.76rem);
	font-weight: 500;
	line-height: 1.4;
	text-transform: uppercase;
}

.c-product-more {
	width: 100%;
	margin-top: 2rem;
}

.c-product-more > h2 {
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
}

.c-product-more__items {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.c-product-more__item {
	background: var(--c-surface);
}

.c-product-more__item summary {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	min-height: 3rem;
	padding: 0.8rem 1rem;
	font-size: 0.68rem;
	font-weight: 600;
	list-style: none;
	text-transform: uppercase;
}

.c-product-more__item summary::-webkit-details-marker {
	display: none;
}

.c-product-more__icon {
	position: relative;
	display: block;
	width: 0.75rem;
	height: 0.75rem;
	flex: 0 0 auto;
}

.c-product-more__icon::before,
.c-product-more__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.65rem;
	height: 1px;
	background: var(--c-accent);
	content: "";
	transform: translate(-50%, -50%);
}

.c-product-more__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform var(--transition);
}

.c-product-more__item[open] .c-product-more__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.c-product-more__content {
	padding: 0.25rem 1rem 1rem;
	color: var(--c-muted);
	font-size: 0.78rem;
	line-height: 1.65;
}

.c-product-more__content p:last-child {
	margin-bottom: 0;
}

.woocommerce div.product form.cart .variations select,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 3rem;
	border: 1px solid var(--c-line);
	border-radius: 0;
	background: var(--c-white);
}

.woocommerce .quantity .qty {
	padding-inline: 0.5rem;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells,
.woocommerce div.product .c-product-story {
	grid-column: 1 / -1;
}

.c-product-story {
	padding-top: clamp(3rem, 6vw, 6rem);
	border-top: 1px solid var(--c-line);
}

.c-product-story__header {
	max-width: 55rem;
	margin-bottom: clamp(2rem, 3vw, 3rem);
}

.c-product-story__header h2 {
	margin-bottom: 0;
	font-size: clamp(1.8rem, 2.6vw, 3rem);
}

.c-product-details__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(19rem, 0.7fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: start;
}

.c-product-details__main {
	min-width: 0;
	font-size: clamp(0.9rem, 0.85vw, 1rem);
	line-height: 1.65;
}

.c-product-copy-block + .c-product-copy-block {
	margin-top: clamp(2.5rem, 5vw, 5rem);
	padding-top: clamp(2.5rem, 5vw, 5rem);
	border-top: 1px solid var(--c-line);
}

.c-product-copy-block h3 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: clamp(1.05rem, 1.25vw, 1.3rem);
}

.c-product-info-box {
	padding: clamp(1.5rem, 3vw, 3rem);
	background: var(--c-dark);
	color: var(--c-white);
}

.c-product-info-box > h3 {
	margin-bottom: 2rem;
	color: var(--c-accent);
	font-size: clamp(1.15rem, 1.5vw, 1.5rem);
}

.c-product-info-box__item {
	padding-block: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.c-product-info-box__item h4 {
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
}

.c-product-info-box__item p:last-child {
	margin-bottom: 0;
}

.c-product-info-box__item div {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
}

.c-product-info-box .c-product-pdf {
	margin-top: 2rem;
}

.c-product-real-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.c-product-real-gallery__item {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--c-surface);
}

.c-product-real-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.c-product-real-gallery__item:hover img {
	transform: scale(1.035);
}

.c-product-video {
	display: grid;
	grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
	padding: 0;
	border: 0;
	background: var(--c-dark);
	color: var(--c-white);
}

.c-product-video__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(2rem, 5vw, 5rem);
}

.c-product-video__copy h2 {
	font-size: clamp(1.75rem, 3vw, 3.25rem);
}

.c-product-video__copy p:not(.c-eyebrow) {
	color: rgba(255, 255, 255, 0.65);
}

.c-product-video__thumbnail {
	position: relative;
	display: block;
	min-height: 26rem;
	overflow: hidden;
}

.c-product-video__thumbnail::after {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
	content: "";
}

.c-product-video__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-product-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: grid;
	width: 5rem;
	height: 5rem;
	place-items: center;
	padding-left: 0.25rem;
	border-radius: 50%;
	background: var(--c-accent);
	color: var(--c-white);
	font-size: 1.5rem;
	transform: translate(-50%, -50%);
}

.c-product-publications {
	margin-bottom: clamp(2rem, 5vw, 5rem);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	border-bottom: 1px solid var(--c-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 2px solid var(--c-accent);
}

.woocommerce table.shop_table {
	border-collapse: collapse;
	border-radius: 0;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
	padding: 1rem;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: min(100%, 38rem);
	margin-left: auto;
	padding: 2rem;
	background: var(--c-surface);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--c-accent);
	background: var(--c-surface);
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--c-accent);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: left;
	width: 25%;
}

.woocommerce-account .woocommerce-MyAccount-content {
	float: right;
	width: 70%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 1rem;
	border-bottom: 1px solid var(--c-line);
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: var(--c-accent);
	color: var(--c-white);
}

/* RST Racing landing. */
.c-error-page {
	padding-top: 0;
}

.c-error-page__section {
	background: var(--c-white);
}

.c-error-page__inner {
	display: flex;
	min-height: 45rem;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 20.71875rem;
}

.c-error-page__inner h1 {
	margin-bottom: 0.9125rem;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-transform: none;
}

.c-error-page .search-form {
	display: flex;
	width: 18.75rem;
	height: 2.625rem;
}

.c-error-page .search-form label {
	flex: 1;
}

.c-error-page .search-field {
	height: 2.625rem;
	padding-inline: 0.75rem;
}

.c-error-page .search-submit {
	width: 2.625rem;
	padding: 0;
	border: 0;
	background: var(--c-accent);
	color: var(--c-white);
	font-size: 0;
}

.c-search-heading {
	padding-top: 5.34375rem;
}

.c-search-heading h1 {
	margin: 0;
	font-family: system-ui, sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-transform: none;
}

.c-search-results {
	padding-top: 3.75rem;
}

.c-search-results__inner {
	width: min(calc(100% - 3.75rem), 76.25rem);
	margin-right: auto;
	margin-left: max(0.9375rem, calc((100% - 80rem) / 2 + 0.9375rem));
}

.c-search-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.875rem;
}

.c-post-card--search {
	background: transparent;
}

.c-post-card--search .c-card__media {
	aspect-ratio: 1;
}

.c-post-card--search .c-card__body {
	min-height: 0;
	gap: 0;
	padding: 1.25rem 0;
}

.c-post-card--search .c-card__title,
.c-search-results__empty {
	margin-bottom: 0;
	font-family: system-ui, sans-serif;
	font-size: 1.6875rem;
	font-weight: 700;
	line-height: 1.4;
	text-transform: none;
}

.c-post-card__date,
.c-post-card--search .c-card__excerpt {
	font-family: system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

.c-post-card--search .c-card__excerpt {
	margin-bottom: 0;
	color: var(--c-ink);
}

.c-legal-page > .c-content-section:first-child {
	display: flex;
	min-height: 23.5rem;
	align-items: flex-end;
	justify-content: center;
	padding: 13.75rem 0 5rem;
	background: var(--c-white);
}

.c-legal-page--terms > .c-content-section:first-child {
	min-height: 26.25rem;
}

html[lang^="en"] .c-legal-page--terms > .c-content-section:first-child {
	min-height: 23.5rem;
}

.c-legal-page > .c-content-section:first-child .c-content-section__inner,
.c-legal-page > .c-content-section:nth-child(2) .c-content-section__inner {
	width: min(calc(100% - (2 * var(--gutter))), 50rem);
	padding: 0;
}

.c-legal-page > .c-content-section:first-child .c-content-row,
.c-legal-page > .c-content-section:nth-child(2) .c-content-row {
	display: block;
}

.c-legal-page > .c-content-section:first-child h2 {
	max-width: none;
	margin: 0;
	font-size: 2.5rem;
	line-height: 1.1;
	text-align: center;
}

.c-legal-page > .c-content-section:nth-child(2) {
	margin-block: 4rem;
	padding: 0;
}

.c-legal-page > .c-content-section:nth-child(2) .c-content-text {
	max-width: none;
	color: var(--c-ink);
	font-size: 1rem;
	line-height: 1.4;
}

.c-legal-page > .c-content-section:nth-child(2) .c-content-text p {
	margin-bottom: 1.2em;
}

.c-page-hero--faq {
	margin-top: 5.1875rem;
	padding-block: 4rem;
}

.c-page-hero--faq .c-eyebrow {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

.c-page-hero--faq h1 {
	max-width: none;
}

.c-faq-page__content {
	margin-top: 0.75rem;
	background: #000;
}

.c-faq-page__content > .c-content-section {
	padding-block: 4rem;
	background: #000;
}

.c-faq-page__content .c-content-section__inner {
	width: min(calc(100% - (2 * var(--gutter))), 50rem);
	padding: 0;
}

.c-faq-page__content .c-content-row {
	display: block;
}

.c-faq-page .c-accordion__trigger {
	padding-block: 0.875rem;
	color: var(--c-white);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5;
}

.c-faq-page .c-accordion__panel {
	max-width: none;
	padding: 0 3rem 0 0;
	color: var(--c-muted);
	font-size: 1rem;
	line-height: 1.2;
}

.c-rst-racing-hero {
	min-height: 39.0625rem;
	margin-top: 5.1875rem;
	padding: 8rem 0;
	background: var(--c-surface);
}

.c-rst-racing-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.c-rst-racing-hero .c-eyebrow {
	margin-bottom: 0;
	font-size: 1.6875rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
}

.c-rst-racing-hero h1 {
	max-width: none;
	margin-bottom: 0;
	font-size: 3.75rem;
	line-height: 1;
}

.c-rst-racing-hero__inner > p:last-child {
	width: 37.5rem;
	margin: 1.25rem 0 0;
	color: var(--c-muted);
	font-size: 1.125rem;
	line-height: 1.3;
}

.c-rst-racing-story,
.c-rst-racing-b2b,
.c-rst-racing-league {
	background: #000;
	color: var(--c-white);
}

.c-rst-racing-story {
	display: grid;
	min-height: 107.65rem;
	grid-template-columns: 26.5rem minmax(0, 1fr);
	gap: 2rem;
}

.c-rst-racing-story__copy {
	padding: 4rem 0 4rem 4rem;
}

.c-rst-racing-story__copy h2,
.c-rst-racing-b2b h2 {
	margin-bottom: 2rem;
	font-size: 2.5rem;
	line-height: 1.1;
}

.c-rst-racing-story__copy h2:not(:first-child) {
	margin-top: 4rem;
}

.c-rst-racing-story__copy p,
.c-rst-racing-b2b p {
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1.125rem;
	line-height: 1.3;
}

.c-rst-racing-story__gallery {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 4rem 4rem 0 0;
}

.c-rst-racing-story__gallery img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.c-rst-racing-b2b {
	display: grid;
	min-height: 45.7125rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.c-rst-racing-b2b__form {
	padding: 4rem 0 4rem 4rem;
}

.c-rst-racing-b2b__copy {
	padding: 4rem 4rem 4rem 1.875rem;
}

.c-rst-racing-b2b .c-form-field input,
.c-rst-racing-b2b .c-form-field textarea {
	border-color: #333;
	background: var(--c-ink);
	color: var(--c-white);
}

.c-rst-racing-b2b .c-form-field textarea {
	height: 11rem;
	resize: none;
}

.c-rst-racing-league {
	min-height: 67.30625rem;
	padding: 4rem 4rem 0;
}

.c-rst-racing-league__main,
.c-rst-racing-league__lower > article {
	padding: 1.5rem;
	background: var(--c-ink);
}

.c-rst-racing-league__main {
	min-height: 46rem;
}

.c-rst-racing-league__main h2 {
	margin-bottom: 2rem;
	font-size: 2.5rem;
	line-height: 1.1;
}

.c-rst-racing-league__main p {
	font-size: 1.25rem;
	line-height: 1.3;
}

.c-rst-racing-league__prizes {
	color: var(--c-accent);
}

.c-rst-racing-league__lower {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.c-rst-racing-league__lower > article {
	min-height: 16.55rem;
}

.c-rst-racing-league__lower h2 {
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	line-height: 1.1;
}

.c-rst-racing-league__lower p {
	color: var(--c-muted);
	font-size: 1rem;
	line-height: 1.3;
}

.c-rst-racing-news {
	padding-block: 1.25rem 6rem;
}

.c-rst-racing-news > header,
.c-rst-racing-news__grid {
	width: min(calc(100% - (2 * var(--gutter))), 36rem);
	margin-inline: auto;
}

.c-rst-racing-news > header {
	margin-block: 4rem;
}

.c-rst-racing-news > header h2 {
	font-size: 2.5rem;
	line-height: 1.1;
}

.c-rst-racing-news__grid {
	display: grid;
	gap: 1.5rem;
}

.c-rst-racing-news .c-post-card--editorial .c-card__body {
	margin-top: 0;
}

/* Pixel-matched commerce shells shared by shop, cart, checkout and account. */
.c-page-hero--rst-custom {
	margin-top: 5.1875rem;
}

.c-page-hero--rst-custom .c-eyebrow {
	margin-bottom: 0.75rem;
	font-size: 1.6875rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
}

.c-page-hero--rst-custom h1 {
	max-width: none;
}

.c-rst-custom-story,
.c-rst-custom-form,
.c-rst-custom-services {
	background: #000;
	color: var(--c-white);
}

.c-rst-custom-row {
	display: grid;
	min-height: 55.42rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.c-rst-custom-row__copy {
	padding: 4rem 0 4rem 4rem;
}

.c-rst-custom-row__copy h2 {
	margin-bottom: 2rem;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.1;
}

.c-rst-custom-row__copy h3 {
	margin-bottom: 2rem;
	color: var(--c-accent);
	font-size: 1.125rem;
	line-height: 1.1;
}

.c-rst-custom-row__copy p {
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1.125rem;
	line-height: 1.3;
}

.c-rst-custom-row__gallery {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 4rem 4rem 0 0;
}

.c-rst-custom-row__gallery img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.c-rst-custom-row--reverse .c-rst-custom-row__copy {
	grid-column: 2;
	grid-row: 1;
	padding: 4rem 0 4rem 5rem;
}

.c-rst-custom-row--reverse .c-rst-custom-row__gallery {
	grid-column: 1;
	grid-row: 1;
	padding: 4rem 0 0 4.375rem;
}

.c-rst-custom-form {
	min-height: 42.9375rem;
	padding: 4rem;
}

.c-rst-custom-form > h2 {
	margin-bottom: 2rem;
	font-size: 1.625rem;
	line-height: 1.1;
}

.c-rst-custom-form .c-form__grid--contact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.c-rst-custom-form .c-form-field input,
.c-rst-custom-form .c-form-field textarea {
	border-color: #333;
	background: var(--c-ink);
	color: var(--c-white);
}

.c-rst-custom-services {
	min-height: 50.2rem;
	padding-inline: 4rem;
}

.c-rst-custom-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	padding-block: 4rem 0;
}

.c-rst-custom-service {
	display: flex;
	min-height: 22.7rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.5rem;
	background: var(--c-ink);
}

.c-rst-custom-service h2 {
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.1;
}

.c-rst-custom-service p {
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1rem;
	line-height: 1.3;
}

.c-rst-custom-cta {
	display: flex;
	min-height: 25rem;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2rem;
	padding: 4rem;
}

.c-rst-custom-cta p {
	max-width: 56.25rem;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.3;
}

.c-page-hero--technologies {
	margin-top: 5.1875rem;
}

.c-page-hero--technologies .c-eyebrow {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

.c-page-hero--technologies h1 {
	max-width: none;
}

.c-technologies-intro,
.c-technologies-cards,
.c-technologies-cta {
	background: #000;
	color: var(--c-white);
}

.c-technologies-intro__inner {
	display: grid;
	height: 29.625rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	padding-bottom: 0.75rem;
}

.c-technologies-intro__copy {
	padding: 4rem 0 4rem 4rem;
}

.c-technologies-intro__copy h2 {
	margin-bottom: 2rem;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.1;
}

.c-technologies-intro__copy p {
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1.125rem;
	line-height: 1.3;
}

.c-technologies-intro__media {
	margin: 0;
	padding: 4rem 4rem 0 0;
}

.c-technologies-intro__media img {
	width: 100%;
	height: 23.71875rem;
	object-fit: cover;
}

.c-technologies-cards {
	padding-inline: 4rem;
}

.c-technologies-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	padding-block: 4rem 0;
}

.c-technologies-card {
	display: flex;
	min-height: 25rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.5rem;
	background: var(--c-ink);
}

.c-technologies-card .c-square-marker,
.c-rst-custom-service .c-square-marker {
	width: 0.375rem;
	height: 0.375rem;
}

.c-technologies-card h2 {
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.1;
}

.c-technologies-card p {
	margin-bottom: 0;
	color: var(--c-muted);
	font-size: 1rem;
	line-height: 1.3;
}

.c-technologies-cta {
	display: flex;
	min-height: 18.5rem;
	align-items: center;
	justify-content: center;
	padding: 4rem;
}

.c-technologies-cta p {
	width: min(100%, 56.25rem);
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.3;
	text-align: center;
}

.c-page-hero--contact {
	margin-top: 3.125rem;
}

.c-contact-page--en .c-page-hero--contact {
	margin-top: 5.1875rem;
}

.c-page-hero--contact .c-eyebrow {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

.c-page-hero--contact h1 {
	max-width: none;
}

.c-contact-page__content {
	min-height: 42.35rem;
	padding-block: 4rem;
}

.c-contact-page__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	align-items: start;
}

.c-contact-page__details h2,
.c-contact-page__form h2 {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.c-contact-page__contact-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 1.5rem;
}

.c-contact-page__details address {
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.2;
}

.c-contact-page__details address strong {
	font-weight: 600;
}

.c-contact-link {
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
}

.c-contact-page__social-title {
	margin-top: 3rem;
}

.c-contact-page__socials {
	gap: 2rem;
	margin-top: 0;
	padding-left: 1.5rem;
	font-size: 0.875rem;
}

.c-contact-page__form {
	padding: 0;
	background: transparent;
}

.c-contact-page__form .c-form {
	gap: 0;
}

.c-contact-page__form .c-form__grid--contact {
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding-bottom: 1.5rem;
}

.c-contact-page__form .c-form-field {
	gap: 0.5375rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.2;
}

.c-contact-page__form .c-form-field input {
	height: 2.5rem;
	padding-inline: 0.75rem;
	border: 0;
	background: rgba(243, 243, 243, 0.5);
}

.c-contact-page__form .c-form-field textarea {
	height: 5.625rem;
	padding: 0.625rem 0.75rem;
	border: 0;
	background: rgba(243, 243, 243, 0.5);
	line-height: 1.7;
	resize: none;
}

.c-contact-page__form .c-form > .c-form-field {
	padding-bottom: 1.5rem;
}

.c-contact-page__form .c-checkbox {
	height: 2.7749rem;
	padding-bottom: 1.55625rem;
	font-size: 0.8125rem;
}

.c-contact-page__form .c-button {
	min-height: 2.15rem;
	align-self: flex-start;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: 0;
	font-size: 1rem;
	line-height: 1.15;
}

.c-page-hero--commerce {
	min-height: 13.55rem;
	padding-block: 4rem;
}

.c-page-hero--commerce .c-eyebrow {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

.c-page-hero--commerce h1 {
	max-width: none;
}

.c-cart-page .c-page-hero--commerce {
	margin-top: 3.625rem;
}

.c-checkout-page .c-page-hero--commerce,
.c-account-page .c-page-hero--commerce,
.c-thank-you-page .c-page-hero--commerce {
	margin-top: 5.1875rem;
}

.c-commerce-content,
.c-commerce-content--checkout {
	margin-block: 4rem;
}

.c-cart-page table.shop_table td.actions .input-text {
	height: 2.625rem;
	min-height: 2.625rem;
}

.c-cart-page table.shop_table td.actions .button {
	min-width: 11.45rem;
	height: 2.5rem;
	padding-block: 0;
	font-size: 0.875rem;
}

.c-cart-page .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	min-height: 4.625rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 1rem;
	line-height: 1;
}

.c-checkout-page form.checkout {
	grid-template-columns: minmax(0, 585.6fr) minmax(0, 486.4fr);
	column-gap: 5rem;
}

.c-checkout-page #customer_details h3,
.c-checkout-page #order_review_heading {
	font-size: 1.6875rem;
	line-height: 1.4;
}

.c-checkout-page #place_order {
	font-size: 1.125rem;
	line-height: 1;
}

.c-empty-cart {
	min-height: 100svh;
}

.c-shop {
	padding-block: 0;
}

.single-product .c-shop {
	padding-block: 10.59375rem 5rem;
}

.single-product .woocommerce-breadcrumb {
	font-size: 0.75rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: flex;
	height: 6.25rem;
	gap: 0.75rem;
	margin-top: 0.75rem;
	overflow: hidden;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	width: 6.25rem;
	height: 6.25rem;
	flex: 0 0 6.25rem;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs img {
	width: 6.25rem;
	height: 6.25rem;
	object-fit: cover;
}

@media (min-width: 821px) {
	.single-product .woocommerce-product-gallery {
		height: 44.0254rem;
	}
}

.c-account-page #customer_login form {
	font-size: 1rem;
	line-height: 1.7;
}

.c-page-hero--shop {
	margin-top: 5.03125rem;
}

.c-shop-archive {
	padding: 2rem 0;
}

.c-shop-archive__inner {
	display: grid;
	grid-template-columns: 18.975rem minmax(0, 1fr);
	gap: 0.75rem;
}

.c-product-filters {
	align-self: start;
	padding: 1.5rem;
	background: var(--c-surface);
}

.c-product-filters .widget + .widget {
	margin-top: 2rem;
}

.c-product-filters .widget-title {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.2;
}

.c-product-filters ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-product-filters li + li {
	margin-top: 0.75rem;
}

.c-product-filters a {
	font-size: 0.875rem;
	text-decoration: none;
}

.c-shop-products ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.c-shop-products ul.products li.product,
.woocommerce-page .c-shop-products ul.products li.product {
	background: var(--c-surface);
}

.c-shop-products ul.products li.product a img {
	aspect-ratio: 270.8 / 264.7;
	object-fit: cover;
}

.c-shop-products ul.products li.product .woocommerce-loop-product__title {
	padding: 0.75rem 0.75rem 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
}

.c-shop-products ul.products li.product .price {
	padding-inline: 0.75rem;
	font-size: 1rem;
	line-height: 1.1;
}

.c-shop-products ul.products li.product .button {
	display: flex;
	min-height: 4rem;
	align-items: center;
	justify-content: center;
	margin: 0.75rem;
	padding: 0.75rem;
	font-size: 0.875rem;
}

.c-commerce-content--account .woocommerce {
	width: 100%;
}

.c-account-page #customer_login {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem;
}

.c-account-page #customer_login::before,
.c-account-page #customer_login::after {
	display: none;
}

.c-account-page #customer_login > .col-1,
.c-account-page #customer_login > .col-2 {
	float: none;
	width: 100%;
}

.c-account-page #customer_login h2 {
	margin-bottom: 1.875rem;
	font-size: 1.5rem;
	line-height: 1.4;
}

.c-account-page #customer_login form {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin: 0;
	padding: 1.875rem;
	border: 0;
	border-radius: 0;
	background: var(--c-surface);
}

.c-account-page #customer_login form .form-row {
	padding: 0;
}

.c-account-page #customer_login input.input-text {
	min-height: 2.625rem;
	border: 1px solid var(--c-line);
	font-size: 1rem;
}

.c-account-page #customer_login .woocommerce-form-login__submit,
.c-account-page #customer_login .woocommerce-form-register__submit {
	min-height: 2.5rem;
	align-self: center;
	padding-block: 0;
	font-size: 1rem;
}

.c-thank-you-page__lead {
	width: min(calc(100% - (2 * var(--gutter))), 72rem);
	margin: 4rem auto 0;
	font-size: 1.5rem;
	line-height: 1.3;
	text-align: center;
}

.c-commerce-content--thank-you {
	margin-top: 4rem;
}

@media (max-width: 1180px) {
	.c-site-header__inner {
		grid-template-columns: 2.125rem auto 1fr;
		min-height: 0;
		padding-block: 0.625rem;
	}

	.c-menu-toggle {
		display: block;
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	.c-brand {
		width: 7rem;
		grid-column: 2;
		grid-row: 1;
	}

	.c-brand img {
		height: 2.4125rem;
	}

	.c-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(26rem, 88vw);
		padding: 8rem 2rem 3rem;
		background: var(--c-dark);
		box-shadow: -1rem 0 3rem rgba(0,0,0,.25);
		transform: translateX(110%);
		transition: transform 260ms ease;
	}

	.nav-open .c-nav {
		transform: none;
	}

	.c-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.c-nav__link,
	.c-nav .menu-item > a {
		display: block;
		padding-block: 0.8rem;
		font-size: 0.9rem;
	}

	.c-nav .sub-menu {
		position: static;
		display: block;
		padding: 0 0 0 1rem;
		border: 0;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.nav-open .c-menu-toggle {
		position: fixed;
		top: 3.9rem;
		right: 1.5rem;
		z-index: 2;
	}

	.nav-open .c-menu-toggle > span:nth-of-type(2) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-open .c-menu-toggle > span:nth-of-type(3) {
		opacity: 0;
	}

	.nav-open .c-menu-toggle > span:nth-of-type(4) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.c-header-actions {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.l-card-grid--products,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.c-collections-grid {
		grid-auto-rows: 15rem;
	}
}

@media (max-width: 820px) {
	:root {
		--gutter: 0.75rem;
	}

	.c-topbar__inner {
		gap: 1rem;
	}

	.c-page-hero {
		padding-block: 2rem;
	}

	.c-about-page .c-page-hero {
		margin-top: 2.5rem;
		min-height: 9.3rem;
	}

	.c-page-hero__inner h1 {
		font-size: 3rem;
	}

	.c-about-story__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem 1rem;
	}

	.c-about-story__copy,
	.c-about-story__media {
		padding: 0;
	}

	.c-about-story__media img {
		height: auto;
	}

	.c-about-services {
		padding-inline: 1rem;
	}

	.c-about-services__grid {
		width: 100%;
		grid-template-columns: 1fr;
		padding-block: 4rem;
	}

	.c-about-service-card {
		min-height: 0;
		padding-block: 2.5rem;
	}

	.c-page-hero--publications {
		margin-top: 4.0625rem;
	}

	.c-publications-listing {
		padding-block: 1rem;
	}

	.c-publications-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.c-article__header {
		margin-top: 2.5rem;
		padding-block: 2rem;
	}

	.c-article__header-inner {
		gap: 2rem;
	}

	.c-article__header h1 {
		font-size: 1.75rem;
		line-height: 1;
	}

	.c-article__content {
		width: calc(100% - 2rem);
		padding-block: 1rem;
	}

	.c-archive-listing {
		padding-top: 10.65rem;
		padding-bottom: 1rem;
	}

	.c-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.875rem;
	}

	.c-post-card--archive .c-card__title {
		font-size: 1.6875rem;
		line-height: 1.4;
	}

	.c-page-hero--commerce {
		padding-block: 2rem;
	}

	.c-commerce-content,
	.c-commerce-content--checkout {
		margin-block: 0;
	}

	.c-commerce-content__inner {
		padding-inline: 0.75rem;
	}

	.c-cart-page .c-commerce-content__inner > .woocommerce,
	.c-checkout-page form.checkout {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.c-cart-page .woocommerce-cart-form {
		padding: 0;
	}

	.c-cart-page table.shop_table td.actions .coupon {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.c-cart-page table.shop_table td.actions .input-text,
	.c-cart-page table.shop_table td.actions .button {
		width: 100%;
	}

	.c-checkout-page #customer_details,
	.c-checkout-page #order_review_heading,
	.c-checkout-page #order_review {
		grid-column: 1;
		grid-row: auto;
		padding-inline: 1.25rem;
	}

	.c-checkout-page #order_review_heading {
		padding-top: 1.5rem;
		font-size: 1.6875rem;
		line-height: 1.4;
	}

	.c-checkout-page #customer_details h3 {
		font-size: 1.6875rem;
		line-height: 1.4;
	}

	.c-checkout-page #place_order {
		min-height: 4.625rem;
		font-size: 1rem;
	}

	.c-topbar a:first-child {
		display: none;
	}

	.c-topbar__inner {
		justify-content: flex-end;
	}

	.c-header-actions__link,
	.c-header-actions__cart > span:not(.c-header-actions__count) {
		display: none;
	}

	.c-hero__inner,
	.c-why__grid,
	.c-newsletter__inner,
	.c-contact-page__grid,
	.l-split,
	.c-content-row,
	.woocommerce div.product,
	.c-collection-mission__grid,
	.c-product-details__grid,
	.c-product-video {
		grid-template-columns: 1fr;
	}

	.c-collections-grid {
		grid-auto-rows: 18rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.c-collection-card,
	.c-collection-card--featured {
		grid-column: span 1;
		grid-row: span 1;
	}

	.c-collection-card--featured {
		grid-column: span 2;
	}

	.c-collection-mission__grid {
		gap: 2rem;
	}

	.c-product-video__thumbnail {
		min-height: 22rem;
		grid-row: 1;
	}

	.c-product-info-box {
		width: 100%;
	}

	.c-product-real-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.c-hero__inner {
		min-height: auto;
	}

	.c-hero__copy {
		min-height: 28rem;
	}

	.c-hero__media {
		aspect-ratio: 4 / 3;
	}

	.l-card-grid--products,
	.l-card-grid--posts,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.c-newsletter__inner {
		gap: 2rem;
	}

	.c-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		min-height: 41.175rem;
		padding-block: 4rem;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 2rem;
	}
}

@media (max-width: 520px) {
	:root {
		--gutter: 1rem;
	}

	.c-site-header__inner {
		grid-template-columns: 2.125rem auto 1fr;
		gap: 0;
	}

	.c-page-hero__inner h1 {
		font-size: 1.75rem;
	}

	.c-header-actions {
		grid-column: 3;
		justify-self: end;
	}

	.c-language-switcher {
		display: none;
	}

	.c-brand {
		width: 7.5rem;
	}

	.c-hero__copy {
		min-height: 24rem;
		padding-block: 3.5rem;
	}

	.l-card-grid--products,
	.l-card-grid--posts,
	.woocommerce ul.products,
	.c-site-footer__grid,
	.c-form__grid,
	.c-collections-grid,
	.c-product-real-gallery__grid {
		grid-template-columns: 1fr;
	}

	.c-collections-grid {
		grid-auto-rows: 21rem;
	}

	.c-collection-card--featured {
		grid-column: span 1;
	}

	.c-collection-shop-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.c-collection-hero {
		min-height: 37rem;
	}

	.c-collection-hero::before {
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.9) 84%), var(--collection-hero);
	}

	.c-product-pdf {
		grid-template-columns: auto 1fr;
	}

	.woocommerce div.product .product_title {
		font-size: 1.1rem;
	}

	.c-product-highlights {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product form.cart:not(.variations_form),
	.woocommerce div.product .woocommerce-variation-add-to-cart {
		flex-wrap: wrap;
	}

	.c-product-pdf__arrow {
		display: none;
	}

	.c-product-video__thumbnail {
		min-height: 16rem;
	}

	.c-products-section .l-card-grid--products {
		display: flex;
		margin-inline: -1rem;
		padding-inline: 1rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.c-products-section .c-product-card {
		min-width: min(82vw, 20rem);
		scroll-snap-align: start;
	}

	.c-site-footer__bottom {
		gap: 1rem;
	}

	.c-content-section__inner {
		gap: 1.5rem;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		padding-block: 0.85rem;
	}
}

@media (max-width: 820px) {
	body.home .c-hero {
		margin-top: 3.625rem;
	}

	body.home .c-hero__inner {
		min-height: 41.05rem;
	}

	body.home .c-hero__copy {
		min-height: 22.76875rem;
	}

	body.home .c-hero__copy h1 {
		font-size: 3rem;
		line-height: 1;
	}

	.c-error-page__inner {
		min-height: 52.75rem;
		padding: 17.71875rem 0.4375rem 0;
	}

	.c-search-heading {
		padding-top: 5.34375rem;
	}

	.c-search-heading h1 {
		font-size: 2.25rem;
		line-height: 1.4;
	}

	.c-search-results {
		padding-top: 3.75rem;
	}

	.c-search-results__inner {
		width: calc(100% - 3.75rem);
		margin-left: 0.9375rem;
	}

	.c-search-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.875rem;
	}

	.c-post-card--search .c-card__title,
	.c-search-results__empty {
		font-size: 1.6875rem;
		line-height: 1.4;
	}

	.c-legal-page > .c-content-section:first-child,
	.c-legal-page--terms > .c-content-section:first-child,
	html[lang^="en"] .c-legal-page--terms > .c-content-section:first-child {
		min-height: 22.6875rem;
		padding: 13.75rem 0 5rem;
	}

	.c-legal-page--terms > .c-content-section:first-child {
		min-height: 26.5rem;
	}

	.c-legal-page > .c-content-section:first-child .c-content-section__inner,
	.c-legal-page > .c-content-section:nth-child(2) .c-content-section__inner {
		width: calc(100% - 1.5rem);
	}

	.c-legal-page > .c-content-section:first-child h2 {
		font-size: 1.75rem;
		line-height: 1.1;
	}

	.c-page-hero--faq {
		margin-top: 3.625rem;
		padding-block: 2rem;
	}

	.c-faq-page__content > .c-content-section {
		padding: 2rem 1rem;
	}

	.c-faq-page__content .c-content-section__inner {
		width: 100%;
	}

	.c-faq-page .c-accordion__trigger {
		font-size: 1.25rem;
		line-height: 1.5;
	}

	.c-rst-racing-hero {
		min-height: 30.6625rem;
		margin-top: 3.625rem;
		padding: 2rem 0;
	}

	.c-rst-racing-hero h1 {
		font-size: 1.75rem;
		line-height: 1;
	}

	.c-rst-racing-hero__inner > p:last-child {
		width: 100%;
	}

	.c-rst-racing-story {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem 1rem;
	}

	.c-rst-racing-story__copy,
	.c-rst-racing-story__gallery {
		padding: 0;
	}

	.c-rst-racing-story__copy h2,
	.c-rst-racing-b2b h2 {
		font-size: 2rem;
		line-height: 1.1;
	}

	.c-rst-racing-story__gallery {
		gap: 2rem;
	}

	.c-rst-racing-b2b {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem 1rem;
	}

	.c-rst-racing-b2b__form,
	.c-rst-racing-b2b__copy {
		padding: 0;
	}

	.c-rst-racing-league {
		min-height: 0;
		padding: 4rem 1rem;
	}

	.c-rst-racing-league__main {
		min-height: 0;
	}

	.c-rst-racing-league__main h2 {
		font-size: 2rem;
	}

	.c-rst-racing-league__lower {
		grid-template-columns: 1fr;
	}

	.c-rst-racing-news {
		padding-top: 0;
	}

	.c-rst-racing-news > header,
	.c-rst-racing-news__grid {
		width: 100%;
	}

	.c-rst-racing-news > header {
		padding-inline: 1rem;
	}

	.c-rst-racing-news .c-post-card--editorial {
		width: 100%;
	}

	.c-page-hero--rst-custom {
		margin-top: 3.625rem;
	}

	.c-rst-custom-row {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem 1rem;
	}

	.c-rst-custom-row__copy,
	.c-rst-custom-row--reverse .c-rst-custom-row__copy {
		grid-column: 1;
		grid-row: auto;
		padding: 0;
	}

	.c-rst-custom-row__copy h2 {
		font-size: 2rem;
		line-height: 1.1;
	}

	.c-rst-custom-row__gallery,
	.c-rst-custom-row--reverse .c-rst-custom-row__gallery {
		grid-column: 1;
		grid-row: auto;
		gap: 2rem;
		padding: 0;
	}

	.c-rst-custom-row--reverse .c-rst-custom-row__gallery {
		grid-row: 1;
	}

	.c-rst-custom-form {
		min-height: 39.975rem;
		padding: 2rem 1rem;
	}

	.c-rst-custom-form .c-form__grid--contact {
		grid-template-columns: 1fr;
	}

	.c-rst-custom-services {
		padding-inline: 1rem;
	}

	.c-rst-custom-services__grid {
		grid-template-columns: 1fr;
		padding-block: 4rem;
	}

	.c-rst-custom-service {
		min-height: 0;
		padding-block: 2.5rem;
	}

	.c-rst-custom-cta {
		padding: 4rem 1rem;
	}

	.c-page-hero--technologies {
		margin-top: 3.625rem;
	}

	.c-technologies-intro__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		height: auto;
		padding: 2rem 1rem;
	}

	.c-technologies-intro__copy,
	.c-technologies-intro__media {
		padding: 0;
	}

	.c-technologies-intro__copy h2 {
		font-size: 2rem;
		line-height: 1.1;
	}

	.c-technologies-intro__media img {
		height: auto;
	}

	.c-technologies-cards {
		padding-inline: 1rem;
	}

	.c-technologies-cards__grid {
		grid-template-columns: 1fr;
		padding-block: 4rem;
	}

	.c-technologies-card {
		min-height: 0;
		padding-block: 2.5rem;
	}

	.c-technologies-cta {
		min-height: 29.35rem;
		padding: 4rem 1rem;
	}

	.c-page-hero--contact,
	.c-contact-page--en .c-page-hero--contact {
		margin-top: 3.625rem;
	}

	.c-contact-page__content {
		min-height: 64.3875rem;
		padding-block: 2rem;
	}

	.c-contact-page__grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.c-contact-page__details h2,
	.c-contact-page__form h2 {
		font-size: 1.75rem;
		line-height: 1.3;
	}

	.c-page-hero--commerce,
	.c-cart-page .c-page-hero--commerce,
	.c-checkout-page .c-page-hero--commerce,
	.c-account-page .c-page-hero--commerce,
	.c-thank-you-page .c-page-hero--commerce,
	.c-page-hero--shop {
		min-height: 7.55rem;
		margin-top: 3.625rem;
		padding: 2rem 0.75rem;
	}

	.c-page-hero--commerce .l-container {
		padding-inline: 0;
	}

	.c-commerce-content__inner {
		padding-inline: 0.75rem;
	}

	.c-cart-page .woocommerce .cart-collaterals .cart_totals {
		padding: 0;
	}

	.c-cart-page table.shop_table td.actions .input-text,
	.c-cart-page table.shop_table td.actions .button {
		width: 100%;
		min-width: 0;
	}

	.c-cart-page table.shop_table td.actions .input-text {
		height: 2.625rem;
	}

	.c-cart-page table.shop_table td.actions .button {
		height: 2.5rem;
	}

	.c-cart-page .wc-proceed-to-checkout a.checkout-button {
		min-height: 4.625rem;
		font-size: 1rem;
	}

	.c-checkout-page #customer_details,
	.c-checkout-page #order_review_heading,
	.c-checkout-page #order_review {
		width: auto;
		margin-inline: 1.5rem;
		padding: 0;
	}

	.c-checkout-page #order_review_heading {
		padding-top: 0;
	}

	.c-checkout-page form.checkout {
		margin-top: 4.1094rem;
	}

	.c-checkout-page #customer_details .col-2 {
		margin-top: 0.9375rem;
	}

	.c-account-page .c-commerce-content__inner {
		padding-inline: 1rem;
	}

	.single-product .c-shop {
		padding: 5.21875rem 0 2rem;
	}

	.single-product .c-shop__inner {
		padding-inline: 0.75rem;
	}

	.single-product .woocommerce-breadcrumb {
		display: none;
	}

	.single-product .woocommerce div.product {
		row-gap: 2rem;
	}

	.single-product .woocommerce div.product .product_title {
		font-size: 1.25rem;
		line-height: 1.3;
	}

	.single-product .c-product-lead {
		font-size: 1rem;
		line-height: 1.7;
	}

	.single-product .woocommerce-product-gallery .flex-control-thumbs,
	.single-product .woocommerce-product-gallery .flex-control-thumbs li,
	.single-product .woocommerce-product-gallery .flex-control-thumbs img {
		height: 6.25rem;
	}

	body.home .c-hero {
		margin-top: 3.625rem;
	}

	body.home .c-hero__inner {
		min-height: 41.05rem;
	}

	body.home .c-hero__copy {
		min-height: 22.76875rem;
		padding: 2rem 0.75rem;
	}

	body.home .c-hero__copy h1 {
		width: 100%;
		max-width: none;
		font-size: 3rem;
		line-height: 1;
	}

	body.home .c-hero__copy p {
		width: 100%;
		max-width: none;
	}

	body.home .c-hero__media {
		height: 18.28125rem;
		aspect-ratio: auto;
	}

	body.home .c-products-section {
		min-height: 58.35625rem;
	}

	body.home .c-products-section .c-section-heading__title {
		font-size: 1.75rem;
		line-height: 1;
	}

	body.home .c-why {
		height: 56.3625rem;
		padding: 4rem 1rem;
	}

	body.home .c-why__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-inline: 0;
	}

	body.home .c-why .c-section-heading__title {
		font-size: 3rem;
		line-height: 1.1;
	}

	body.home .c-newsletter {
		height: 27.11875rem;
		padding: 4rem 1rem;
	}

	body.home .c-newsletter__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-inline: 0;
	}

	body.home .c-newsletter h2 {
		font-size: 2rem;
	}

	body.home .c-newsletter form {
		width: 100%;
	}

	.c-collection-hero h1 {
		font-size: 1.75rem;
		line-height: 1;
	}

	.c-collection-mission,
	.c-collection-publications {
		padding-block: 2rem;
	}

	.c-collection-mission h2,
	.c-collection-publications .c-section-heading__title {
		font-size: 2rem;
		line-height: 1.1;
	}

	.c-collection-publications .l-card-grid--posts {
		grid-template-columns: 1fr;
	}

	.c-empty-cart {
		min-height: 100svh;
		padding-inline: 1rem;
	}

	.c-empty-cart h1 {
		font-size: 1.75rem;
		line-height: 1;
	}

	.c-shop-archive {
		padding: 2rem 0;
	}

	.c-shop-archive__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-inline: 0.75rem;
	}

	.c-product-filters {
		width: 100%;
	}

	.c-shop-products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.c-account-page #customer_login {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.c-account-page .woocommerce-MyAccount-navigation {
		float: left;
		width: 25%;
		margin: 0 1.3125rem 0 0;
	}

	.c-account-page .woocommerce-MyAccount-content {
		float: left;
		width: calc(75% - 1.3125rem);
	}

	.c-commerce-content--account {
		margin-block: 2rem;
	}

	.c-thank-you-page__lead {
		margin-top: 2rem;
		font-size: 1.125rem;
	}

	.c-commerce-content--thank-you {
		margin-block: 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
