/* STURM Parkring 2026 — editorial design system */

:root {
	--sturm-parchment: #f1ede7;
	--sturm-paper: #faf8f5;
	--sturm-ink: #171719;
	--sturm-navy: #151623;
	--sturm-cognac: #ab7156;
	--sturm-taupe: #706760;
	--sturm-mist: #dfdbd8;
	--sturm-line: rgba(23, 23, 25, 0.18);
	--sturm-white-line: rgba(255, 255, 255, 0.28);
	--sturm-serif: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
	--sturm-sans: "Helvetica Neue", "Nimbus Sans L", Helvetica, Arial, sans-serif;
	--sturm-gutter: clamp(1rem, 3.125vw, 3rem);
	--sturm-header-height: clamp(5rem, 7.5vw, 7rem);
	--sturm-content: 1280px;
	--sturm-reading: 760px;
	--sturm-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--sturm-radius: 0.15rem;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--sturm-header-height);
}

body {
	margin: 0;
	background: var(--sturm-parchment);
	color: var(--sturm-ink);
	font-family: var(--sturm-sans);
	font-size: clamp(0.9375rem, 0.25vw + 0.875rem, 1.0625rem);
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.005em;
	overflow-x: clip;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.is-menu-open {
	overflow: hidden;
}

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

body.admin-bar .site-drawer,
body.admin-bar .drawer-backdrop {
	top: 32px;
	height: calc(100dvh - 32px);
}

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

img {
	height: auto;
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--sturm-serif);
	font-weight: 400;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(3.25rem, 8.2vw, 8.75rem);
	line-height: 0.9;
}

h2 {
	font-size: clamp(2.6rem, 6.1vw, 6.5rem);
	line-height: 0.94;
}

h3 {
	font-size: clamp(1.75rem, 3vw, 3.5rem);
	line-height: 1;
}

a {
	color: inherit;
	text-decoration-color: currentColor;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.18em;
}

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

button,
[type="button"],
[type="submit"] {
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid var(--sturm-cognac);
	outline-offset: 4px;
}

::selection {
	background: var(--sturm-navy);
	color: #fff;
}

.screen-reader-text,
.sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	left: 1rem;
	top: -5rem;
	z-index: 9999;
	padding: 0.75rem 1rem;
	background: #fff;
	color: var(--sturm-ink);
	text-decoration: none;
	transition: top 180ms ease;
}

.skip-link:focus {
	top: 1rem;
}

/* Reusable atoms */

