:root {
	--paper: #f3f5f6;
	--surface: #ffffff;
	--ink: #172125;
	--muted: #617076;
	--line: #d7dfe1;
	--accent: #146d78;
	--accent-deep: #0d4d57;
	--night: #15323a;
	--night-soft: #21454d;
	--max: 1280px;
	--space: 32px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
	font-family: "themify";
	src: url("../fonts/themify.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: "Flaticon";
	src: url("../fonts/Flaticon.woff") format("woff");
	font-display: swap;
	font-style: normal;
	font-weight: normal;
}

.fi {
	display: inline-block;
	font-family: "Flaticon";
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.flaticon-gear::before {
	content: "\f105";
}

.flaticon-energy-saving::before {
	content: "\f109";
}

.flaticon-worker::before {
	content: "\f10d";
}

.flaticon-oil::before {
	content: "\f110";
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

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

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

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

.wrapper {
	width: min(calc(100% - (var(--space) * 2)), var(--max));
	margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--night);
	color: var(--surface);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(215, 223, 225, 0.88);
	background: rgba(243, 245, 246, 0.94);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	gap: 32px;
}

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

.brand__mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	background: var(--accent);
	color: var(--surface);
	font-size: 19px;
	font-weight: 700;
	line-height: 1;
}

.brand__words {
	display: grid;
	line-height: 1.1;
}

.brand__words strong {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.brand__words small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.04em;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	min-width: 0;
}

.site-nav__link {
	position: relative;
	padding: 9px 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 180ms var(--ease);
}

.site-nav__link::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 1px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 220ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-current {
	color: var(--ink);
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav__search {
	padding-left: 24px;
	border-left: 1px solid var(--line);
	color: var(--accent-deep);
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 11px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 1px;
	margin: 6px 0;
	background: currentColor;
	transition: transform 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
	transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
	min-height: calc(100dvh - 74px);
	border-bottom: 1px solid var(--line);
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
	align-items: center;
	gap: clamp(40px, 7vw, 112px);
	min-height: calc(100dvh - 74px);
	padding-top: 48px;
	padding-bottom: 64px;
}

.hero__copy {
	max-width: 520px;
}

.eyebrow {
	margin: 0 0 20px;
	color: var(--accent-deep);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

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

h1,
h2,
h3 {
	font-weight: 650;
	letter-spacing: 0;
}

h1 {
	max-width: 11ch;
	margin-bottom: 25px;
	font-size: 62px;
	line-height: 1.04;
}

.hero__lede {
	max-width: 31ch;
	margin-bottom: 34px;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.5;
}

.hero__actions,
.product-detail__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 48px;
	padding: 11px 18px;
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	white-space: nowrap;
	transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

.button:hover {
	transform: translateY(-2px);
}

.button:active {
	transform: translateY(0) scale(0.98);
}

.button--dark {
	background: var(--night);
	color: var(--surface);
}

.button--dark:hover {
	background: var(--accent-deep);
}

.button--light {
	border-color: rgba(235, 244, 245, 0.7);
	background: transparent;
	color: var(--surface);
}

.button--light:hover {
	background: var(--surface);
	color: var(--night);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--accent-deep);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.text-link span,
.button span {
	font-size: 18px;
	font-weight: 400;
	line-height: 0;
	transition: transform 180ms var(--ease);
}

.text-link:hover span,
.button:hover span {
	transform: translateX(3px);
}

.text-link--large {
	font-size: 14px;
}

.hero__media {
	min-width: 0;
}

.hero__image-frame {
	position: relative;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	background: var(--night);
}

.hero__image-frame::after {
	position: absolute;
	inset: 0;
	background: rgba(15, 35, 40, 0.14);
	content: "";
	pointer-events: none;
}

.hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 900ms var(--ease), transform 1800ms var(--ease);
}

.hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero__caption {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.section {
	padding: 116px 0;
}

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

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
	align-items: end;
	gap: 64px;
	margin-bottom: 54px;
}

.section-heading--stacked {
	display: block;
	max-width: 760px;
}

.section-heading--stacked > p {
	max-width: 56ch;
	margin-top: 18px;
}

.section-heading--compact {
	align-items: center;
	margin-bottom: 36px;
}

.section-heading h2,
.split-feature h2,
.story-band h2,
.scale-statement h2 {
	max-width: 18ch;
	margin-bottom: 0;
	font-size: 42px;
	line-height: 1.12;
}

.section-heading > p,
.section-heading--compact > p {
	max-width: 40ch;
	margin-bottom: 0;
	color: var(--muted);
}

.section-heading--compact > .text-link {
	justify-self: end;
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.collection-tile {
	display: block;
	border-top: 1px solid var(--line);
	transition: transform 220ms var(--ease);
}

.collection-tile:hover {
	transform: translateY(-5px);
}

.collection-tile__image {
	display: block;
	aspect-ratio: 1 / 1.05;
	overflow: hidden;
	background: #e4e9ea;
}

.collection-tile__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease);
}

.collection-tile:hover .collection-tile__image img {
	transform: scale(1.045);
}

.collection-tile__body {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 7px 16px;
	padding: 18px 0 0;
}

.collection-tile__body strong {
	font-size: 17px;
	font-weight: 650;
}

.collection-tile__body span {
	grid-column: 1 / -1;
	max-width: 25ch;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.collection-tile__body em {
	grid-column: 2;
	grid-row: 1;
	color: var(--accent);
	font-size: 22px;
	font-style: normal;
	line-height: 1;
}

.split-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
	align-items: center;
	gap: clamp(48px, 10vw, 168px);
}

.split-feature__copy {
	max-width: 600px;
}

.split-feature__copy h2 {
	margin-bottom: 26px;
}

.split-feature__copy p {
	max-width: 58ch;
	margin-bottom: 18px;
	color: var(--muted);
}

.split-feature__copy .text-link {
	margin-top: 14px;
}

.split-feature__media {
	margin: 0;
}

.split-feature__media img {
	width: 100%;
	aspect-ratio: 0.74 / 1;
	object-fit: cover;
}

.split-feature__media figcaption {
	margin-top: 12px;
	color: var(--muted);
	font-size: 11px;
}

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

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px 20px;
}