.eyebrow,
.meta-label,
.entry-meta,
.editorial-card__eyebrow {
	font-family: var(--sturm-sans);
	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eyebrow {
	margin-bottom: clamp(1.25rem, 2.4vw, 2.25rem);
}

.meta-label {
	display: block;
	margin-bottom: 0.65rem;
	opacity: 0.78;
}

.text-link,
.pill-link,
.glass-action {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.text-link {
	padding: 0.4rem 0;
	border-bottom: 1px solid currentColor;
}

.text-link svg,
.pill-link svg,
.glass-action svg,
.header-contact svg,
.search-submit svg {
	width: 1.1rem;
	height: 1.1rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
	transition: transform 350ms var(--sturm-ease);
}

.text-link:hover svg,
.pill-link:hover svg,
.glass-action:hover svg,
.header-contact:hover svg {
	transform: translateX(0.25rem);
}

.pill-link {
	min-height: 3.5rem;
	padding: 0 1.5rem;
	border: 1px solid var(--sturm-line);
	border-radius: 999px;
	transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.pill-link:hover {
	background: var(--sturm-ink);
	border-color: var(--sturm-ink);
	color: #fff;
}

.pill-link--light {
	border-color: var(--sturm-white-line);
	color: #fff;
}

.pill-link--light:hover {
	background: #fff;
	border-color: #fff;
	color: var(--sturm-ink);
}

.chapter {
	position: relative;
	width: 100%;
}

.chapter--dark {
	background: var(--sturm-navy);
	color: #fff;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 3rem;
}

.section-title {
	max-width: 12ch;
	margin-bottom: 0;
}

/* Header */

body.sturm-native-shell .site-header {
	position: fixed;
	inset: 0 0 auto;
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	z-index: 1000;
	height: var(--sturm-header-height);
	color: var(--sturm-ink);
	transition: color 380ms ease, background-color 380ms ease, transform 500ms var(--sturm-ease), box-shadow 380ms ease;
}

body.sturm-native-shell .site-header,
body.sturm-native-shell .site-drawer,
body.sturm-native-shell .site-footer {
	font-family: var(--sturm-sans);
}

body.sturm-native-shell .site-header a,
body.sturm-native-shell .site-drawer a,
body.sturm-native-shell .site-footer a {
	color: inherit;
}

body.sturm-native-shell .site-footer .pill-link--light:hover {
	color: var(--sturm-ink);
}

.site-header[data-contrast="light"],
.site-header[data-header-mode="overlay"]:not(.is-scrolled):not([data-contrast="dark"]) {
	color: #fff;
}

.site-header.is-scrolled {
	background: rgba(241, 237, 231, 0.86);
	box-shadow: 0 1px 0 rgba(23, 23, 25, 0.08);
	color: var(--sturm-ink);
	-webkit-backdrop-filter: blur(22px) saturate(130%);
	backdrop-filter: blur(22px) saturate(130%);
}

.site-header.is-scrolled[data-contrast="light"] {
	background: rgba(21, 22, 35, 0.78);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
	color: #fff;
}

.site-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	max-width: none;
	margin: 0;
	height: 100%;
	padding-inline: var(--sturm-gutter);
}

.menu-toggle,
.drawer-close {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 0.9rem;
	padding: 0.75rem 0;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle__lines {
	display: grid;
	width: 1.4rem;
	gap: 0.36rem;
}

.menu-toggle__lines span {
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform 300ms var(--sturm-ease);
}

.menu-toggle:hover .menu-toggle__lines span:first-child {
	transform: translateX(0.2rem);
}

.menu-toggle:hover .menu-toggle__lines span:last-child {
	transform: translateX(-0.2rem);
}

.site-brand {
	display: block;
	justify-self: center;
	width: clamp(7.25rem, 12vw, 11.5rem);
	color: inherit;
	text-decoration: none;
}

.site-brand__marks {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 1;
}

.site-brand__logo {
	position: absolute;
	inset: 50% 0 auto;
	width: 100%;
	height: auto;
	transform: translateY(-50%);
	transition: opacity 300ms ease;
}

.site-brand__logo--light {
	opacity: 0;
}

.site-brand__logo--dark {
	opacity: 1;
}

.site-header[data-contrast="light"] .site-brand__logo--light,
.site-header[data-header-mode="overlay"]:not(.is-scrolled):not([data-contrast="dark"]) .site-brand__logo--light {
	opacity: 1;
}

.site-header[data-contrast="light"] .site-brand__logo--dark,
.site-header[data-header-mode="overlay"]:not(.is-scrolled):not([data-contrast="dark"]) .site-brand__logo--dark {
	opacity: 0;
}

.site-header.is-scrolled:not([data-contrast="light"]) .site-brand__logo--light {
	opacity: 0;
}

.site-header.is-scrolled:not([data-contrast="light"]) .site-brand__logo--dark {
	opacity: 1;
}

.header-contact {
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 0.75rem;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.header-contact svg {
	width: 1rem;
	height: 1rem;
}

/* Drawer */

.drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1090;
	background: rgba(10, 10, 12, 0.48);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	opacity: 0;
	transition: opacity 450ms ease;
}

.drawer-backdrop:not([hidden]) {
	display: block;
}

.is-menu-open .drawer-backdrop {
	opacity: 1;
}

.site-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1100;
	display: grid;
	grid-template-rows: auto 1fr auto;
	width: min(35rem, calc(100vw - 1.5rem));
	height: 100dvh;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--sturm-paper);
	color: var(--sturm-ink);
	transform: translateX(-104%);
	visibility: hidden;
	transition: transform 700ms var(--sturm-ease), visibility 0s 700ms;
}

.is-menu-open .site-drawer {
	transform: translateX(0);
	visibility: visible;
	transition-delay: 0s;
}

.site-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-drawer__kicker {
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.drawer-close {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid var(--sturm-line);
	border-radius: 50%;
}

.drawer-close svg {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.3;
}

.site-drawer__nav {
	display: flex;
	align-items: center;
	padding-block: 2rem;
	overflow: auto;
}

.drawer-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.drawer-menu > li {
	position: relative;
	border-bottom: 1px solid var(--sturm-line);
}

.drawer-menu > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.46em 0;
	font-family: var(--sturm-serif);
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	line-height: 1;
	letter-spacing: -0.035em;
	text-decoration: none;
	transition: padding-left 350ms var(--sturm-ease), color 250ms ease;
}

.drawer-menu > li > a:hover,
.drawer-menu > .current-menu-item > a,
.drawer-menu > .current-menu-ancestor > a {
	padding-left: 0.6rem;
	color: var(--sturm-cognac);
}

.drawer-menu .sub-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.2rem;
	padding: 0 0 1rem;
	margin: 0;
	list-style: none;
}

.drawer-menu .sub-menu a {
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.site-drawer__bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--sturm-line);
	font-size: 0.75rem;
	line-height: 1.55;
}

.site-drawer__bottom address,
.site-drawer__bottom p {
	margin: 0;
	font-style: normal;
}

.site-drawer__social {
	display: grid;
	align-content: end;
	gap: 0.35rem;
	text-align: right;
}

.site-drawer__social a {
	text-decoration: none;
}

/* Hero */

.home-hero {
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
}

.home-hero__image,
.home-hero__veil,
.campaign__image,
.campaign__veil {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-hero__image,
.campaign__image {
	object-fit: cover;
	transform: scale(1.015);
	animation: sturm-hero-drift 14s var(--sturm-ease) both;
}

.home-hero__image {
	object-position: center center;
}

.home-hero__veil {
	background: linear-gradient(180deg, rgba(10, 10, 13, 0.28) 0%, rgba(10, 10, 13, 0.04) 38%, rgba(10, 10, 13, 0.66) 100%);
}

.home-hero__content {
	position: absolute;
	left: var(--sturm-gutter);
	right: var(--sturm-gutter);
	bottom: clamp(10rem, 26vh, 13rem);
	z-index: 1;
	width: min(74rem, calc(100% - 2 * var(--sturm-gutter)));
	margin-inline: auto;
	text-align: center;
}

.home-hero__content h1 {
	max-width: none;
	margin-bottom: 1rem;
	font-size: clamp(3rem, 4.4vw, 4.8rem);
}

.home-hero__text {
	max-width: 34rem;
	margin: 0 auto;
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	line-height: 1.45;
}

.home-hero__action {
	position: absolute;
	left: var(--sturm-gutter);
	right: var(--sturm-gutter);
	bottom: clamp(2.5rem, 8vh, 4.5rem);
	z-index: 2;
	width: min(26rem, calc(100% - 2 * var(--sturm-gutter)));
	margin-inline: auto;
}

.glass-action {
	min-width: min(26rem, calc(100vw - 2 * var(--sturm-gutter)));
	min-height: 4rem;
	padding: 0 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(15, 15, 18, 0.34);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	color: #fff;
	-webkit-backdrop-filter: blur(28px) saturate(120%);
	backdrop-filter: blur(28px) saturate(120%);
	transition: background-color 300ms ease, transform 350ms var(--sturm-ease);
}

.glass-action:hover {
	background: rgba(15, 15, 18, 0.58);
	transform: translateY(-2px);
}

.scroll-cue {
	position: absolute;
	left: var(--sturm-gutter);
	bottom: 2rem;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.625rem;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.scroll-cue i {
	position: relative;
	display: block;
	width: 2.5rem;
	height: 1px;
	background: rgba(255, 255, 255, 0.4);
	overflow: hidden;
}

.scroll-cue i::after {
	position: absolute;
	inset: 0;
	background: #fff;
	content: "";
	transform: translateX(-100%);
	animation: sturm-line 2.2s ease-in-out infinite;
}

/* Manifesto */

.manifesto {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.62fr);
	gap: clamp(3rem, 8vw, 10rem);
	align-items: center;
	min-height: 100vh;
	min-height: 100svh;
	padding: clamp(7rem, 14vh, 11rem) var(--sturm-gutter);
	background: var(--sturm-parchment);
}

.manifesto__copy {
	align-self: center;
}

.manifesto__copy h2 {
	max-width: 12.5ch;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.manifesto__body {
	display: grid;
	grid-template-columns: minmax(0, 26rem) auto;
	gap: 3rem;
	align-items: end;
	margin-left: clamp(0rem, 9vw, 9rem);
}

.manifesto__body p {
	margin-bottom: 0;
}

.manifesto__portrait {
	position: relative;
	width: 100%;
	max-width: 31rem;
	margin: 0;
	justify-self: end;
}

.manifesto__portrait::before {
	position: absolute;
	inset: -0.75rem 0.75rem 0.75rem -0.75rem;
	z-index: -1;
	border: 1px solid rgba(141, 130, 119, 0.35);
	content: "";
}

.manifesto__portrait img {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: center top;
}

.manifesto__portrait figcaption {
	margin-top: 0.85rem;
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Campaign */

.campaign {
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
}

.campaign__image {
	object-position: center 24%;
}

.campaign__veil {
	background: linear-gradient(90deg, rgba(7, 8, 13, 0.74) 0%, rgba(7, 8, 13, 0.2) 58%, rgba(7, 8, 13, 0.1) 100%), linear-gradient(0deg, rgba(7, 8, 13, 0.28), transparent 50%);
}

.campaign__content {
	position: absolute;
	left: var(--sturm-gutter);
	bottom: clamp(3rem, 9vh, 7rem);
	z-index: 1;
	width: min(57rem, calc(100% - 2 * var(--sturm-gutter)));
}

.campaign__content h2 {
	max-width: 10ch;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* Collection mosaic */

.collection {
	padding: clamp(7rem, 14vh, 11rem) var(--sturm-gutter);
}

.collection > .section-heading {
	margin-bottom: clamp(3rem, 7vw, 6rem);
}

.editorial-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: minmax(24rem, 39vw) minmax(24rem, 39vw);
	gap: clamp(0.5rem, 1.25vw, 1rem);
}

.editorial-card {
	position: relative;
	display: block;
	min-height: 26rem;
	background: var(--sturm-mist);
	color: #fff;
	overflow: hidden;
	text-decoration: none;
}

.editorial-card--tall {
	grid-column: 1 / span 5;
	grid-row: 1 / span 2;
}

.editorial-card--wide {
	grid-column: 6 / -1;
	grid-row: 1;
}

.editorial-card--small:nth-of-type(3) {
	grid-column: 6 / span 3;
	grid-row: 2;
}

.editorial-card--small:nth-of-type(4) {
	grid-column: 9 / -1;
	grid-row: 2;
}

.editorial-card img,
.editorial-card__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.editorial-card img {
	object-fit: cover;
	transition: transform 1.1s var(--sturm-ease), filter 700ms ease;
}

.editorial-card--wide img {
	object-position: center 42%;
}

.editorial-card--small:nth-of-type(4) img {
	object-position: 24% center;
}

.editorial-card__shade {
	background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 12, 0.65) 100%);
	transition: background-color 500ms ease;
}

.editorial-card__content {
	position: absolute;
	left: clamp(1.25rem, 2vw, 2rem);
	right: clamp(1.25rem, 2vw, 2rem);
	bottom: clamp(1.25rem, 2vw, 2rem);
	z-index: 1;
	display: grid;
	gap: 0.45rem;
}

.editorial-card__title {
	font-family: var(--sturm-serif);
	font-size: clamp(1.75rem, 3vw, 3.4rem);
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.editorial-card:hover img {
	filter: saturate(0.9);
	transform: scale(1.035);
}

.editorial-card:hover .editorial-card__shade {
	background-color: rgba(10, 10, 12, 0.12);
}

.editorial-grid--compact {
	grid-template-rows: none;
	grid-auto-rows: minmax(28rem, 48vw);
}

.editorial-grid--compact .editorial-card {
	grid-column: span 4;
	grid-row: auto;
}

/* Featured story */

.story-section {
	padding: clamp(7rem, 14vh, 11rem) var(--sturm-gutter);
	background: var(--sturm-paper);
}

.story-section > .eyebrow {
	margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.featured-story {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 0.72fr);
	gap: clamp(2.5rem, 7vw, 8rem);
	align-items: center;
	max-width: var(--sturm-content);
	margin-inline: auto;
}

.featured-story__media {
	display: block;
	overflow: hidden;
}

.featured-story__media img {
	width: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
	transition: transform 1s var(--sturm-ease);
}

.featured-story__media:hover img {
	transform: scale(1.025);
}

.featured-story__content h2 {
	margin: 1.25rem 0 1.75rem;
	font-size: clamp(2.5rem, 4.5vw, 5.25rem);
}

.featured-story__content h2 a {
	text-decoration: none;
}

.featured-story__content p {
	margin-bottom: 2rem;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	color: var(--sturm-taupe);
}

.entry-meta a {
	text-decoration: none;
}

/* Newsletter campaign */

.newsletter-chapter {
	min-height: 82vh;
	min-height: 82svh;
	overflow: hidden;
}

.newsletter-chapter__image,
.newsletter-chapter__veil {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.newsletter-chapter__image {
	object-fit: cover;
	object-position: center;
}

.newsletter-chapter__veil {
	background: linear-gradient(90deg, rgba(9, 9, 12, 0.74) 0%, rgba(9, 9, 12, 0.22) 70%), linear-gradient(0deg, rgba(9, 9, 12, 0.36), transparent 55%);
}

.newsletter-chapter__content {
	position: absolute;
	left: var(--sturm-gutter);
	bottom: clamp(3rem, 9vh, 7rem);
	z-index: 1;
	width: min(65rem, calc(100% - 2 * var(--sturm-gutter)));
}

.newsletter-chapter__content h2 {
	max-width: 11ch;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

/* Visit */

.visit {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
	min-height: 90vh;
	min-height: 90svh;
	background: var(--sturm-parchment);
}

.visit__media {
	min-height: 65vh;
	overflow: hidden;
}

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

.visit__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 8vw, 8rem) var(--sturm-gutter);
}

.visit__content h2 {
	max-width: 9ch;
	margin-bottom: 2rem;
}

.visit__content > p:not(.eyebrow) {
	margin-bottom: 2.5rem;
}

.visit__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem 2rem;
}

/* Generic content */

.content-main--standard,
.archive-shell,
.single-shell,
.commerce-shell {
	min-height: 70vh;
	padding: calc(var(--sturm-header-height) + clamp(3rem, 8vw, 7rem)) var(--sturm-gutter) clamp(6rem, 12vw, 10rem);
}

.sturm-native-shell.sturm-header-solid-page .content-main--elementor,
.sturm-native-shell.sturm-header-solid-page.elementor-template-full-width > .elementor,
.sturm-native-shell.sturm-header-solid-page > .elementor-location-single,
.sturm-native-shell.sturm-header-solid-page > .elementor-location-archive {
	padding-top: var(--sturm-header-height);
}

.entry-shell {
	max-width: var(--sturm-content);
	margin-inline: auto;
}

.entry-shell__header,
.archive-hero,
.single-entry__header {
	max-width: var(--sturm-content);
	margin: 0 auto clamp(4rem, 9vw, 8rem);
}

.entry-shell__header h1,
.archive-hero h1,
.single-entry__header h1 {
	max-width: 11ch;
	margin-bottom: 0;
}

.entry-content {
	max-width: var(--sturm-reading);
	margin-inline: auto;
}

.entry-content > * + * {
	margin-top: 1.5em;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.6em;
}

.entry-content h2 {
	font-size: clamp(2.3rem, 4.5vw, 4.75rem);
}

.entry-content h3 {
	font-size: clamp(1.75rem, 3vw, 3rem);
}

.entry-content .alignwide {
	width: min(var(--sturm-content), calc(100vw - 2 * var(--sturm-gutter)));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content blockquote {
	padding: 0;
	margin: clamp(3rem, 7vw, 6rem) 0;
	border: 0;
	font-family: var(--sturm-serif);
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

/* Archive */

.archive-hero > p:last-child,
.archive-description {
	max-width: 35rem;
	margin-top: 2rem;
}

.archive-description p:last-child {
	margin-bottom: 0;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(3rem, 7vw, 7rem) clamp(1rem, 2.2vw, 2.5rem);
	max-width: var(--sturm-content);
	margin-inline: auto;
}

.post-card__media {
	display: block;
	margin-bottom: 1.5rem;
	background: var(--sturm-mist);
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 900ms var(--sturm-ease);
}

.post-card:hover .post-card__media img {
	transform: scale(1.025);
}

.post-card__title {
	margin: 1.1rem 0 1rem;
	font-size: clamp(1.8rem, 2.7vw, 3rem);
}

.post-card__title a {
	text-decoration: none;
}

.post-card__content > p {
	margin-bottom: 0;
	font-size: 0.9375rem;
}

.navigation.pagination {
	max-width: var(--sturm-content);
	margin: clamp(5rem, 10vw, 9rem) auto 0;
}

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

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--sturm-line);
	border-radius: 50%;
	font-size: 0.75rem;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--sturm-ink);
	color: #fff;
}