.product-card {
	min-width: 0;
}

.product-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #e6eaeb;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
	transition: transform 650ms var(--ease);
}

.product-card:hover .product-card__image img {
	transform: scale(1.035);
}

.product-card__body {
	padding-top: 16px;
}

.product-card__meta,
.catalog-summary,
.contact-detail__label,
.footer-label,
.search-result__type {
	color: var(--accent-deep);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1.35;
	text-transform: uppercase;
}

.product-card__meta {
	margin-bottom: 8px;
}

.product-card__title {
	margin-bottom: 9px;
	font-size: 19px;
	line-height: 1.22;
}

.product-card__title a:hover {
	color: var(--accent-deep);
}

.product-card__excerpt {
	min-height: 44px;
	margin-bottom: 13px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
}

.section--story {
	padding-top: 0;
	background: var(--surface);
}

.story-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.5fr);
	align-items: stretch;
	min-height: 560px;
	background: var(--night);
	color: var(--surface);
}

.story-band__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 74px clamp(32px, 7vw, 112px);
}

.story-band .eyebrow {
	color: #94c9cf;
}

.story-band h2 {
	max-width: 14ch;
	margin-bottom: 22px;
}

.story-band p:not(.eyebrow) {
	max-width: 43ch;
	margin-bottom: 30px;
	color: #c4d5d8;
}

.story-band__image {
	min-height: 340px;
	overflow: hidden;
}

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

.site-footer {
	padding: 78px 0 24px;
	background: var(--night);
	color: #dbe7e8;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr 0.8fr;
	gap: 56px;
	padding-bottom: 70px;
}

.footer-brand {
	display: inline-block;
	margin-bottom: 17px;
	font-size: 21px;
	font-weight: 650;
	letter-spacing: 0.02em;
}

.footer-copy {
	max-width: 30ch;
	margin: 0;
	color: #a8c0c4;
	font-size: 14px;
}

.footer-links {
	display: grid;
	align-content: start;
	gap: 9px;
	font-size: 13px;
}

.footer-links a {
	color: #dbe7e8;
}

.footer-links a:hover {
	color: #9dd1d6;
}

.footer-label {
	margin-bottom: 8px;
	color: #8fb7bc;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(219, 231, 232, 0.2);
	color: #8fa9ad;
	font-size: 11px;
}

.page-shell {
	padding: 108px 0 132px;
}

.page-intro {
	max-width: 780px;
	margin-bottom: 70px;
}

.page-intro h1 {
	max-width: 17ch;
	margin-bottom: 22px;
	font-size: 58px;
	line-height: 1.06;
}

.page-intro__copy {
	max-width: 62ch;
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--line);
}

.filter-link {
	position: relative;
	padding: 0 0 13px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 650;
}

.filter-link::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transition: transform 200ms var(--ease);
}

.filter-link:hover,
.filter-link.is-active {
	color: var(--ink);
}

.filter-link.is-active::after,
.filter-link:hover::after {
	transform: scaleX(1);
}

.catalog-summary {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 22px 0 30px;
	color: var(--muted);
}

.catalog-summary > span:first-child {
	color: var(--accent-deep);
}

.pagination {
	margin-top: 68px;
}

.pagination ul {
	display: flex;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pagination a,
.pagination span {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	font-size: 13px;
}

.pagination .current,
.pagination a:hover {
	border-color: var(--night);
	background: var(--night);
	color: var(--surface);
}

.product-detail {
	padding: 96px 0 118px;
	background: var(--surface);
}

.product-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.74fr);
	align-items: start;
	gap: clamp(50px, 10vw, 150px);
}

.product-detail__media {
	position: sticky;
	top: 112px;
	margin: 0;
	background: #edf0f1;
}

.product-detail__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.product-detail__copy {
	padding-top: 22px;
}

.product-detail__copy h1 {
	max-width: 16ch;
	margin-bottom: 26px;
	font-size: 48px;
	line-height: 1.08;
}

.product-detail__lead {
	max-width: 47ch;
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 18px;
}

.product-detail__rule {
	height: 1px;
	margin: 28px 0;
	background: var(--line);
}

.content-copy {
	max-width: 68ch;
	color: var(--muted);
	font-size: 16px;
}

.content-copy p:last-child {
	margin-bottom: 0;
}

.product-detail__actions {
	margin-top: 34px;
}

.section--related {
	background: var(--paper);
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 76px 24px;
}

.case-item:nth-child(1) {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
	align-items: end;
	gap: 44px;
}