.no-results {
	max-width: 42rem;
	margin-inline: auto;
	text-align: center;
}

.no-results h2 {
	font-size: clamp(2.75rem, 5vw, 5.5rem);
}

/* Single story */

.single-entry__header {
	text-align: center;
}

.single-entry__header .entry-meta {
	justify-content: center;
	margin-bottom: 2rem;
}

.single-entry__header h1 {
	max-width: 13ch;
	margin-inline: auto;
}

.single-entry__lead {
	max-width: 42rem;
	margin: 2rem auto 0;
	font-size: clamp(1.125rem, 1.8vw, 1.45rem);
}

.single-entry__hero {
	max-width: var(--sturm-content);
	margin: 0 auto clamp(4rem, 9vw, 8rem);
}

.single-entry__hero img {
	width: 100%;
	max-height: 85vh;
	object-fit: cover;
}

.single-entry__layout {
	display: grid;
	grid-template-columns: minmax(9rem, 0.28fr) minmax(0, var(--sturm-reading)) minmax(0, 0.28fr);
	gap: 2rem;
	max-width: var(--sturm-content);
	margin-inline: auto;
}

.single-entry__aside {
	position: sticky;
	top: calc(var(--sturm-header-height) + 2rem);
	align-self: start;
	font-size: 0.75rem;
	line-height: 1.5;
}

.single-entry__tags {
	margin-top: 1.5rem;
}

.single-entry__content {
	grid-column: 2;
	width: 100%;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: var(--sturm-content);
	padding-top: clamp(4rem, 8vw, 7rem);
	margin: clamp(4rem, 8vw, 7rem) auto 0;
	border-top: 1px solid var(--sturm-line);
}

.post-navigation > div:last-child {
	text-align: right;
}

.post-navigation a {
	font-family: var(--sturm-serif);
	font-size: clamp(1.5rem, 2.5vw, 2.5rem);
	line-height: 1.05;
	text-decoration: none;
}

.post-navigation .meta-label {
	font-family: var(--sturm-sans);
	font-size: 0.625rem;
}

.comments-area {
	max-width: var(--sturm-reading);
	margin: clamp(5rem, 10vw, 9rem) auto 0;
}

/* Forms */

.search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	width: min(100%, 36rem);
	margin-top: 2rem;
	border-bottom: 1px solid currentColor;
}

.search-form label {
	display: block;
}

.search-field {
	width: 100%;
	height: 3.5rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
}

.search-submit {
	display: grid;
	place-items: center;
	width: 3.5rem;
	border: 0;
	background: transparent;
	color: inherit;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
textarea,
select {
	max-width: 100%;
	padding: 0.85rem 0;
	border: 0;
	border-bottom: 1px solid var(--sturm-line);
	border-radius: 0;
	background: transparent;
}

textarea {
	min-height: 9rem;
}

button[type="submit"],
input[type="submit"] {
	min-height: 3.5rem;
	padding: 0 1.5rem;
	border: 1px solid var(--sturm-ink);
	border-radius: 999px;
	background: var(--sturm-ink);
	color: #fff;
}

/* Error page */

.error-page {
	display: grid;
	place-items: center;
	min-height: 100vh;
	min-height: 100svh;
	padding: calc(var(--sturm-header-height) + 3rem) var(--sturm-gutter) 4rem;
}

.error-page__content {
	max-width: 56rem;
	text-align: center;
}

.error-page h1 {
	font-size: clamp(3.5rem, 8vw, 8rem);
}

.error-page .search-form {
	margin: 2rem auto;
}

/* Legacy widget and horizontal rail */

.sturm-widget {
	padding: clamp(4rem, 9vw, 8rem) var(--sturm-gutter);
	background: var(--sturm-parchment);
}

.sturm-widget > .section-title,
.sturm-widget > .section-heading {
	max-width: var(--sturm-content);
	margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.sturm-widget .editorial-grid {
	max-width: var(--sturm-content);
	margin-inline: auto;
}

.rail-controls {
	display: flex;
	gap: 0.5rem;
}

.rail-controls button {
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--sturm-line);
	border-radius: 50%;
	background: transparent;
	color: inherit;
}

.product-rail {
	display: grid;
	grid-auto-columns: minmax(16rem, 28vw);
	grid-auto-flow: column;
	gap: 1rem;
	padding-inline: max(var(--sturm-gutter), calc((100vw - var(--sturm-content)) / 2));
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
	display: none;
}

.product-rail__item {
	display: grid;
	gap: 0.4rem;
	scroll-snap-align: start;
	text-decoration: none;
}

.product-rail__media {
	display: block;
	margin-bottom: 0.75rem;
	background: var(--sturm-mist);
	overflow: hidden;
}

.product-rail__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 800ms var(--sturm-ease);
}