.case-item__image {
	overflow: hidden;
	background: #dce3e4;
}

.case-item__image img {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	transition: transform 800ms var(--ease);
}

.case-item:hover .case-item__image img {
	transform: scale(1.035);
}

.case-item__body {
	max-width: 390px;
	padding-top: 18px;
}

.case-item:nth-child(1) .case-item__body {
	padding-bottom: 8px;
}

.case-item__body h2 {
	margin-bottom: 10px;
	font-size: 26px;
	line-height: 1.16;
}

.case-item__body p {
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 14px;
}

.scale-intro {
	display: grid;
	grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(48px, 9vw, 140px);
	max-width: 1040px;
}

.scale-intro__image {
	max-width: 430px;
	overflow: hidden;
}

.scale-intro__image img {
	width: 100%;
	aspect-ratio: 0.72 / 1;
	object-fit: cover;
}

.scale-intro__copy > p {
	max-width: 58ch;
	margin-bottom: 42px;
	color: var(--muted);
	font-size: 18px;
}

.principles {
	padding: 0;
	margin: 0;
	list-style: none;
}

.principles li {
	display: grid;
	grid-template-columns: minmax(110px, 0.35fr) 1fr;
	gap: 20px;
	padding: 17px 0;
	border-top: 1px solid var(--line);
}

.principles li:last-child {
	border-bottom: 1px solid var(--line);
}

.principles strong {
	color: var(--accent-deep);
	font-size: 19px;
	font-weight: 650;
}

.principles span {
	color: var(--muted);
	font-size: 14px;
}

.scale-statement {
	max-width: 760px;
	padding-top: 120px;
	margin-top: 120px;
	border-top: 1px solid var(--line);
}

.scale-statement h2 {
	margin-bottom: 20px;
}

.scale-statement p {
	max-width: 46ch;
	margin-bottom: 26px;
	color: var(--muted);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
	align-items: start;
	gap: clamp(48px, 10vw, 160px);
}

.contact-layout .page-intro {
	margin-bottom: 34px;
}

.contact-layout__details {
	padding-top: 11px;
}

.contact-detail {
	padding: 22px 0;
	border-top: 1px solid var(--line);
}

.contact-detail:last-child {
	border-bottom: 1px solid var(--line);
}

.contact-detail__label {
	display: block;
	margin-bottom: 9px;
}

.contact-detail a,
.contact-detail p {
	margin: 0;
	color: var(--ink);
	font-size: 17px;
}

.contact-detail a:hover {
	color: var(--accent-deep);
}

.contact-detail--note p {
	color: var(--muted);
	font-size: 14px;
}

.contact-image {
	margin-top: 90px;
	overflow: hidden;
}

.contact-image img {
	width: 100%;
	aspect-ratio: 1.85 / 1;
	object-fit: cover;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 26px;
	color: inherit;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.breadcrumb a {
	opacity: 0.72;
}

.breadcrumb a:hover {
	opacity: 1;
}

.scale-masthead {
	position: relative;
	background: var(--night);
	color: var(--surface);
}

.scale-masthead__inner {
	position: relative;
	padding-top: 96px;
	padding-bottom: 110px;
}

.scale-masthead .eyebrow {
	margin-bottom: 14px;
	color: #a6d4d8;
}

.scale-masthead h1 {
	max-width: none;
	margin: 0;
	font-size: clamp(48px, 7vw, 82px);
	line-height: 0.98;
}

.scale-process {
	padding: 108px 0 128px;
	background: var(--surface);
}

.scale-process__heading {
	max-width: 650px;
	margin-bottom: 54px;
}

.scale-process__heading h2 {
	margin: 0;
	font-size: 42px;
	line-height: 1.12;
}

.scale-process__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 52px 22px;
}

.scale-stage {
	min-width: 0;
}

.scale-stage__image {
	overflow: hidden;
	background: #e5eaeb;
}

.scale-stage__image img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 650ms var(--ease);
}

.scale-stage:hover img {
	transform: scale(1.035);
}

.scale-stage h3 {
	margin: 17px 0 0;
	color: var(--accent-deep);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.narrow-content {
	max-width: 860px;
}

.search-form {
	max-width: 760px;
	margin-bottom: 72px;
}

.search-form label {
	display: block;
	margin-bottom: 9px;
	font-size: 12px;
	font-weight: 700;
}

.search-form__row {
	display: flex;
	gap: 10px;
}

.search-form input {
	min-width: 0;
	flex: 1;
	min-height: 48px;
	padding: 10px 13px;
	border: 1px solid #aebbbe;
	border-radius: 0;
	background: var(--surface);
	color: var(--ink);
}

.search-summary {
	margin: -38px 0 30px;
	color: var(--muted);
	font-size: 14px;
}

.search-results {
	max-width: 850px;
	border-top: 1px solid var(--line);
}

.search-result {
	display: grid;
	grid-template-columns: 120px minmax(0, 0.65fr) minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
	transition: padding 180ms var(--ease), color 180ms var(--ease);
}

.search-result:hover {
	padding-right: 10px;
	padding-left: 10px;
	color: var(--accent-deep);
}

.search-result > span:last-child {
	color: var(--muted);
	font-size: 13px;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 54px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.empty-state h2 {
	margin-bottom: 9px;
	font-size: 25px;
}

.empty-state p {
	margin: 0;
	color: var(--muted);
}

.reveal-on-scroll {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
	.reveal-on-scroll {
		opacity: 0;
		transform: translateY(18px);
		transition: opacity 650ms var(--ease), transform 650ms var(--ease);
	}

	.reveal-on-scroll.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1040px) {
	:root {
		--space: 24px;
	}

	.site-nav {
		gap: 16px;
	}

	.site-nav__search {
		padding-left: 16px;
	}

	h1 {
		font-size: 54px;
	}

	.hero__inner {
		gap: 48px;
	}

	.section-heading h2,
	.split-feature h2,
	.story-band h2,
	.scale-statement h2 {
		font-size: 38px;
	}
}

@media (max-width: 760px) {
	:root {
		--space: 18px;
	}

	.site-header__inner {
		min-height: 66px;
	}

	.brand {
		min-width: 0;
	}

	.brand__words small {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		top: 66px;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-content: start;
		justify-content: start;
		justify-items: stretch;
		align-items: start;
		gap: 0;
		padding: 24px var(--space) 40px;
		background: var(--paper);
		z-index: 25;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 180ms var(--ease), transform 180ms var(--ease);
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav__link {
		width: 100%;
		padding: 16px 0;
		border-bottom: 1px solid var(--line);
		font-size: 19px;
	}

	.site-nav__link::after {
		bottom: -1px;
	}

	.site-nav__search {
		padding-left: 0;
		border-left: 0;
		color: var(--accent-deep);
	}

	.hero,
	.hero__inner {
		min-height: auto;
	}

	.hero__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 34px;
		padding-top: 56px;
		padding-bottom: 48px;
	}

	.hero__copy {
		max-width: none;
	}

	h1 {
		max-width: 12ch;
		font-size: 43px;
	}

	.hero__lede {
		font-size: 17px;
	}

	.hero__image-frame {
		aspect-ratio: 1.15 / 1;
	}

	.hero__caption {
		font-size: 9px;
	}

	.section,
	.page-shell {
		padding: 76px 0 90px;
	}

	.section-heading,
	.section-heading--compact {
		display: block;
		margin-bottom: 34px;
	}

	.section-heading h2,
	.split-feature h2,
	.story-band h2,
	.scale-statement h2 {
		font-size: 33px;
	}

	.section-heading > p,
	.section-heading--compact > .text-link {
		margin-top: 18px;
	}

	.collection-grid,
	.product-grid,
	.case-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.collection-grid {
		gap: 42px;
	}

	.collection-tile__image {
		aspect-ratio: 1.28 / 1;
	}

	.split-feature,
	.story-band,
	.scale-intro,
	.contact-layout,
	.product-detail__grid {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 46px;
	}

	.split-feature__media {
		order: -1;
	}

	.split-feature__media img {
		aspect-ratio: 1.1 / 1;
	}

	.product-grid {
		gap: 42px;
	}

	.product-card__excerpt {
		min-height: 0;
	}

	.story-band {
		min-height: 0;
	}

	.story-band__copy {
		padding: 58px 28px 64px;
	}

	.story-band__image {
		min-height: 300px;
	}

	.site-footer {
		padding-top: 62px;
	}

	.site-footer__grid {
		gap: 36px;
		padding-bottom: 54px;
	}

	.site-footer__bottom {
		display: grid;
		gap: 8px;
	}

	.page-intro {
		margin-bottom: 48px;
	}

	.page-intro h1 {
		font-size: 43px;
	}

	.filter-row {
		gap: 5px 18px;
	}

	.product-detail {
		padding: 54px 0 76px;
	}

	.product-detail__media {
		position: static;
	}

	.product-detail__copy {
		padding-top: 0;
	}

	.product-detail__copy h1 {
		font-size: 39px;
	}

	.case-item:nth-child(1) {
		display: block;
	}

	.case-grid {
		gap: 54px;
	}

	.case-item__body,
	.case-item:nth-child(1) .case-item__body {
		max-width: none;
		padding-top: 17px;
		padding-bottom: 0;
	}

	.scale-intro__image {
		max-width: 100%;
	}

	.scale-intro__image img {
		aspect-ratio: 1.05 / 1;
	}

	.scale-statement {
		padding-top: 72px;
		margin-top: 72px;
	}

	.contact-layout__details {
		padding-top: 0;
	}

	.contact-image {
		margin-top: 56px;
	}

	.search-form__row {
		align-items: stretch;
	}

	.search-form__row .button {
		padding-inline: 15px;
	}

	.search-result {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.search-result:hover {
		padding-right: 0;
		padding-left: 0;
	}
}

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

	.home-story {
		background-attachment: scroll;
	}

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

/* Original page content, presented with a lightweight responsive layout. */
.site-header__topbar {
	background: var(--night);
	color: #dbe7e8;
	font-size: 11px;
	letter-spacing: 0.03em;
}

.site-header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 31px;
	gap: 18px;
}

.site-header__phones,
.site-header__social {
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-header__phones a,
.site-header__social a {
	color: inherit;
}

.site-header__phones a:hover,
.site-header__social a:hover {
	color: #9dd1d6;
}

.site-header__social a {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border: 0;
	font-size: 11px;
	line-height: 1;
}

.social-icon {
	display: block;
	font-family: "themify";
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.social-icon--facebook::before {
	content: "\e741";
}

.social-icon--twitter::before {
	content: "\e72a";
}

.social-icon--instagram::before {
	content: "\e73d";
}

.social-icon--pin::before,
.social-icon--pinterest::before {
	content: "\e731";
}

.social-icon--linkedin::before {
	content: "\e735";
}

.brand__logo {
	display: block;
	width: 66px;
	height: 56px;
	object-fit: contain;
}

.home-hero {
	position: relative;
	min-height: clamp(460px, calc(100dvh - 105px), 720px);
	background: var(--night);
	color: var(--surface);
}

.home-hero__slides,
.home-hero__slide {
	position: absolute;
	inset: 0;
}

.home-hero__slide {
	overflow: hidden;
	opacity: 0;
	transition: opacity 700ms var(--ease);
}

.home-hero__slide.is-active {
	opacity: 1;
}

.home-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 8s linear;
}

.home-hero__slide.is-active .home-hero__image {
	transform: scale(1.04);
}

.home-hero__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 28, 33, 0.43);
}

.home-hero__rain {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	width: 68%;
	height: 100%;
	pointer-events: none;
	transform: translateX(-50%);
}

.home-hero__rain > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
}