.product-rail__item:hover img {
	transform: scale(1.025);
}

.product-rail__title {
	font-family: var(--sturm-serif);
	font-size: 1.45rem;
	line-height: 1.1;
}

.product-rail__price {
	font-size: 0.75rem;
	opacity: 0.64;
}

/* WooCommerce */

.commerce-shell {
	max-width: var(--sturm-content);
	margin-inline: auto;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce div.product .product_meta {
	font-size: 0.75rem;
	letter-spacing: 0.04em;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 4rem 1rem;
}

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

.woocommerce ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
	font-family: var(--sturm-serif);
	font-weight: 400;
	letter-spacing: -0.025em;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 1.6rem;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
	gap: clamp(2.5rem, 7vw, 7rem);
}

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

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

.woocommerce div.product .product_title {
	font-size: clamp(3rem, 6vw, 6.5rem);
	line-height: 0.92;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
	padding: 1rem 1.5rem;
	border-radius: 999px;
	background: var(--sturm-ink);
	color: #fff;
	font-weight: 400;
}

/* Elementor compatibility and opt-in utility classes */

.content-main--elementor {
	width: 100%;
	overflow: clip;
}

.content-main--elementor > .elementor {
	width: 100%;
}

.elementor .sturm-fullscreen,
.sturm-fullscreen.elementor-section,
.sturm-fullscreen.e-con {
	min-height: 100vh;
	min-height: 100svh;
}

.elementor .sturm-editorial-title,
.sturm-editorial-title .elementor-heading-title {
	font-family: var(--sturm-serif);
	font-size: clamp(3rem, 7.2vw, 8rem);
	font-weight: 400;
	line-height: 0.92;
	letter-spacing: -0.035em;
}

.elementor .sturm-glass,
.sturm-glass {
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(12, 12, 15, 0.34);
	-webkit-backdrop-filter: blur(28px) saturate(120%);
	backdrop-filter: blur(28px) saturate(120%);
}

.elementor .sturm-reveal {
	transition: opacity 800ms var(--sturm-ease), transform 900ms var(--sturm-ease);
}

.sturm-canvas .content-main--elementor {
	padding-top: 0;
}

/* Footer */

body.sturm-native-shell .site-footer {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(5rem, 10vw, 9rem) var(--sturm-gutter) 1.5rem;
	background: var(--sturm-navy);
	color: #fff;
}

/* Popup Builder campaign 9772: keep the existing campaign fully operable. */
#sgpb-popup-dialog-main-div-wrapper > .sgpb-popup-dialog-main-div-theme-wrapper-3:has(.sgpb-content-9772) {
	top: max(1rem, env(safe-area-inset-top)) !important;
	left: 50% !important;
	width: min(810px, calc(100vw - 2rem));
	max-height: calc(100dvh - 2rem);
	transform: translateX(-50%);
}