.home-hero__rain > span::before {
	position: absolute;
	top: 0;
	left: -2px;
	display: block;
	width: 4px;
	height: 10px;
	background: var(--accent);
	content: "";
	animation: home-rain-drop 9s linear infinite alternate;
}

.home-hero__rain > span:nth-child(2) {
	left: 25%;
}

.home-hero__rain > span:nth-child(2)::before {
	animation-delay: 1s;
}

.home-hero__rain > span:nth-child(3) {
	left: 50%;
}

.home-hero__rain > span:nth-child(3)::before {
	animation-delay: 2s;
}

.home-hero__rain > span:nth-child(4) {
	left: 75%;
}

.home-hero__rain > span:nth-child(5) {
	left: 100%;
}

.home-hero__rain > span:nth-child(5)::before {
	animation-delay: 1s;
}

@keyframes home-rain-drop {
	from {
		top: 0;
	}

	to {
		top: 100%;
	}
}

.home-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: clamp(460px, calc(100dvh - 105px), 720px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.home-hero__subtitle {
	margin: 0 0 18px;
	font-size: 16px;
	letter-spacing: 0.02em;
}

.home-hero h1 {
	max-width: 24ch;
	margin: 0 0 30px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.12;
}

.home-section-heading {
	margin-bottom: 42px;
	text-align: center;
}

.home-section-heading h2,
.home-about h2,
.home-why > .wrapper > h2,
.home-partners h2 {
	margin-bottom: 0;
	font-size: clamp(27px, 3.2vw, 42px);
	line-height: 1.2;
}

.home-category-grid,
.original-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.home-category {
	display: block;
	min-width: 0;
	text-align: center;
}

.home-category__image {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #eef1f1;
}

.home-category__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.home-category:hover .home-category__image img {
	transform: scale(1.04);
}

.home-category__name {
	display: block;
	padding-top: 16px;
	font-size: 18px;
	font-weight: 650;
}

.home-view-more {
	display: flex;
	justify-content: center;
	padding-top: 38px;
}

.home-about {
	background: var(--paper);
}

.home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
	align-items: center;
	gap: clamp(42px, 8vw, 120px);
}

.home-about__copy {
	max-width: 62ch;
}

.home-about__copy h2 {
	margin-bottom: 24px;
}

.home-about__copy p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
}

.home-about__image {
	overflow: hidden;
}

.home-about__image img {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	object-fit: cover;
}

.home-story {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: url("../original/franceskylight-banner2-1-1.jpg") center center / cover no-repeat fixed;
	color: var(--surface);
}

.home-story::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(10, 23, 43, 0.92);
	content: "";
	pointer-events: none;
}

.home-story__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(34px, 8vw, 120px);
	max-width: 1020px;
}

.home-story__portrait {
	display: grid;
	place-items: center;
}

.home-story__portrait img {
	width: min(200px, 100%);
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
}

.home-story__copy {
	max-width: 68ch;
}

.home-story__copy p {
	color: #f2f6f8;
}

.home-story__copy p:last-of-type {
	margin-bottom: 28px;
}

.home-why {
	background: var(--paper);
}

.home-why > .wrapper > h2 {
	margin-bottom: 46px;
	text-align: center;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.why-item {
	display: flex;
	min-height: 224px;
	padding: 40px 28px 36px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-top: 3px solid var(--accent);
	background: var(--surface);
	text-align: center;
	box-shadow: 0 14px 34px rgba(21, 50, 58, 0.06);
	transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.why-item:hover {
	border-color: var(--accent);
	box-shadow: 0 18px 38px rgba(21, 50, 58, 0.1);
	transform: translateY(-3px);
}

.why-item__icon {
	display: block;
	margin-bottom: 24px;
	color: var(--accent);
	font-size: 50px;
}

.why-item h3 {
	max-width: 28ch;
	margin: 0;
	font-size: 20px;
	font-weight: 650;
	line-height: 1.25;
	text-transform: uppercase;
}

.home-contact-cta {
	position: relative;
	padding: 50px 0 82px;
	background: url("../original/about-s2-bg.jpg") center center / cover no-repeat;
	background-attachment: fixed;
	color: var(--surface);
}

.home-contact-cta__inner {
	width: min(calc(100% - 30px), 1170px);
	padding: 0 30px;
}

.home-contact-cta__heading {
	margin: -5px 0 34px;
}

.home-contact-cta__heading > span {
	font-size: 16px;
}

.home-contact-cta h2 {
	position: relative;
	max-width: none;
	padding-bottom: 21px;
	margin: 9px 0 0;
	font-family: "Avenir Next Condensed", "Arial Narrow", ui-sans-serif, sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.home-contact-cta h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 35px;
	height: 5px;
	background: #7b74a0;
	content: "";
}

.home-contact-cta__copy {
	width: 58%;
	max-width: 635px;
}

.home-contact-cta__copy p {
	margin: 0;
	color: var(--surface);
	font-size: 15px;
	line-height: 1.8;
}

.home-contact-cta__more {
	margin-top: 15px;
	line-height: 1;
}

.home-contact-cta .text-link--light {
	color: var(--surface);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.home-contact-cta .text-link--light:hover {
	color: #7b74a0;
}

.home-partners {
	background: var(--surface);
}

.home-partners h2 {
	max-width: 850px;
	margin: 0 auto 44px;
	text-align: center;
}

.partner-grid {
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
	outline-offset: 6px;
}

.partner-grid::-webkit-scrollbar {
	display: none;
}

.partner-grid__track {
	display: flex;
	align-items: stretch;
	gap: 18px;
	width: max-content;
}

.partner-logo {
	display: grid;
	flex: 0 0 calc((min(1280px, 100vw - (var(--space) * 2)) - 72px) / 5);
	place-items: center;
	min-width: 0;
	min-height: 110px;
	padding: 12px;
	border: 1px solid var(--line);
	scroll-snap-align: start;
	transition: border-color 180ms var(--ease);
}

.partner-logo:hover {
	border-color: var(--accent);
}

.partner-logo img {
	width: 100%;
	max-width: 230px;
	height: 100px;
	object-fit: contain;
}

.page-banner {
	padding: 58px 0 54px;
	background-color: rgba(21, 50, 58, 0.72);
	background-image: url("../original/page-title.jpg");
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
	color: var(--surface);
}

.page-banner h1 {
	max-width: none;
	margin: 0 0 12px;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 500;
	line-height: 1.1;
}

.page-banner nav {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
}

.page-banner nav a:hover {
	color: #9dd1d6;
}

.page-banner--cases {
	background-image: url("../original/case-pic.jpg");
	background-attachment: fixed;
}

.original-products {
	background: var(--surface);
}

.original-products__category {
	padding-bottom: 62px;
	margin-bottom: 62px;
	border-bottom: 1px solid var(--line);
}

.original-products__category:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.original-products__category h2 {
	margin-bottom: 30px;
	font-size: 28px;
	line-height: 1.2;
}

.original-product-card {
	min-width: 0;
}

.original-product-card__image {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f1f1f1;
}

.original-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 500ms var(--ease);
}

.original-product-card:hover .original-product-card__image img {
	transform: scale(1.035);
}

.original-product-card h2,
.original-product-card h3 {
	margin: 14px 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
}

.original-product-card h2 a:hover,
.original-product-card h3 a:hover {
	color: var(--accent-deep);
}

.original-products__more {
	display: flex;
	justify-content: center;
	padding-top: 34px;
}

.original-products--taxonomy .original-product-grid,
.original-products--search .original-product-grid {
	row-gap: 52px;
}

.original-products__empty {
	margin: 0;
	color: var(--muted);
}

.upper-footer {
	background: var(--night);
}

.site-footer__grid {
	grid-template-columns: 1.25fr 0.8fr 1fr 1.35fr;
	gap: 42px;
	padding: 72px 0 62px;
}

.site-footer .widget-title h3 {
	margin: 0 0 20px;
	color: var(--surface);
	font-size: 16px;
	font-weight: 650;
}

.site-footer .logo {
	margin-bottom: 24px;
}

.site-footer .logo img {
	width: 109px;
	height: 92px;
	object-fit: contain;
}

.site-footer .social-icons {
	display: flex;
	gap: 10px;
}

.site-footer .social-icons a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(219, 231, 232, 0.4);
	color: #dbe7e8;
	font-size: 12px;
	line-height: 1;
}

.site-footer .social-icons a:hover {
	border-color: #9dd1d6;
	color: #9dd1d6;
}

.site-footer .widget ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: #c4d5d8;
	font-size: 13px;
}

.site-footer .widget li a:hover {
	color: #9dd1d6;
}

.contact-widget li {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr);
	gap: 8px;
	line-height: 1.5;
}

.contact-widget li span {
	color: #8fb7bc;
	font-size: 7px;
	line-height: 1.8;
}

.lower-footer {
	background: var(--night);
	color: #8fa9ad;
}

.lower-footer .separator {
	height: 1px;
	background: rgba(219, 231, 232, 0.2);
}

.copyright {
	padding: 20px 0 24px;
	margin: 0;
	font-size: 11px;
}