#sgpb-popup-dialog-main-div-wrapper .sgpb-content-9772 {
	box-sizing: border-box !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: calc(100dvh - 2rem) !important;
	overflow: auto !important;
	overscroll-behavior: contain;
}

#sgpb-popup-dialog-main-div-wrapper .sgpb-popup-dialog-main-div-theme-wrapper-3:has(.sgpb-content-9772) > .sgpb-popup-close-button-3 {
	top: 0.5rem !important;
	right: 0.5rem !important;
	width: 2.75rem !important;
	height: 2.75rem !important;
}

.site-footer__lead {
	display: grid;
	grid-template-columns: 0.45fr minmax(0, 1fr) auto;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
	padding-bottom: clamp(5rem, 11vw, 10rem);
}

.site-footer__eyebrow {
	margin: 0;
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer__statement {
	max-width: 13ch;
	margin: 0;
	font-family: var(--sturm-serif);
	font-size: clamp(2.7rem, 6vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: -0.035em;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: 2rem;
	padding: 2.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.75rem;
}

.site-footer__grid address,
.site-footer__grid p {
	margin: 0;
	font-style: normal;
}

.site-footer__grid a {
	text-decoration: none;
}

.site-footer__brand .site-brand__marks {
	width: 10rem;
}

.site-footer__brand .site-brand__logo--light {
	opacity: 1;
}

.site-footer__brand .site-brand__logo--dark {
	opacity: 0;
}

.site-footer__widgets {
	padding: 2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.625rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu a {
	text-decoration: none;
}

/* Reveal and motion */

.has-js [data-reveal] {
	opacity: 0;
	transform: translateY(2.5rem);
	transition: opacity 900ms var(--sturm-ease), transform 1000ms var(--sturm-ease);
}

.has-js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes sturm-hero-drift {
	from { transform: scale(1.075); }
	to { transform: scale(1.015); }
}

@keyframes sturm-line {
	0% { transform: translateX(-100%); }
	50%, 100% { transform: translateX(100%); }
}

/* Tablet */

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

	.home-hero__content {
		bottom: 12rem;
	}

	.home-hero__action {
		left: var(--sturm-gutter);
		right: var(--sturm-gutter);
		bottom: 3.2rem;
	}

	.scroll-cue {
		display: none;
	}

	.manifesto {
		grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.62fr);
		gap: 3rem;
	}

	.manifesto__body {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-left: 0;
	}

	.editorial-grid {
		grid-template-rows: minmax(22rem, 52vw) minmax(22rem, 52vw);
	}

	.featured-story {
		grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
		gap: 3rem;
	}

	.site-footer__lead {
		grid-template-columns: 1fr auto;
	}

	.site-footer__eyebrow {
		grid-column: 1 / -1;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Mobile */

@media (max-width: 767px) {
	:root {
		--sturm-gutter: 1rem;
		--sturm-header-height: 4.75rem;
	}

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

	body.admin-bar .site-drawer,
	body.admin-bar .drawer-backdrop {
		top: 46px;
		height: calc(100dvh - 46px);
	}

	h1 {
		font-size: clamp(3rem, 14.5vw, 5rem);
		line-height: 0.94;
	}

	h2 {
		font-size: clamp(2.65rem, 12.5vw, 4.5rem);
		line-height: 0.96;
	}

	.site-header__inner {
		grid-template-columns: 3rem 1fr 3rem;
	}

	.menu-toggle {
		width: 2.5rem;
		height: 2.5rem;
		padding: 0.55rem;
	}

	.menu-toggle__label,
	.header-contact span {
		display: none;
	}

	.header-contact {
		display: grid;
		place-items: center;
		width: 2.5rem;
		height: 2.5rem;
		border: 1px solid currentColor;
		border-radius: 50%;
	}

	.header-contact svg {
		width: 0.9rem;
		height: 0.9rem;
	}

	.site-brand {
		width: 7.5rem;
	}

	.site-drawer {
		top: 0.5rem;
		left: 0.5rem;
		width: calc(100vw - 1rem);
		height: calc(100dvh - 1rem);
		padding: 1.25rem;
	}

	.drawer-menu > li > a {
		font-size: clamp(2.1rem, 10vw, 3rem);
	}

	.site-drawer__bottom {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.site-drawer__social {
		display: flex;
		text-align: left;
		gap: 1.25rem;
	}

	.home-hero__image {
		object-position: 56% center;
	}

	.home-hero__content {
		left: var(--sturm-gutter);
		right: var(--sturm-gutter);
		bottom: 10.5rem;
		width: auto;
	}

	.home-hero__content h1 {
		max-width: none;
		margin-bottom: 1rem;
		font-size: clamp(2.75rem, 12vw, 4rem);
	}

	.home-hero__text {
		max-width: 29rem;
		font-size: 0.9375rem;
	}

	.home-hero__action {
		left: var(--sturm-gutter);
		right: var(--sturm-gutter);
		bottom: 1.25rem;
		width: auto;
	}

	.glass-action {
		min-width: calc(100vw - 2rem);
		min-height: 3.75rem;
	}

	.manifesto {
		grid-template-columns: 1fr;
		gap: 3.5rem;
		min-height: auto;
		padding-block: 6rem;
	}

	.manifesto__copy h2 {
		font-size: clamp(2.8rem, 12.5vw, 4.5rem);
	}

	.manifesto__portrait {
		width: 78%;
		justify-self: end;
	}

	.campaign {
		min-height: 90vh;
		min-height: 90svh;
	}

	.campaign__image {
		object-position: 63% 24%;
	}

	.campaign__veil {
		background: linear-gradient(0deg, rgba(7, 8, 13, 0.78) 0%, rgba(7, 8, 13, 0.08) 74%);
	}

	.campaign__content {
		bottom: 2rem;
	}

	.collection {
		padding-block: 6rem;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 1.5rem;
	}

	.editorial-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: 0.75rem;
	}

	.editorial-card,
	.editorial-card--tall,
	.editorial-card--wide,
	.editorial-card--small:nth-of-type(3),
	.editorial-card--small:nth-of-type(4) {
		grid-column: 1;
		grid-row: auto;
		min-height: clamp(20rem, 90vw, 30rem);
	}

	.editorial-card--tall {
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.editorial-card--wide {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.editorial-card--small:nth-of-type(3) {
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.editorial-card--tall img,
	.editorial-card--small:nth-of-type(3) img {
		object-position: center top;
	}

	.editorial-card--small:nth-of-type(4) {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.editorial-card__title {
		font-size: clamp(1.5rem, 7vw, 2.2rem);
	}

	.editorial-grid--compact {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		grid-auto-rows: auto;
	}

	.editorial-grid--compact .editorial-card {
		grid-column: 1;
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.story-section {
		padding-block: 6rem;
	}

	.featured-story {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.featured-story__media img {
		aspect-ratio: 4 / 5;
	}

	.featured-story__content h2 {
		font-size: clamp(2.5rem, 11vw, 4rem);
	}

	.newsletter-chapter {
		min-height: 78vh;
		min-height: 78svh;
	}

	.newsletter-chapter__veil {
		background: linear-gradient(0deg, rgba(9, 9, 12, 0.78) 0%, rgba(9, 9, 12, 0.08) 78%);
	}

	.newsletter-chapter__content {
		bottom: 2rem;
	}

	.visit {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.visit__media {
		min-height: 58vh;
	}

	.visit__content {
		padding-block: 5rem;
	}

	.content-main--standard,
	.archive-shell,
	.single-shell,
	.commerce-shell {
		padding-top: calc(var(--sturm-header-height) + 3rem);
		padding-bottom: 6rem;
	}

	.entry-shell__header,
	.archive-hero,
	.single-entry__header {
		margin-bottom: 4rem;
	}

	.post-grid {
		grid-template-columns: 1fr;
		gap: 4.5rem;
	}

	.post-card__media img {
		aspect-ratio: 4 / 5;
	}

	.single-entry__header {
		text-align: left;
	}

	.single-entry__header .entry-meta {
		justify-content: flex-start;
	}

	.single-entry__layout {
		grid-template-columns: 1fr;
	}

	.single-entry__aside {
		position: static;
	}

	.single-entry__content {
		grid-column: 1;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		text-align: left;
	}

	.product-rail {
		grid-auto-columns: 72vw;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr 1fr;
		gap: 3rem 0.5rem;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.site-footer__lead {
		grid-template-columns: 1fr;
	}

	.site-footer__statement {
		font-size: clamp(2.7rem, 12vw, 4.4rem);
	}

	.site-footer__lead .pill-link {
		justify-self: start;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1rem;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.site-footer__legal {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 390px) {
	.site-footer__grid,
	.editorial-grid--compact,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.editorial-grid--compact .editorial-card {
		grid-column: 1;
	}
}

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

@media (max-height: 650px) and (orientation: landscape) {
	.home-hero__content {
		left: var(--sturm-gutter);
		right: auto;
		bottom: 4.75rem;
		width: min(55%, 42rem);
		margin: 0;
		text-align: left;
	}

	.home-hero__content .eyebrow {
		margin-bottom: 0.5rem;
	}

	.home-hero__content h1 {
		max-width: 15ch;
		margin-bottom: 0.65rem;
		font-size: clamp(2.5rem, 9vh, 4rem);
	}

	.home-hero__text {
		margin: 0;
		font-size: 0.875rem;
	}

	.home-hero__action {
		left: auto;
		right: var(--sturm-gutter);
		bottom: 0.9rem;
	}

	.glass-action {
		min-width: min(18rem, 40vw);
		min-height: 3.25rem;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.has-js [data-reveal] {
		opacity: 1;
		transform: none;
	}
}