@media (max-width: 1040px) {
	.home-contact-cta__copy {
		width: 65%;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.site-header__topbar {
		display: none;
	}

	.site-nav {
		top: 66px;
		left: 0;
		right: auto;
		width: 100vw;
		max-width: 100vw;
		padding-right: var(--space);
		padding-left: var(--space);
		overflow-y: auto;
		box-shadow: 0 16px 24px rgba(23, 33, 37, 0.12);
	}

	.home-hero,
	.home-hero__content {
		min-height: 520px;
	}

	.home-hero__content {
		padding-top: 34px;
		padding-bottom: 34px;
	}

	.home-hero h1 {
		max-width: 13ch;
		font-size: 40px;
	}

	.home-hero__rain {
		width: 86%;
		opacity: 0.9;
	}

	.home-category-grid,
	.original-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 14px;
	}

	.home-about__grid,
	.home-story__grid {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
	}

	.home-about__image {
		order: -1;
	}

	.home-story__portrait {
		justify-content: flex-start;
	}

	.home-story__portrait img {
		width: 124px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.why-item {
		min-height: 180px;
		padding: 30px 22px 32px;
	}

	.why-item__icon {
		margin-bottom: 18px;
		font-size: 44px;
	}

	.why-item h3 {
		font-size: 18px;
	}

	.home-contact-cta {
		padding: 54px 0 64px;
		background-position: center top;
		background-attachment: scroll;
	}

	.home-story {
		background-attachment: scroll;
		background-position: center center;
	}

	.home-contact-cta__inner {
		width: min(calc(100% - 30px), 1170px);
		padding: 0 15px;
	}

	.home-contact-cta__heading {
		margin-bottom: 30px;
	}

	.home-contact-cta h2 {
		font-size: 32px;
	}

	.home-contact-cta__copy {
		width: 100%;
	}

	.page-banner {
		padding: 42px 0 38px;
	}

	.page-banner--cases {
		background-attachment: scroll;
	}

	.original-products__category {
		padding-bottom: 48px;
		margin-bottom: 48px;
	}

	.original-products__category h2 {
		font-size: 25px;
	}

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

@media (max-width: 980px) {
	.partner-logo {
		flex-basis: calc((min(980px, 100vw - (var(--space) * 2)) - 54px) / 4);
	}
}

@media (max-width: 736px) {
	.partner-logo {
		flex-basis: calc((min(736px, 100vw - (var(--space) * 2)) - 36px) / 3);
	}
}

@media (max-width: 480px) {
	.partner-logo {
		flex-basis: calc((min(480px, 100vw - (var(--space) * 2)) - 18px) / 2);
	}
}

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

	.home-hero__slide,
	.home-hero__image,
	.home-category__image img,
	.original-product-card__image img {
		transition: none;
	}

	.home-hero__rain > span::before {
		top: 42%;
		animation: none;
	}

	.why-item {
		transition: none;
	}

	.why-item:hover {
		transform: none;
	}
}

@media (max-width: 760px) {
	.scale-masthead__inner {
		padding-top: 58px;
		padding-bottom: 68px;
	}

	.scale-masthead h1 {
		font-size: 48px;
	}
	.scale-process__heading h2 {
		font-size: 33px;
	}

	.scale-process {
		padding: 76px 0 90px;
	}

	.scale-process__heading {
		margin-bottom: 36px;
	}

	.scale-process__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.scale-stage__image img {
		height: auto;
		aspect-ratio: 1.35 / 1;
	}
}

/* Lightweight layouts for the pages carried over from the source theme. */
.footer-logo {
	display: inline-flex;
	margin-bottom: 24px;
}

.footer-logo img {
	width: 109px;
	height: 92px;
	object-fit: contain;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 0;
	color: #dbe7e8;
	font-size: 12px;
	line-height: 1;
}

.footer-social a:hover {
	color: #9dd1d6;
}

.contact-widget__item {
	display: block;
	line-height: 1.5;
}

.case-feature {
	position: relative;
	min-height: 482px;
	background-color: var(--surface);
	background-position: top left;
	background-size: cover;
	background-attachment: fixed;
	color: #06163a;
}

.case-feature__inner {
	position: relative;
	display: flex;
	min-height: 482px;
	align-items: flex-start;
	padding-top: 50px;
	padding-bottom: 50px;
}

.case-feature--swarovski .case-feature__inner {
	justify-content: flex-end;
}

.case-feature__copy {
	max-width: 650px;
}

.case-feature__copy img {
	width: min(220px, 62vw);
	height: auto;
	max-height: 90px;
	margin-bottom: 28px;
	object-fit: contain;
	object-position: left center;
}

.case-feature__copy h2 {
	margin-bottom: 18px;
	color: #06163a;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.08;
}

.case-feature__copy p {
	max-width: 64ch;
	margin: 0;
	color: #727780;
	font-size: 15px;
}

.case-gallery-section {
	padding: 50px 0;
	background: #f2f2f2;
}

.case-gallery-section + .case-feature {
	margin-top: 0;
}

.case-gallery__title {
	margin: -33px 0 12px;
	color: #727780;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
	text-align: center;
}

.case-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.case-gallery__item {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #e7ecec;
}

.case-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 650ms var(--ease);
}

.case-gallery__item:hover img {
	transform: scale(1.045);
}

.original-scale {
	background: var(--surface);
}

.original-scale__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 52px 22px;
}

.original-scale__item {
	min-width: 0;
}

.original-scale__image {
	overflow: hidden;
	background: #e5eaeb;
}

.original-scale__image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 650ms var(--ease);
}

.original-scale__item:hover img {
	transform: scale(1.035);
}

.original-scale__item h2 {
	margin: 17px 0 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.original-scale__item h2 a:hover {
	color: var(--accent-deep);
}

.original-contact {
	background: var(--surface);
}

.original-contact__heading {
	margin-bottom: 44px;
}

.original-contact__heading > span {
	display: block;
	margin-bottom: 10px;
	color: var(--accent-deep);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.original-contact__heading h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
}

.form-notice {
	margin: 0 0 28px;
	padding: 14px 16px;
	border-left: 3px solid var(--accent);
	background: #eaf4f2;
	color: var(--ink);
	font-size: 14px;
}

.form-notice--error {
	border-left-color: #a13d32;
	background: #f9eeec;
}

.original-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
	gap: clamp(44px, 8vw, 120px);
	align-items: start;
}

.contact-form form,
.product-enquiry form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.contact-form__half,
.product-enquiry__half,
.contact-form__full,
.product-enquiry__full,
.contact-form__submit,
.product-enquiry__submit {
	min-width: 0;
}

.contact-form__full,
.product-enquiry__full,
.contact-form__submit,
.product-enquiry__submit {
	grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.product-enquiry input,
.product-enquiry textarea {
	display: block;
	width: 100%;
	border: 1px solid #aebbbe;
	border-radius: 0;
	background: var(--surface);
	color: var(--ink);
	font: inherit;
	font-size: 14px;
	line-height: 1.4;
}

.contact-form input,
.product-enquiry input {
	min-height: 49px;
	padding: 12px 13px;
}

.contact-form textarea,
.product-enquiry textarea {
	min-height: 160px;
	padding: 12px 13px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.product-enquiry input::placeholder,
.product-enquiry textarea::placeholder {
	color: #617076;
	opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus,
.product-enquiry input:focus,
.product-enquiry textarea:focus {
	border-color: var(--accent);
	outline: 2px solid rgba(20, 109, 120, 0.18);
	outline-offset: 1px;
}

.info-box {
	border-top: 1px solid var(--line);
}

.info-box__item {
	padding: 21px 0;
	border-bottom: 1px solid var(--line);
}

.info-box__item h3 {
	margin-bottom: 8px;
	color: var(--accent-deep);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.info-box__item p {
	margin: 0;
	font-size: 16px;
}

.info-box__social ul {
	display: flex;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.info-box__social a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--line);
	color: var(--accent-deep);
	font-size: 12px;
	line-height: 1;
}

.info-box__social a:hover {
	border-color: var(--accent);
	background: var(--accent);
	color: var(--surface);
}

.contact-map {
	margin-top: 72px;
	background: #e5eaeb;
}

.contact-map iframe {
	display: block;
	width: 100%;
	min-height: 450px;
}

.product-detail__visual {
	min-width: 0;
}

.product-specs {
	width: 100%;
	margin-top: 16px;
	border-collapse: collapse;
	background: var(--surface);
	font-size: 13px;
}

.product-specs th,
.product-specs td {
	padding: 10px 12px;
	border: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.product-specs th {
	width: 34%;
	color: var(--accent-deep);
	font-weight: 700;
}

.product-enquiry {
	padding-top: 30px;
	margin-top: 32px;
	border-top: 1px solid var(--line);
}

.product-enquiry h3 {
	margin-bottom: 20px;
	font-size: 23px;
}

.error-404-content {
	max-width: 680px;
}

.error-404-content h2 {
	margin-bottom: 8px;
	font-size: clamp(48px, 8vw, 92px);
	line-height: 0.95;
}

.error-404-content h3 {
	margin-bottom: 14px;
	font-size: 25px;
}

.error-404-content p {
	max-width: 58ch;
	margin-bottom: 28px;
	color: var(--muted);
}

@media (max-width: 1040px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.case-feature,
	.case-feature__inner {
		min-height: 500px;
	}
}

@media (max-width: 760px) {
	.site-nav {
		height: calc(100dvh - 66px);
		bottom: auto;
	}

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

	.case-feature,
	.case-feature__inner {
		min-height: 520px;
	}

	.case-feature__inner {
		padding-top: 58px;
		padding-bottom: 54px;
	}

	.case-feature--swarovski .case-feature__inner {
		justify-content: flex-start;
	}

	.case-feature__copy p {
		font-size: 14px;
	}

	.case-feature {
		background-attachment: scroll;
	}

	.case-gallery-section {
		padding: 50px 0;
	}

	.case-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.original-scale__grid,
	.original-contact__grid {
		grid-template-columns: 1fr;
	}

	.original-scale__grid {
		gap: 36px;
	}

	.original-scale__image img {
		height: auto;
		aspect-ratio: 1.35 / 1;
	}

	.original-contact__heading {
		margin-bottom: 34px;
	}

	.contact-form form,
	.product-enquiry form {
		grid-template-columns: 1fr;
	}

	.contact-form__half,
	.product-enquiry__half,
	.contact-form__full,
	.product-enquiry__full,
	.contact-form__submit,
	.product-enquiry__submit {
		grid-column: auto;
	}

	.contact-map {
		margin-top: 54px;
	}

	.contact-map iframe {
		min-height: 340px;
	}

	.product-specs {
		font-size: 12px;
	}

	.product-specs th,
	.product-specs td {
		padding: 9px 10px;
	}
}
